@andrivet/z80-assembler 1.0.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +54 -0
- package/index.js +249 -9
- package/index.mjs +3141 -2903
- package/lib/compiler/Assets.d.ts +25 -0
- package/lib/compiler/Ast.d.ts +77 -22
- package/lib/compiler/Compiler.d.ts +30 -5
- package/lib/compiler/Formatter.d.ts +23 -1
- package/lib/compiler/Generator.d.ts +15 -15
- package/lib/compiler/Labels.d.ts +28 -2
- package/lib/grammar/LowLevel.d.ts +47 -10
- package/lib/grammar/Parse.d.ts +47 -8
- package/lib/grammar/z80.d.ts +234 -276
- package/lib/types/Error.d.ts +35 -6
- package/lib/types/Types.d.ts +16 -1
- package/package.json +10 -2
package/index.js
CHANGED
|
@@ -1,9 +1,249 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function _(e,t=0){switch(e.toLowerCase()){case"b":return 0<<t;case"c":return 1<<t;case"d":return 2<<t;case"e":return 3<<t;case"h":return 4<<t;case"l":return 5<<t;case"a":return 7<<t;default:return console.log(`Invalid register name: ${e}`),0}}function
|
|
2
|
-
${e
|
|
3
|
-
|
|
4
|
-
`:`${e}|${t}||0|0|${
|
|
5
|
-
`}function
|
|
6
|
-
`:""
|
|
7
|
-
|
|
8
|
-
`);const i=new Ar(e).parse();if(i.errs.length>0)throw m.fromSyntaxErr(h.fileName,i.errs[0]);return i.ast?.lines??[]}function bt(e){let t=e.lastIndexOf("/");return t===-1&&(t=e.lastIndexOf("\\")),t===-1?"":e.substring(0,t+1)}function yt(e){let t=e.lastIndexOf("/");return t===-1&&(t=e.lastIndexOf("\\")),t===-1?e:e.substring(t+1)}function Mt(e,t,i){const n=yt(e);h.outputName="program.P",h.basePath=bt(e),h.fileName=n,h.getFileCode=i;try{$();const s=Z(t);b(0,s);const r=et().join(", ");if(r.length>0)throw new m(h.fileName,{line:1,offset:0,overallPos:0},`Unknown value for labels: ${r}`);return{outputName:h.outputName,bytes:M(0,s),sld:V({lines:s,filename:n}),errs:[]}}catch(s){return{outputName:h.outputName,bytes:[],sld:"",errs:[m.fromAny(h.fileName,s)]}}}function f(e,t,i,n){let s=parseInt(t,i);if(isNaN(s))throw new m(h.fileName,e,`Number '${t}' is invalid in base ${i}.`);switch(n){case 1:if(s>255||s<-256)throw new m(h.fileName,e,`Number '${t}' does not fit into a byte.`);s<0&&(s=256+s);break;case 2:if(s>65535||s<-65536)throw new m(h.fileName,e,`Number '${t}' does not fit into a word.`);s<0&&(s=65536+s);break;default:throw new m(h.fileName,e,`Invalid number of bytes (${n})`)}return s}function H(e,t){const i=t.charCodeAt(0);if(i>127)throw new m(h.fileName,e,"Only ASCII characters are supported, use escape for other values.");return[i]}function qt(e){switch(e){case"a":return[7];case"b":return[8];case"e":return[27];case"f":return[12];case"n":return[10];case"r":return[13];case"t":return[9];case"v":return[11];case"'":case'"':case"?":case"\\":default:return[e.charCodeAt(0)]}}function Ot(e,t){const i=parseInt(t,8);if(i>255)throw new m(h.fileName,e,`Number '${t}' in octal escape sequence does not fit into a byte.`);return[i]}function Pt(e,t){const i=parseInt(t,16);if(i>255)throw new m(h.fileName,e,`Number '${t}' in hexadecimal escape sequence does not fit into a byte.`);return[i]}const O=new Map([["£",12],["$",13],[":",14],["?",15],["(",16],[")",17],[">",18],["<",19],["=",20],["+",21],["-",22],["*",23],["/",24],[";",25],[",",26],[".",27]]);function Nt(e,t){if(t>="A"&&t<"Z")return t.charCodeAt(0)-65+38;if(t>="a"&&t<"z")return t.charCodeAt(0)-97+166;if(t>="0"&&t<"9")return t.charCodeAt(0)-48+28;if(!O.has(t))throw new m(h.fileName,e,`Invalid ZX81 character: ${t}`);return O.get(t)}function Jt(e,t){return[...t].map(i=>Nt(e,i))}var w=(e=>(e.start="start",e.r_1="r_1",e.r_2="r_2",e.r_3="r_3",e.r_4="r_4",e.r_5="r_5",e.r_6="r_6",e.r_7="r_7",e.dd_1="dd_1",e.dd_2="dd_2",e.dd_3="dd_3",e.dd_4="dd_4",e.ss="ss",e.qq_1="qq_1",e.qq_2="qq_2",e.qq_3="qq_3",e.qq_4="qq_4",e.pp_1="pp_1",e.pp_2="pp_2",e.pp_3="pp_3",e.pp_4="pp_4",e.rr_1="rr_1",e.rr_2="rr_2",e.rr_3="rr_3",e.rr_4="rr_4",e.n_1="n_1",e.n_2="n_2",e.n_3="n_3",e.n_4="n_4",e.nn_1="nn_1",e.nn_2="nn_2",e.nn_3="nn_3",e.nn_4="nn_4",e.decimal="decimal",e.binary="binary",e.binary_$0_1="binary_$0_1",e.binary_$0_2="binary_$0_2",e.octal_1="octal_1",e.octal_2="octal_2",e.octal_$0_1="octal_$0_1",e.octal_$0_2="octal_$0_2",e.octal_$1_1="octal_$1_1",e.octal_$1_2="octal_$1_2",e.hexadecimal_1="hexadecimal_1",e.hexadecimal_2="hexadecimal_2",e.hexadecimal_$0_1="hexadecimal_$0_1",e.hexadecimal_$0_2="hexadecimal_$0_2",e.hexadecimal_$0_3="hexadecimal_$0_3",e.d="d",e.e="e",e.p="p",e.b="b",e.cc_1="cc_1",e.cc_2="cc_2",e.cc_3="cc_3",e.cc_4="cc_4",e.cc_5="cc_5",e.cc_6="cc_6",e.cc_7="cc_7",e.cc_8="cc_8",e.cc_9="cc_9",e.jj_1="jj_1",e.jj_2="jj_2",e.jj_3="jj_3",e.jj_4="jj_4",e.__="__",e._="_",e._eos="_eos",e.Lines="Lines",e.Line_1="Line_1",e.Line_2="Line_2",e.LineEqual="LineEqual",e.LineStatement="LineStatement",e.Statement_1="Statement_1",e.Statement_2="Statement_2",e.Statement_3="Statement_3",e.EqualDirective="EqualDirective",e.Directive_1="Directive_1",e.Directive_2="Directive_2",e.Directive_3="Directive_3",e.Directive_4="Directive_4",e.ForbiddenNames_1="ForbiddenNames_1",e.ForbiddenNames_2="ForbiddenNames_2",e.ForbiddenNames_3="ForbiddenNames_3",e.ForbiddenNames_4="ForbiddenNames_4",e.ForbiddenNames_5="ForbiddenNames_5",e.ForbiddenLabel="ForbiddenLabel",e.Label="Label",e.LabelDeclaration="LabelDeclaration",e.Expression="Expression",e.BitwiseOrExpression="BitwiseOrExpression",e.BitwiseOrExpression_$0="BitwiseOrExpression_$0",e.BitwiseXOrExpression="BitwiseXOrExpression",e.BitwiseXOrExpression_$0="BitwiseXOrExpression_$0",e.BitwiseAndExpression="BitwiseAndExpression",e.BitwiseAndExpression_$0="BitwiseAndExpression_$0",e.ShiftExpression="ShiftExpression",e.ShiftExpression_$0="ShiftExpression_$0",e.ShiftExpression_$0_$0_1="ShiftExpression_$0_$0_1",e.ShiftExpression_$0_$0_2="ShiftExpression_$0_$0_2",e.AdditiveExpression="AdditiveExpression",e.AdditiveExpression_$0="AdditiveExpression_$0",e.AdditiveExpression_$0_$0_1="AdditiveExpression_$0_$0_1",e.AdditiveExpression_$0_$0_2="AdditiveExpression_$0_$0_2",e.MultiplicativeExpression="MultiplicativeExpression",e.MultiplicativeExpression_$0="MultiplicativeExpression_$0",e.MultiplicativeExpression_$0_$0_1="MultiplicativeExpression_$0_$0_1",e.MultiplicativeExpression_$0_$0_2="MultiplicativeExpression_$0_$0_2",e.MultiplicativeExpression_$0_$0_3="MultiplicativeExpression_$0_$0_3",e.UnaryExpression_1="UnaryExpression_1",e.UnaryExpression_2="UnaryExpression_2",e.UnaryExpression_$0_1="UnaryExpression_$0_1",e.UnaryExpression_$0_2="UnaryExpression_$0_2",e.UnaryExpression_$0_3="UnaryExpression_$0_3",e.PrimaryExpression_1="PrimaryExpression_1",e.PrimaryExpression_2="PrimaryExpression_2",e.PrimaryExpression_3="PrimaryExpression_3",e.Reg8="Reg8",e.Instruction_1="Instruction_1",e.Instruction_2="Instruction_2",e.Instruction_3="Instruction_3",e.Instruction_4="Instruction_4",e.Instruction_5="Instruction_5",e.Instruction_6="Instruction_6",e.Instruction_7="Instruction_7",e.Instruction_8="Instruction_8",e.Instruction_9="Instruction_9",e.Instruction_10="Instruction_10",e.Instruction_11="Instruction_11",e.Instruction_12="Instruction_12",e.Instruction_13="Instruction_13",e.Instruction_14="Instruction_14",e.Instruction_15="Instruction_15",e.Instruction_16="Instruction_16",e.Load8Instruction_1="Load8Instruction_1",e.Load8Instruction_2="Load8Instruction_2",e.Load8Instruction_3="Load8Instruction_3",e.Load8Instruction_4="Load8Instruction_4",e.Load8Instruction_5="Load8Instruction_5",e.Load8Instruction_6="Load8Instruction_6",e.Load8Instruction_7="Load8Instruction_7",e.Load8Instruction_8="Load8Instruction_8",e.Load8Instruction_9="Load8Instruction_9",e.Load8Instruction_10="Load8Instruction_10",e.Load8Instruction_11="Load8Instruction_11",e.Load8Instruction_12="Load8Instruction_12",e.Load8Instruction_13="Load8Instruction_13",e.Load8Instruction_14="Load8Instruction_14",e.Load8Instruction_15="Load8Instruction_15",e.Load8Instruction_16="Load8Instruction_16",e.Load8Instruction_17="Load8Instruction_17",e.Load8Instruction_18="Load8Instruction_18",e.Load8Instruction_19="Load8Instruction_19",e.Load8Instruction_20="Load8Instruction_20",e.Load8Instruction_21="Load8Instruction_21",e.Load8Instruction_$0_1="Load8Instruction_$0_1",e.Load8Instruction_$0_2="Load8Instruction_$0_2",e.Load8Instruction_$1_1="Load8Instruction_$1_1",e.Load8Instruction_$1_2="Load8Instruction_$1_2",e.Load8Instruction_$2_1="Load8Instruction_$2_1",e.Load8Instruction_$2_2="Load8Instruction_$2_2",e.Load8Instruction_$3_1="Load8Instruction_$3_1",e.Load8Instruction_$3_2="Load8Instruction_$3_2",e.Load8Instruction_$4_1="Load8Instruction_$4_1",e.Load8Instruction_$4_2="Load8Instruction_$4_2",e.Load8Instruction_$5_1="Load8Instruction_$5_1",e.Load8Instruction_$5_2="Load8Instruction_$5_2",e.Load16Instruction_1="Load16Instruction_1",e.Load16Instruction_2="Load16Instruction_2",e.Load16Instruction_3="Load16Instruction_3",e.Load16Instruction_4="Load16Instruction_4",e.Load16Instruction_5="Load16Instruction_5",e.Load16Instruction_6="Load16Instruction_6",e.Load16Instruction_7="Load16Instruction_7",e.Load16Instruction_8="Load16Instruction_8",e.Load16Instruction_9="Load16Instruction_9",e.Load16Instruction_10="Load16Instruction_10",e.Load16Instruction_11="Load16Instruction_11",e.Load16Instruction_12="Load16Instruction_12",e.Load16Instruction_13="Load16Instruction_13",e.Load16Instruction_14="Load16Instruction_14",e.Load16Instruction_15="Load16Instruction_15",e.Load16Instruction_16="Load16Instruction_16",e.Load16Instruction_17="Load16Instruction_17",e.Load16Instruction_18="Load16Instruction_18",e.Load16Instruction_19="Load16Instruction_19",e.Load16Instruction_20="Load16Instruction_20",e.ExchangeInstruction_1="ExchangeInstruction_1",e.ExchangeInstruction_2="ExchangeInstruction_2",e.ExchangeInstruction_3="ExchangeInstruction_3",e.ExchangeInstruction_4="ExchangeInstruction_4",e.ExchangeInstruction_5="ExchangeInstruction_5",e.ExchangeInstruction_6="ExchangeInstruction_6",e.BlockInstruction_1="BlockInstruction_1",e.BlockInstruction_2="BlockInstruction_2",e.BlockInstruction_3="BlockInstruction_3",e.BlockInstruction_4="BlockInstruction_4",e.BlockInstruction_5="BlockInstruction_5",e.BlockInstruction_6="BlockInstruction_6",e.BlockInstruction_7="BlockInstruction_7",e.BlockInstruction_8="BlockInstruction_8",e.ArithmeticLogic8Instruction_1="ArithmeticLogic8Instruction_1",e.ArithmeticLogic8Instruction_2="ArithmeticLogic8Instruction_2",e.ArithmeticLogic8Instruction_3="ArithmeticLogic8Instruction_3",e.ArithmeticLogic8Instruction_4="ArithmeticLogic8Instruction_4",e.ArithmeticLogic8Instruction_5="ArithmeticLogic8Instruction_5",e.ArithmeticLogic8Instruction_6="ArithmeticLogic8Instruction_6",e.ArithmeticLogic8Instruction_7="ArithmeticLogic8Instruction_7",e.ArithmeticLogic8Instruction_8="ArithmeticLogic8Instruction_8",e.ArithmeticLogic8Instruction_9="ArithmeticLogic8Instruction_9",e.ArithmeticLogic8Instruction_10="ArithmeticLogic8Instruction_10",e.ArithmeticLogic8Instruction_11="ArithmeticLogic8Instruction_11",e.ArithmeticLogic8Instruction_12="ArithmeticLogic8Instruction_12",e.ArithmeticLogic8Instruction_13="ArithmeticLogic8Instruction_13",e.ArithmeticLogic8Instruction_14="ArithmeticLogic8Instruction_14",e.ArithmeticLogic8Instruction_15="ArithmeticLogic8Instruction_15",e.ArithmeticLogic8Instruction_16="ArithmeticLogic8Instruction_16",e.ArithmeticLogic8Instruction_17="ArithmeticLogic8Instruction_17",e.ArithmeticLogic8Instruction_18="ArithmeticLogic8Instruction_18",e.ArithmeticLogic8Instruction_19="ArithmeticLogic8Instruction_19",e.ArithmeticLogic8Instruction_20="ArithmeticLogic8Instruction_20",e.ArithmeticLogic8Instruction_21="ArithmeticLogic8Instruction_21",e.ArithmeticLogic8Instruction_22="ArithmeticLogic8Instruction_22",e.ArithmeticLogic8Instruction_23="ArithmeticLogic8Instruction_23",e.ArithmeticLogic8Instruction_24="ArithmeticLogic8Instruction_24",e.ArithmeticLogic8Instruction_25="ArithmeticLogic8Instruction_25",e.ArithmeticLogic8Instruction_26="ArithmeticLogic8Instruction_26",e.ArithmeticLogic8Instruction_27="ArithmeticLogic8Instruction_27",e.ArithmeticLogic8Instruction_28="ArithmeticLogic8Instruction_28",e.ArithmeticLogic8Instruction_29="ArithmeticLogic8Instruction_29",e.ArithmeticLogic8Instruction_30="ArithmeticLogic8Instruction_30",e.ArithmeticLogic8Instruction_31="ArithmeticLogic8Instruction_31",e.ArithmeticLogic8Instruction_32="ArithmeticLogic8Instruction_32",e.ArithmeticLogic8Instruction_33="ArithmeticLogic8Instruction_33",e.ArithmeticLogic8Instruction_34="ArithmeticLogic8Instruction_34",e.ArithmeticLogic8Instruction_35="ArithmeticLogic8Instruction_35",e.ArithmeticLogic8Instruction_36="ArithmeticLogic8Instruction_36",e.ArithmeticLogic8Instruction_37="ArithmeticLogic8Instruction_37",e.ArithmeticLogic8Instruction_38="ArithmeticLogic8Instruction_38",e.ArithmeticLogic8Instruction_39="ArithmeticLogic8Instruction_39",e.ArithmeticLogic8Instruction_40="ArithmeticLogic8Instruction_40",e.ArithmeticLogic8Instruction_$0="ArithmeticLogic8Instruction_$0",e.ArithmeticLogic8Instruction_$1="ArithmeticLogic8Instruction_$1",e.ArithmeticLogic8Instruction_$2="ArithmeticLogic8Instruction_$2",e.ArithmeticLogic8Instruction_$3="ArithmeticLogic8Instruction_$3",e.ArithmeticLogic8Instruction_$4_1="ArithmeticLogic8Instruction_$4_1",e.ArithmeticLogic8Instruction_$4_2="ArithmeticLogic8Instruction_$4_2",e.ArithmeticLogic8Instruction_$5="ArithmeticLogic8Instruction_$5",e.ArithmeticLogic8Instruction_$6_1="ArithmeticLogic8Instruction_$6_1",e.ArithmeticLogic8Instruction_$6_2="ArithmeticLogic8Instruction_$6_2",e.ArithmeticLogic8Instruction_$7="ArithmeticLogic8Instruction_$7",e.ArithmeticLogic8Instruction_$8="ArithmeticLogic8Instruction_$8",e.ArithmeticLogic8Instruction_$9="ArithmeticLogic8Instruction_$9",e.ArithmeticLogic8Instruction_$10="ArithmeticLogic8Instruction_$10",e.ArithmeticLogic8Instruction_$11_1="ArithmeticLogic8Instruction_$11_1",e.ArithmeticLogic8Instruction_$11_2="ArithmeticLogic8Instruction_$11_2",e.ArithmeticLogic8Instruction_$12="ArithmeticLogic8Instruction_$12",e.ArithmeticLogic8Instruction_$13_1="ArithmeticLogic8Instruction_$13_1",e.ArithmeticLogic8Instruction_$13_2="ArithmeticLogic8Instruction_$13_2",e.ArithmeticLogic8Instruction_$14="ArithmeticLogic8Instruction_$14",e.ArithmeticLogic8Instruction_$15="ArithmeticLogic8Instruction_$15",e.ArithmeticLogic8Instruction_$16="ArithmeticLogic8Instruction_$16",e.ArithmeticLogic8Instruction_$17="ArithmeticLogic8Instruction_$17",e.ArithmeticLogic8Instruction_$18_1="ArithmeticLogic8Instruction_$18_1",e.ArithmeticLogic8Instruction_$18_2="ArithmeticLogic8Instruction_$18_2",e.ArithmeticLogic8Instruction_$19="ArithmeticLogic8Instruction_$19",e.ArithmeticLogic8Instruction_$20_1="ArithmeticLogic8Instruction_$20_1",e.ArithmeticLogic8Instruction_$20_2="ArithmeticLogic8Instruction_$20_2",e.ArithmeticLogic8Instruction_$21="ArithmeticLogic8Instruction_$21",e.ArithmeticLogic8Instruction_$22="ArithmeticLogic8Instruction_$22",e.ArithmeticLogic8Instruction_$23="ArithmeticLogic8Instruction_$23",e.ArithmeticLogic8Instruction_$24="ArithmeticLogic8Instruction_$24",e.ArithmeticLogic8Instruction_$25_1="ArithmeticLogic8Instruction_$25_1",e.ArithmeticLogic8Instruction_$25_2="ArithmeticLogic8Instruction_$25_2",e.ArithmeticLogic8Instruction_$26="ArithmeticLogic8Instruction_$26",e.ArithmeticLogic8Instruction_$27_1="ArithmeticLogic8Instruction_$27_1",e.ArithmeticLogic8Instruction_$27_2="ArithmeticLogic8Instruction_$27_2",e.ArithmeticLogic8Instruction_$28="ArithmeticLogic8Instruction_$28",e.ArithmeticLogic8Instruction_$29="ArithmeticLogic8Instruction_$29",e.ArithmeticLogic8Instruction_$30="ArithmeticLogic8Instruction_$30",e.ArithmeticLogic8Instruction_$31="ArithmeticLogic8Instruction_$31",e.ArithmeticLogic8Instruction_$32_1="ArithmeticLogic8Instruction_$32_1",e.ArithmeticLogic8Instruction_$32_2="ArithmeticLogic8Instruction_$32_2",e.ArithmeticLogic8Instruction_$33="ArithmeticLogic8Instruction_$33",e.ArithmeticLogic8Instruction_$34_1="ArithmeticLogic8Instruction_$34_1",e.ArithmeticLogic8Instruction_$34_2="ArithmeticLogic8Instruction_$34_2",e.ArithmeticLogic8Instruction_$35="ArithmeticLogic8Instruction_$35",e.ArithmeticLogic8Instruction_$36="ArithmeticLogic8Instruction_$36",e.ArithmeticLogic8Instruction_$37="ArithmeticLogic8Instruction_$37",e.ArithmeticLogic8Instruction_$38="ArithmeticLogic8Instruction_$38",e.ArithmeticLogic8Instruction_$39_1="ArithmeticLogic8Instruction_$39_1",e.ArithmeticLogic8Instruction_$39_2="ArithmeticLogic8Instruction_$39_2",e.ArithmeticLogic8Instruction_$40="ArithmeticLogic8Instruction_$40",e.ArithmeticLogic8Instruction_$41_1="ArithmeticLogic8Instruction_$41_1",e.ArithmeticLogic8Instruction_$41_2="ArithmeticLogic8Instruction_$41_2",e.ArithmeticLogic8Instruction_$42="ArithmeticLogic8Instruction_$42",e.ArithmeticLogic8Instruction_$43="ArithmeticLogic8Instruction_$43",e.ArithmeticLogic8Instruction_$44="ArithmeticLogic8Instruction_$44",e.ArithmeticLogic8Instruction_$45="ArithmeticLogic8Instruction_$45",e.ArithmeticLogic8Instruction_$46_1="ArithmeticLogic8Instruction_$46_1",e.ArithmeticLogic8Instruction_$46_2="ArithmeticLogic8Instruction_$46_2",e.ArithmeticLogic8Instruction_$47="ArithmeticLogic8Instruction_$47",e.ArithmeticLogic8Instruction_$48_1="ArithmeticLogic8Instruction_$48_1",e.ArithmeticLogic8Instruction_$48_2="ArithmeticLogic8Instruction_$48_2",e.ArithmeticLogic8Instruction_$49="ArithmeticLogic8Instruction_$49",e.ArithmeticLogic8Instruction_$50="ArithmeticLogic8Instruction_$50",e.ArithmeticLogic8Instruction_$51="ArithmeticLogic8Instruction_$51",e.ArithmeticLogic8Instruction_$52="ArithmeticLogic8Instruction_$52",e.ArithmeticLogic8Instruction_$53_1="ArithmeticLogic8Instruction_$53_1",e.ArithmeticLogic8Instruction_$53_2="ArithmeticLogic8Instruction_$53_2",e.ArithmeticLogic8Instruction_$54="ArithmeticLogic8Instruction_$54",e.ArithmeticLogic8Instruction_$55_1="ArithmeticLogic8Instruction_$55_1",e.ArithmeticLogic8Instruction_$55_2="ArithmeticLogic8Instruction_$55_2",e.IncrementDecrement8Instruction_1="IncrementDecrement8Instruction_1",e.IncrementDecrement8Instruction_2="IncrementDecrement8Instruction_2",e.IncrementDecrement8Instruction_3="IncrementDecrement8Instruction_3",e.IncrementDecrement8Instruction_4="IncrementDecrement8Instruction_4",e.IncrementDecrement8Instruction_5="IncrementDecrement8Instruction_5",e.IncrementDecrement8Instruction_6="IncrementDecrement8Instruction_6",e.IncrementDecrement8Instruction_7="IncrementDecrement8Instruction_7",e.IncrementDecrement8Instruction_8="IncrementDecrement8Instruction_8",e.IncrementDecrement8Instruction_$0_1="IncrementDecrement8Instruction_$0_1",e.IncrementDecrement8Instruction_$0_2="IncrementDecrement8Instruction_$0_2",e.IncrementDecrement8Instruction_$1_1="IncrementDecrement8Instruction_$1_1",e.IncrementDecrement8Instruction_$1_2="IncrementDecrement8Instruction_$1_2",e.IncrementDecrement8Instruction_$2_1="IncrementDecrement8Instruction_$2_1",e.IncrementDecrement8Instruction_$2_2="IncrementDecrement8Instruction_$2_2",e.IncrementDecrement8Instruction_$3_1="IncrementDecrement8Instruction_$3_1",e.IncrementDecrement8Instruction_$3_2="IncrementDecrement8Instruction_$3_2",e.GeneralPurposeArithmeticInstruction_1="GeneralPurposeArithmeticInstruction_1",e.GeneralPurposeArithmeticInstruction_2="GeneralPurposeArithmeticInstruction_2",e.GeneralPurposeArithmeticInstruction_3="GeneralPurposeArithmeticInstruction_3",e.GeneralPurposeArithmeticInstruction_4="GeneralPurposeArithmeticInstruction_4",e.GeneralPurposeArithmeticInstruction_5="GeneralPurposeArithmeticInstruction_5",e.CpuControlGroupInstruction_1="CpuControlGroupInstruction_1",e.CpuControlGroupInstruction_2="CpuControlGroupInstruction_2",e.CpuControlGroupInstruction_3="CpuControlGroupInstruction_3",e.CpuControlGroupInstruction_4="CpuControlGroupInstruction_4",e.CpuControlGroupInstruction_5="CpuControlGroupInstruction_5",e.ArithmeticLogic16Instruction_1="ArithmeticLogic16Instruction_1",e.ArithmeticLogic16Instruction_2="ArithmeticLogic16Instruction_2",e.ArithmeticLogic16Instruction_3="ArithmeticLogic16Instruction_3",e.ArithmeticLogic16Instruction_4="ArithmeticLogic16Instruction_4",e.ArithmeticLogic16Instruction_5="ArithmeticLogic16Instruction_5",e.ArithmeticLogic16Instruction_6="ArithmeticLogic16Instruction_6",e.ArithmeticLogic16Instruction_7="ArithmeticLogic16Instruction_7",e.ArithmeticLogic16Instruction_8="ArithmeticLogic16Instruction_8",e.ArithmeticLogic16Instruction_9="ArithmeticLogic16Instruction_9",e.ArithmeticLogic16Instruction_10="ArithmeticLogic16Instruction_10",e.ArithmeticLogic16Instruction_11="ArithmeticLogic16Instruction_11",e.RotateShiftInstruction_1="RotateShiftInstruction_1",e.RotateShiftInstruction_2="RotateShiftInstruction_2",e.RotateShiftInstruction_3="RotateShiftInstruction_3",e.RotateShiftInstruction_4="RotateShiftInstruction_4",e.RotateShiftInstruction_5="RotateShiftInstruction_5",e.RotateShiftInstruction_6="RotateShiftInstruction_6",e.RotateShiftInstruction_7="RotateShiftInstruction_7",e.RotateShiftInstruction_8="RotateShiftInstruction_8",e.RotateShiftInstruction_9="RotateShiftInstruction_9",e.RotateShiftInstruction_10="RotateShiftInstruction_10",e.RotateShiftInstruction_11="RotateShiftInstruction_11",e.RotateShiftInstruction_12="RotateShiftInstruction_12",e.RotateShiftInstruction_13="RotateShiftInstruction_13",e.RotateShiftInstruction_14="RotateShiftInstruction_14",e.RotateShiftInstruction_15="RotateShiftInstruction_15",e.RotateShiftInstruction_16="RotateShiftInstruction_16",e.RotateShiftInstruction_17="RotateShiftInstruction_17",e.RotateShiftInstruction_18="RotateShiftInstruction_18",e.RotateShiftInstruction_19="RotateShiftInstruction_19",e.RotateShiftInstruction_20="RotateShiftInstruction_20",e.RotateShiftInstruction_21="RotateShiftInstruction_21",e.RotateShiftInstruction_22="RotateShiftInstruction_22",e.RotateShiftInstruction_23="RotateShiftInstruction_23",e.RotateShiftInstruction_24="RotateShiftInstruction_24",e.RotateShiftInstruction_25="RotateShiftInstruction_25",e.RotateShiftInstruction_26="RotateShiftInstruction_26",e.RotateShiftInstruction_27="RotateShiftInstruction_27",e.RotateShiftInstruction_28="RotateShiftInstruction_28",e.RotateShiftInstruction_29="RotateShiftInstruction_29",e.RotateShiftInstruction_30="RotateShiftInstruction_30",e.RotateShiftInstruction_31="RotateShiftInstruction_31",e.RotateShiftInstruction_32="RotateShiftInstruction_32",e.RotateShiftInstruction_33="RotateShiftInstruction_33",e.RotateShiftInstruction_34="RotateShiftInstruction_34",e.RotateShiftInstruction_$0_1="RotateShiftInstruction_$0_1",e.RotateShiftInstruction_$0_2="RotateShiftInstruction_$0_2",e.RotateShiftInstruction_$1_1="RotateShiftInstruction_$1_1",e.RotateShiftInstruction_$1_2="RotateShiftInstruction_$1_2",e.RotateShiftInstruction_$2_1="RotateShiftInstruction_$2_1",e.RotateShiftInstruction_$2_2="RotateShiftInstruction_$2_2",e.RotateShiftInstruction_$3_1="RotateShiftInstruction_$3_1",e.RotateShiftInstruction_$3_2="RotateShiftInstruction_$3_2",e.RotateShiftInstruction_$4_1="RotateShiftInstruction_$4_1",e.RotateShiftInstruction_$4_2="RotateShiftInstruction_$4_2",e.RotateShiftInstruction_$5_1="RotateShiftInstruction_$5_1",e.RotateShiftInstruction_$5_2="RotateShiftInstruction_$5_2",e.RotateShiftInstruction_$6_1="RotateShiftInstruction_$6_1",e.RotateShiftInstruction_$6_2="RotateShiftInstruction_$6_2",e.RotateShiftInstruction_$7_1="RotateShiftInstruction_$7_1",e.RotateShiftInstruction_$7_2="RotateShiftInstruction_$7_2",e.RotateShiftInstruction_$8_1="RotateShiftInstruction_$8_1",e.RotateShiftInstruction_$8_2="RotateShiftInstruction_$8_2",e.RotateShiftInstruction_$9_1="RotateShiftInstruction_$9_1",e.RotateShiftInstruction_$9_2="RotateShiftInstruction_$9_2",e.RotateShiftInstruction_$10_1="RotateShiftInstruction_$10_1",e.RotateShiftInstruction_$10_2="RotateShiftInstruction_$10_2",e.RotateShiftInstruction_$11_1="RotateShiftInstruction_$11_1",e.RotateShiftInstruction_$11_2="RotateShiftInstruction_$11_2",e.RotateShiftInstruction_$12_1="RotateShiftInstruction_$12_1",e.RotateShiftInstruction_$12_2="RotateShiftInstruction_$12_2",e.RotateShiftInstruction_$13_1="RotateShiftInstruction_$13_1",e.RotateShiftInstruction_$13_2="RotateShiftInstruction_$13_2",e.BitManipulationInstruction_1="BitManipulationInstruction_1",e.BitManipulationInstruction_2="BitManipulationInstruction_2",e.BitManipulationInstruction_3="BitManipulationInstruction_3",e.BitManipulationInstruction_4="BitManipulationInstruction_4",e.BitManipulationInstruction_5="BitManipulationInstruction_5",e.BitManipulationInstruction_6="BitManipulationInstruction_6",e.BitManipulationInstruction_7="BitManipulationInstruction_7",e.BitManipulationInstruction_8="BitManipulationInstruction_8",e.BitManipulationInstruction_9="BitManipulationInstruction_9",e.BitManipulationInstruction_10="BitManipulationInstruction_10",e.BitManipulationInstruction_11="BitManipulationInstruction_11",e.BitManipulationInstruction_12="BitManipulationInstruction_12",e.BitManipulationInstruction_$0_1="BitManipulationInstruction_$0_1",e.BitManipulationInstruction_$0_2="BitManipulationInstruction_$0_2",e.BitManipulationInstruction_$1_1="BitManipulationInstruction_$1_1",e.BitManipulationInstruction_$1_2="BitManipulationInstruction_$1_2",e.BitManipulationInstruction_$2_1="BitManipulationInstruction_$2_1",e.BitManipulationInstruction_$2_2="BitManipulationInstruction_$2_2",e.BitManipulationInstruction_$3_1="BitManipulationInstruction_$3_1",e.BitManipulationInstruction_$3_2="BitManipulationInstruction_$3_2",e.BitManipulationInstruction_$4_1="BitManipulationInstruction_$4_1",e.BitManipulationInstruction_$4_2="BitManipulationInstruction_$4_2",e.BitManipulationInstruction_$5_1="BitManipulationInstruction_$5_1",e.BitManipulationInstruction_$5_2="BitManipulationInstruction_$5_2",e.Offset_1="Offset_1",e.Offset_2="Offset_2",e.JumpInstruction_1="JumpInstruction_1",e.JumpInstruction_2="JumpInstruction_2",e.JumpInstruction_3="JumpInstruction_3",e.JumpInstruction_4="JumpInstruction_4",e.JumpInstruction_5="JumpInstruction_5",e.JumpInstruction_6="JumpInstruction_6",e.JumpInstruction_7="JumpInstruction_7",e.JumpInstruction_8="JumpInstruction_8",e.JumpInstruction_9="JumpInstruction_9",e.JumpInstruction_10="JumpInstruction_10",e.JumpInstruction_11="JumpInstruction_11",e.CallInstruction_1="CallInstruction_1",e.CallInstruction_2="CallInstruction_2",e.ReturnInstruction_1="ReturnInstruction_1",e.ReturnInstruction_2="ReturnInstruction_2",e.ReturnInstruction_3="ReturnInstruction_3",e.ReturnInstruction_4="ReturnInstruction_4",e.ReturnInstruction_5="ReturnInstruction_5",e.InputInstruction_1="InputInstruction_1",e.InputInstruction_2="InputInstruction_2",e.InputInstruction_3="InputInstruction_3",e.InputInstruction_4="InputInstruction_4",e.InputInstruction_5="InputInstruction_5",e.InputInstruction_6="InputInstruction_6",e.OutputInstruction_1="OutputInstruction_1",e.OutputInstruction_2="OutputInstruction_2",e.OutputInstruction_3="OutputInstruction_3",e.OutputInstruction_4="OutputInstruction_4",e.OutputInstruction_5="OutputInstruction_5",e.OutputInstruction_6="OutputInstruction_6",e.ByteDirective_1="ByteDirective_1",e.ByteDirective_2="ByteDirective_2",e.ByteDirective_3="ByteDirective_3",e.ByteDirective_4="ByteDirective_4",e.ByteDirective_5="ByteDirective_5",e.WordDirective_1="WordDirective_1",e.WordDirective_2="WordDirective_2",e.WordDirective_3="WordDirective_3",e.BlockDirective_1="BlockDirective_1",e.BlockDirective_2="BlockDirective_2",e.BlockDirective_3="BlockDirective_3",e.ByteValue_1="ByteValue_1",e.ByteValue_2="ByteValue_2",e.ByteValue_3="ByteValue_3",e.ByteValue_4="ByteValue_4",e.WordValue="WordValue",e.DataDirective_1="DataDirective_1",e.DataDirective_2="DataDirective_2",e.DataDirective_3="DataDirective_3",e.DataDirective_$0="DataDirective_$0",e.DataDirective_$1="DataDirective_$1",e.DataDirective_$2="DataDirective_$2",e.EscapeSequence_1="EscapeSequence_1",e.EscapeSequence_2="EscapeSequence_2",e.EscapeSequence_3="EscapeSequence_3",e.SimpleEscapeSequence="SimpleEscapeSequence",e.SimpleEscapeSequence_$0_1="SimpleEscapeSequence_$0_1",e.SimpleEscapeSequence_$0_2="SimpleEscapeSequence_$0_2",e.SimpleEscapeSequence_$0_3="SimpleEscapeSequence_$0_3",e.SimpleEscapeSequence_$0_4="SimpleEscapeSequence_$0_4",e.SimpleEscapeSequence_$0_5="SimpleEscapeSequence_$0_5",e.SimpleEscapeSequence_$0_6="SimpleEscapeSequence_$0_6",e.SimpleEscapeSequence_$0_7="SimpleEscapeSequence_$0_7",e.SimpleEscapeSequence_$0_8="SimpleEscapeSequence_$0_8",e.SimpleEscapeSequence_$0_9="SimpleEscapeSequence_$0_9",e.SimpleEscapeSequence_$0_10="SimpleEscapeSequence_$0_10",e.SimpleEscapeSequence_$0_11="SimpleEscapeSequence_$0_11",e.SimpleEscapeSequence_$0_12="SimpleEscapeSequence_$0_12",e.OctalEscapeSequence="OctalEscapeSequence",e.HexadecimalEscapeSequence="HexadecimalEscapeSequence",e.SimpleChar="SimpleChar",e.StringChar="StringChar",e.Char="Char",e.Char_$0_1="Char_$0_1",e.Char_$0_2="Char_$0_2",e.Str="Str",e.Str_$0_1="Str_$0_1",e.Str_$0_2="Str_$0_2",e.ZX81Str="ZX81Str",e.Comment="Comment",e.OriginDirective="OriginDirective",e.Filename_1="Filename_1",e.Filename_2="Filename_2",e.IncludeDirective="IncludeDirective",e.OutputDirective="OutputDirective",e.OutputDirective_$0="OutputDirective_$0",e.DeviceDirective="DeviceDirective",e.$EOF="$EOF",e))(w||{});class Gt{constructor(t,i){this.kind="n_1",this.pos=t,this.binary=i,this.value=(()=>f(t,i.raw,2,1))()}}class jt{constructor(t,i){this.kind="n_2",this.pos=t,this.hexadecimal=i,this.value=(()=>f(t,i.raw,16,1))()}}class Ft{constructor(t,i){this.kind="n_3",this.pos=t,this.octal=i,this.value=(()=>f(t,i.raw,8,1))()}}class Vt{constructor(t,i){this.kind="n_4",this.pos=t,this.decimal=i,this.value=(()=>f(t,i.raw,10,1))()}}class zt{constructor(t,i){this.kind="nn_1",this.pos=t,this.binary=i,this.value=(()=>f(t,i.raw,2,2))()}}class Ut{constructor(t,i){this.kind="nn_2",this.pos=t,this.hexadecimal=i,this.value=(()=>f(t,i.raw,16,2))()}}class Xt{constructor(t,i){this.kind="nn_3",this.pos=t,this.octal=i,this.value=(()=>f(t,i.raw,8,2))()}}class Wt{constructor(t,i){this.kind="nn_4",this.pos=t,this.decimal=i,this.value=(()=>f(t,i.raw,10,2))()}}class Zt{constructor(t){this.kind="b",this.raw=t,this.value=(()=>parseInt(t))()}}class Ht{constructor(t){this.kind="Statement_1",this.inc=t,this.linesinfo=(()=>t.lines)()}}class Qt{constructor(t){this.kind="Statement_2",this.ins=t,this.elements=(()=>t.elements)()}}class Yt{constructor(t){this.kind="Statement_3",this.dir=t,this.elements=(()=>t.elements)(),this.address=(()=>t.address)()}}class Tt{constructor(t){this.kind="Directive_1",this.data=t,this.elements=(()=>t.elements)(),this.address=(()=>null)()}}class Kt{constructor(t){this.kind="Directive_2",this.origin=t,this.elements=(()=>[])(),this.address=(()=>t.address.value)()}}class dt{constructor(t){this.kind="Directive_3",this.directive=t,this.elements=(()=>[])(),this.address=(()=>null)()}}class $t{constructor(t){this.kind="Directive_4",this.directive=t,this.elements=(()=>[])(),this.address=(()=>null)()}}class ti{constructor(t){this.kind="Expression",this.e1=t,this.eval=(()=>t.eval)()}}class ii{constructor(t,i){this.kind="BitwiseOrExpression",this.left=t,this.right=i,this.eval=(()=>C(t,i,at))()}}class ni{constructor(t,i){this.kind="BitwiseXOrExpression",this.left=t,this.right=i,this.eval=(()=>C(t,i,ht))()}}class ei{constructor(t,i){this.kind="BitwiseAndExpression",this.left=t,this.right=i,this.eval=(()=>C(t,i,mt))()}}class si{constructor(t,i){this.kind="ShiftExpression",this.left=t,this.right=i,this.eval=(()=>p(t,i,{"<<":_t,">>":gt}))()}}class ri{constructor(t,i){this.kind="AdditiveExpression",this.left=t,this.right=i,this.eval=(()=>p(t,i,{"+":It,"-":xt}))()}}class ci{constructor(t,i){this.kind="MultiplicativeExpression",this.left=t,this.right=i,this.eval=(()=>p(t,i,{"*":wt,"/":At,"%":Lt}))()}}class ui{constructor(t,i){this.kind="UnaryExpression_1",this.op=t,this.e=i,this.eval=(()=>ot(i,t,{"~":kt,"+":ft,"-":St}))()}}class li{constructor(t){this.kind="UnaryExpression_2",this.e=t,this.eval=(()=>G(t,j))()}}class oi{constructor(t){this.kind="PrimaryExpression_1",this.nn=t,this.eval=(()=>()=>t.value)()}}class ai{constructor(t,i){this.kind="PrimaryExpression_2",this.pos=t,this.label=i,this.eval=(()=>()=>E(i.name))()}}class hi{constructor(t){this.kind="PrimaryExpression_3",this.e=t,this.eval=(()=>G(t,j))()}}class mi{constructor(t,i){this.kind="Load8Instruction_1",this.r0=t,this.r1=i,this.elements=(()=>[64|_(t.reg,3)|_(i.reg)])()}}class _i{constructor(t){this.kind="Load8Instruction_2",this.r=t,this.elements=(()=>[70|_(t,3)])()}}class gi{constructor(t,i,n,s){this.kind="Load8Instruction_3",this.r=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,70|_(t,3),l(n,i,s)])()}}class Ii{constructor(t,i,n,s){this.kind="Load8Instruction_4",this.r=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,70|_(t,3),l(n,i,s)])()}}class xi{constructor(t){this.kind="Load8Instruction_5",this.r=t,this.elements=(()=>[112|_(t)])()}}class wi{constructor(t,i,n,s){this.kind="Load8Instruction_6",this.s=t,this.pos=i,this.d=n,this.r=s,this.elements=(()=>[221,112|_(s),l(i,t,n)])()}}class Ai{constructor(t,i,n,s){this.kind="Load8Instruction_7",this.s=t,this.pos=i,this.d=n,this.r=s,this.elements=(()=>[253,112|_(s),l(i,t,n)])()}}class Li{constructor(t,i){this.kind="Load8Instruction_8",this.pos=t,this.n=i,this.elements=(()=>[54,A(t,i)])()}}class fi{constructor(t,i,n,s,r){this.kind="Load8Instruction_9",this.s=t,this.pos0=i,this.d=n,this.pos1=s,this.n=r,this.elements=(()=>[221,54,l(i,t,n),A(s,r)])()}}class Si{constructor(t,i,n,s,r){this.kind="Load8Instruction_10",this.s=t,this.pos0=i,this.d=n,this.pos1=s,this.n=r,this.elements=(()=>[253,54,l(i,t,n),A(s,r)])()}}class ki{constructor(){this.kind="Load8Instruction_11",this.elements=(()=>[10])()}}class Ei{constructor(){this.kind="Load8Instruction_12",this.elements=(()=>[26])()}}class Ri{constructor(t,i){this.kind="Load8Instruction_13",this.pos=t,this.ee=i,this.elements=(()=>[58,I(t,i)])()}}class vi{constructor(){this.kind="Load8Instruction_14",this.elements=(()=>[2])()}}class Ci{constructor(){this.kind="Load8Instruction_15",this.elements=(()=>[18])()}}class pi{constructor(t,i){this.kind="Load8Instruction_16",this.pos=t,this.ee=i,this.elements=(()=>[50,I(t,i)])()}}class Bi{constructor(){this.kind="Load8Instruction_17",this.elements=(()=>[237,87])()}}class Di{constructor(){this.kind="Load8Instruction_18",this.elements=(()=>[237,95])()}}class bi{constructor(){this.kind="Load8Instruction_19",this.elements=(()=>[237,71])()}}class yi{constructor(){this.kind="Load8Instruction_20",this.elements=(()=>[237,79])()}}class Mi{constructor(t,i,n){this.kind="Load8Instruction_21",this.r=t,this.pos=i,this.n=n,this.elements=(()=>[6|_(t.reg,3),A(i,n)])()}}class qi{constructor(t,i){this.kind="Load16Instruction_1",this.pos=t,this.ee=i,this.elements=(()=>[221,33,I(t,i)])()}}class Oi{constructor(t,i){this.kind="Load16Instruction_2",this.pos=t,this.ee=i,this.elements=(()=>[253,33,I(t,i)])()}}class Pi{constructor(t,i){this.kind="Load16Instruction_3",this.pos=t,this.ee=i,this.elements=(()=>[42,I(t,i)])()}}class Ni{constructor(t,i,n){this.kind="Load16Instruction_4",this.dd=t,this.pos=i,this.ee=n,this.elements=(()=>[237,75|R(t,4),I(i,n)])()}}class Ji{constructor(t,i){this.kind="Load16Instruction_5",this.pos=t,this.ee=i,this.elements=(()=>[221,42,I(t,i)])()}}class Gi{constructor(t,i){this.kind="Load16Instruction_6",this.pos=t,this.ee=i,this.elements=(()=>[253,42,I(t,i)])()}}class ji{constructor(t,i){this.kind="Load16Instruction_7",this.pos=t,this.ee=i,this.elements=(()=>[34,I(t,i)])()}}class Fi{constructor(t,i,n){this.kind="Load16Instruction_8",this.pos=t,this.ee=i,this.dd=n,this.elements=(()=>[237,67|R(n,4),I(t,i)])()}}class Vi{constructor(t,i){this.kind="Load16Instruction_9",this.pos=t,this.ee=i,this.elements=(()=>[221,34,I(t,i)])()}}class zi{constructor(t,i){this.kind="Load16Instruction_10",this.pos=t,this.ee=i,this.elements=(()=>[253,34,I(t,i)])()}}class Ui{constructor(){this.kind="Load16Instruction_11",this.elements=(()=>[249])()}}class Xi{constructor(){this.kind="Load16Instruction_12",this.elements=(()=>[221,249])()}}class Wi{constructor(){this.kind="Load16Instruction_13",this.elements=(()=>[253,249])()}}class Zi{constructor(t,i,n){this.kind="Load16Instruction_14",this.dd=t,this.pos=i,this.ee=n,this.elements=(()=>[1|R(t,4),I(i,n)])()}}class Hi{constructor(t){this.kind="Load16Instruction_15",this.qq=t,this.elements=(()=>[197|P(t,4)])()}}class Qi{constructor(){this.kind="Load16Instruction_16",this.elements=(()=>[221,229])()}}class Yi{constructor(){this.kind="Load16Instruction_17",this.elements=(()=>[253,229])()}}class Ti{constructor(t){this.kind="Load16Instruction_18",this.qq=t,this.elements=(()=>[193|P(t,4)])()}}class Ki{constructor(){this.kind="Load16Instruction_19",this.elements=(()=>[221,225])()}}class di{constructor(){this.kind="Load16Instruction_20",this.elements=(()=>[253,225])()}}class $i{constructor(){this.kind="ExchangeInstruction_1",this.elements=(()=>[235])()}}class tn{constructor(){this.kind="ExchangeInstruction_2",this.elements=(()=>[8])()}}class nn{constructor(){this.kind="ExchangeInstruction_3",this.elements=(()=>[217])()}}class en{constructor(){this.kind="ExchangeInstruction_4",this.elements=(()=>[227])()}}class sn{constructor(){this.kind="ExchangeInstruction_5",this.elements=(()=>[221,227])()}}class rn{constructor(){this.kind="ExchangeInstruction_6",this.elements=(()=>[253,227])()}}class cn{constructor(){this.kind="BlockInstruction_1",this.elements=(()=>[237,176])()}}class un{constructor(){this.kind="BlockInstruction_2",this.elements=(()=>[237,160])()}}class ln{constructor(){this.kind="BlockInstruction_3",this.elements=(()=>[237,184])()}}class on{constructor(){this.kind="BlockInstruction_4",this.elements=(()=>[237,168])()}}class an{constructor(){this.kind="BlockInstruction_5",this.elements=(()=>[237,177])()}}class hn{constructor(){this.kind="BlockInstruction_6",this.elements=(()=>[237,161])()}}class mn{constructor(){this.kind="BlockInstruction_7",this.elements=(()=>[237,185])()}}class _n{constructor(){this.kind="BlockInstruction_8",this.elements=(()=>[237,169])()}}class gn{constructor(t){this.kind="ArithmeticLogic8Instruction_1",this.r=t,this.elements=(()=>[128|_(t)])()}}class In{constructor(t,i){this.kind="ArithmeticLogic8Instruction_2",this.pos=t,this.n=i,this.elements=(()=>[198,A(t,i)])()}}class xn{constructor(){this.kind="ArithmeticLogic8Instruction_3",this.elements=(()=>[134])()}}class wn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_4",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,134,l(i,t,n)])()}}class An{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_5",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,134,l(i,t,n)])()}}class Ln{constructor(t){this.kind="ArithmeticLogic8Instruction_6",this.r=t,this.elements=(()=>[136|_(t)])()}}class fn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_7",this.pos=t,this.n=i,this.elements=(()=>[206,A(t,i)])()}}class Sn{constructor(){this.kind="ArithmeticLogic8Instruction_8",this.elements=(()=>[142])()}}class kn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_9",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,142,l(i,t,n)])()}}class En{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_10",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,142,l(i,t,n)])()}}class Rn{constructor(t){this.kind="ArithmeticLogic8Instruction_11",this.r=t,this.elements=(()=>[144|_(t)])()}}class vn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_12",this.pos=t,this.n=i,this.elements=(()=>[214,A(t,i)])()}}class Cn{constructor(){this.kind="ArithmeticLogic8Instruction_13",this.elements=(()=>[150])()}}class pn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_14",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,150,l(i,t,n)])()}}class Bn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_15",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,150,l(i,t,n)])()}}class Dn{constructor(t){this.kind="ArithmeticLogic8Instruction_16",this.r=t,this.elements=(()=>[152|_(t)])()}}class bn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_17",this.pos=t,this.n=i,this.elements=(()=>[222,A(t,i)])()}}class yn{constructor(){this.kind="ArithmeticLogic8Instruction_18",this.elements=(()=>[158])()}}class Mn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_19",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,158,l(i,t,n)])()}}class qn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_20",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,158,l(i,t,n)])()}}class On{constructor(t){this.kind="ArithmeticLogic8Instruction_21",this.r=t,this.elements=(()=>[160|_(t)])()}}class Pn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_22",this.pos=t,this.n=i,this.elements=(()=>[230,A(t,i)])()}}class Nn{constructor(){this.kind="ArithmeticLogic8Instruction_23",this.elements=(()=>[166])()}}class Jn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_24",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,166,l(i,t,n)])()}}class Gn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_25",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,166,l(i,t,n)])()}}class jn{constructor(t){this.kind="ArithmeticLogic8Instruction_26",this.r=t,this.elements=(()=>[176|_(t)])()}}class Fn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_27",this.pos=t,this.n=i,this.elements=(()=>[246,A(t,i)])()}}class Vn{constructor(){this.kind="ArithmeticLogic8Instruction_28",this.elements=(()=>[182])()}}class zn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_29",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,182,l(i,t,n)])()}}class Un{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_30",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,182,l(i,t,n)])()}}class Xn{constructor(t){this.kind="ArithmeticLogic8Instruction_31",this.r=t,this.elements=(()=>[168|_(t)])()}}class Wn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_32",this.pos=t,this.n=i,this.elements=(()=>[238,A(t,i)])()}}class Zn{constructor(){this.kind="ArithmeticLogic8Instruction_33",this.elements=(()=>[174])()}}class Hn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_34",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,174,l(i,t,n)])()}}class Qn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_35",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,174,l(i,t,n)])()}}class Yn{constructor(t){this.kind="ArithmeticLogic8Instruction_36",this.r=t,this.elements=(()=>[184|_(t)])()}}class Tn{constructor(t,i){this.kind="ArithmeticLogic8Instruction_37",this.pos=t,this.n=i,this.elements=(()=>[254,A(t,i)])()}}class Kn{constructor(){this.kind="ArithmeticLogic8Instruction_38",this.elements=(()=>[190])()}}class dn{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_39",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,190,l(i,t,n)])()}}class $n{constructor(t,i,n){this.kind="ArithmeticLogic8Instruction_40",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,190,l(i,t,n)])()}}class te{constructor(t){this.kind="IncrementDecrement8Instruction_1",this.r=t,this.elements=(()=>[4|_(t,3)])()}}class ie{constructor(){this.kind="IncrementDecrement8Instruction_2",this.elements=(()=>[52])()}}class ne{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_3",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,52,l(i,t,n)])()}}class ee{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_4",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,52,l(i,t,n)])()}}class se{constructor(t){this.kind="IncrementDecrement8Instruction_5",this.r=t,this.elements=(()=>[5|_(t,3)])()}}class re{constructor(){this.kind="IncrementDecrement8Instruction_6",this.elements=(()=>[53])()}}class ce{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_7",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,53,l(i,t,n)])()}}class ue{constructor(t,i,n){this.kind="IncrementDecrement8Instruction_8",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,53,l(i,t,n)])()}}class le{constructor(){this.kind="GeneralPurposeArithmeticInstruction_1",this.elements=(()=>[39])()}}class oe{constructor(){this.kind="GeneralPurposeArithmeticInstruction_2",this.elements=(()=>[47])()}}class ae{constructor(){this.kind="GeneralPurposeArithmeticInstruction_3",this.elements=(()=>[237,68])()}}class he{constructor(){this.kind="GeneralPurposeArithmeticInstruction_4",this.elements=(()=>[63])()}}class me{constructor(){this.kind="GeneralPurposeArithmeticInstruction_5",this.elements=(()=>[55])()}}class _e{constructor(){this.kind="CpuControlGroupInstruction_1",this.elements=(()=>[0])()}}class ge{constructor(){this.kind="CpuControlGroupInstruction_2",this.elements=(()=>[118])()}}class Ie{constructor(){this.kind="CpuControlGroupInstruction_3",this.elements=(()=>[243])()}}class xe{constructor(){this.kind="CpuControlGroupInstruction_4",this.elements=(()=>[251])()}}class we{constructor(t){this.kind="CpuControlGroupInstruction_5",this.m=t,this.elements=(()=>[237,d(t)])()}}class Ae{constructor(t){this.kind="ArithmeticLogic16Instruction_1",this.ss=t,this.elements=(()=>[9|S(t,4)])()}}class Le{constructor(t){this.kind="ArithmeticLogic16Instruction_2",this.ss=t,this.elements=(()=>[237,74|S(t,4)])()}}class fe{constructor(t){this.kind="ArithmeticLogic16Instruction_3",this.ss=t,this.elements=(()=>[237,66|S(t,4)])()}}class Se{constructor(t){this.kind="ArithmeticLogic16Instruction_4",this.pp=t,this.elements=(()=>[221,9|Y(t,4)])()}}class ke{constructor(t){this.kind="ArithmeticLogic16Instruction_5",this.rr=t,this.elements=(()=>[253,9|T(t,4)])()}}class Ee{constructor(t){this.kind="ArithmeticLogic16Instruction_6",this.ss=t,this.elements=(()=>[3|S(t,4)])()}}class Re{constructor(){this.kind="ArithmeticLogic16Instruction_7",this.elements=(()=>[221,35])()}}class ve{constructor(){this.kind="ArithmeticLogic16Instruction_8",this.elements=(()=>[253,35])()}}class Ce{constructor(t){this.kind="ArithmeticLogic16Instruction_9",this.ss=t,this.elements=(()=>[11|S(t,4)])()}}class pe{constructor(){this.kind="ArithmeticLogic16Instruction_10",this.elements=(()=>[221,43])()}}class Be{constructor(){this.kind="ArithmeticLogic16Instruction_11",this.elements=(()=>[253,43])()}}class De{constructor(){this.kind="RotateShiftInstruction_1",this.elements=(()=>[7])()}}class be{constructor(){this.kind="RotateShiftInstruction_2",this.elements=(()=>[23])()}}class ye{constructor(){this.kind="RotateShiftInstruction_3",this.elements=(()=>[15])()}}class Me{constructor(){this.kind="RotateShiftInstruction_4",this.elements=(()=>[31])()}}class qe{constructor(t){this.kind="RotateShiftInstruction_5",this.r=t,this.elements=(()=>[203,0|_(t)])()}}class Oe{constructor(){this.kind="RotateShiftInstruction_6",this.elements=(()=>[203,6])()}}class Pe{constructor(t,i,n){this.kind="RotateShiftInstruction_7",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),6])()}}class Ne{constructor(t,i,n){this.kind="RotateShiftInstruction_8",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),6])()}}class Je{constructor(t){this.kind="RotateShiftInstruction_9",this.r=t,this.elements=(()=>[203,16|_(t)])()}}class Ge{constructor(){this.kind="RotateShiftInstruction_10",this.elements=(()=>[203,22])()}}class je{constructor(t,i,n){this.kind="RotateShiftInstruction_11",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),22])()}}class Fe{constructor(t,i,n){this.kind="RotateShiftInstruction_12",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),22])()}}class Ve{constructor(t){this.kind="RotateShiftInstruction_13",this.r=t,this.elements=(()=>[203,8|_(t)])()}}class ze{constructor(){this.kind="RotateShiftInstruction_14",this.elements=(()=>[203,14])()}}class Ue{constructor(t,i,n){this.kind="RotateShiftInstruction_15",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),14])()}}class Xe{constructor(t,i,n){this.kind="RotateShiftInstruction_16",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),14])()}}class We{constructor(t){this.kind="RotateShiftInstruction_17",this.r=t,this.elements=(()=>[203,24|_(t)])()}}class Ze{constructor(){this.kind="RotateShiftInstruction_18",this.elements=(()=>[203,30])()}}class He{constructor(t,i,n){this.kind="RotateShiftInstruction_19",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),30])()}}class Qe{constructor(t,i,n){this.kind="RotateShiftInstruction_20",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),30])()}}class Ye{constructor(t){this.kind="RotateShiftInstruction_21",this.r=t,this.elements=(()=>[203,32|_(t)])()}}class Te{constructor(){this.kind="RotateShiftInstruction_22",this.elements=(()=>[203,38])()}}class Ke{constructor(t,i,n){this.kind="RotateShiftInstruction_23",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),38])()}}class de{constructor(t,i,n){this.kind="RotateShiftInstruction_24",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),38])()}}class $e{constructor(t){this.kind="RotateShiftInstruction_25",this.r=t,this.elements=(()=>[203,40|_(t)])()}}class ts{constructor(){this.kind="RotateShiftInstruction_26",this.elements=(()=>[203,46])()}}class is{constructor(t,i,n){this.kind="RotateShiftInstruction_27",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),46])()}}class ns{constructor(t,i,n){this.kind="RotateShiftInstruction_28",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),46])()}}class es{constructor(t){this.kind="RotateShiftInstruction_29",this.r=t,this.elements=(()=>[203,56|_(t)])()}}class ss{constructor(){this.kind="RotateShiftInstruction_30",this.elements=(()=>[203,62])()}}class rs{constructor(t,i,n){this.kind="RotateShiftInstruction_31",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[221,203,l(i,t,n),62])()}}class cs{constructor(t,i,n){this.kind="RotateShiftInstruction_32",this.s=t,this.pos=i,this.d=n,this.elements=(()=>[253,203,l(i,t,n),62])()}}class us{constructor(){this.kind="RotateShiftInstruction_33",this.elements=(()=>[237,111])()}}class ls{constructor(){this.kind="RotateShiftInstruction_34",this.elements=(()=>[237,103])()}}class os{constructor(t,i){this.kind="BitManipulationInstruction_1",this.b=t,this.r=i,this.elements=(()=>[203,64|t.value<<3|_(i)])()}}class as{constructor(t){this.kind="BitManipulationInstruction_2",this.b=t,this.elements=(()=>[203,70|t.value<<3])()}}class hs{constructor(t,i,n,s){this.kind="BitManipulationInstruction_3",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,203,l(n,i,s),70|t.value<<3])()}}class ms{constructor(t,i,n,s){this.kind="BitManipulationInstruction_4",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,203,l(n,i,s),70|t.value<<3])()}}class _s{constructor(t,i){this.kind="BitManipulationInstruction_5",this.b=t,this.r=i,this.elements=(()=>[203,192|t.value<<3|_(i)])()}}class gs{constructor(t){this.kind="BitManipulationInstruction_6",this.b=t,this.elements=(()=>[203,198|t.value<<3])()}}class Is{constructor(t,i,n,s){this.kind="BitManipulationInstruction_7",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,203,l(n,i,s),198|t.value<<3])()}}class xs{constructor(t,i,n,s){this.kind="BitManipulationInstruction_8",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,203,l(n,i,s),198|t.value<<3])()}}class ws{constructor(t,i){this.kind="BitManipulationInstruction_9",this.b=t,this.r=i,this.elements=(()=>[203,128|t.value<<3|_(i)])()}}class As{constructor(t){this.kind="BitManipulationInstruction_10",this.b=t,this.elements=(()=>[203,134|t.value<<3])()}}class Ls{constructor(t,i,n,s){this.kind="BitManipulationInstruction_11",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[221,203,l(n,i,s),134|t.value<<3])()}}class fs{constructor(t,i,n,s){this.kind="BitManipulationInstruction_12",this.b=t,this.s=i,this.pos=n,this.d=s,this.elements=(()=>[253,203,l(n,i,s),134|t.value<<3])()}}class Ss{constructor(t,i){this.kind="Offset_1",this.pos=t,this.label=i,this.eval=(()=>()=>E(i.name))()}}class ks{constructor(t){this.kind="Offset_2",this.e=t,this.eval=(()=>t.eval)()}}class Es{constructor(t,i){this.kind="JumpInstruction_1",this.pos=t,this.ee=i,this.elements=(()=>[195,I(t,i)])()}}class Rs{constructor(t,i,n){this.kind="JumpInstruction_2",this.cc=t,this.pos=i,this.ee=n,this.elements=(()=>[194|v(t,3),I(i,n)])()}}class vs{constructor(t,i){this.kind="JumpInstruction_3",this.pos=t,this.label=i,this.elements=(()=>[k(),D(t,i.name)])()}}class Cs{constructor(t,i){this.kind="JumpInstruction_4",this.pos=t,this.e=i,this.elements=(()=>[k(),B(t,i)])()}}class ps{constructor(t,i,n){this.kind="JumpInstruction_5",this.jj=t,this.pos=i,this.label=n,this.elements=(()=>[k(t),D(i,n.name)])()}}class Bs{constructor(t,i,n){this.kind="JumpInstruction_6",this.jj=t,this.pos=i,this.e=n,this.elements=(()=>[k(t),B(i,n)])()}}class Ds{constructor(){this.kind="JumpInstruction_7",this.elements=(()=>[233])()}}class bs{constructor(){this.kind="JumpInstruction_8",this.elements=(()=>[221,233])()}}class ys{constructor(){this.kind="JumpInstruction_9",this.elements=(()=>[253,233])()}}class Ms{constructor(t,i){this.kind="JumpInstruction_10",this.pos=t,this.label=i,this.elements=(()=>[16,D(t,i.name)])()}}class qs{constructor(t,i){this.kind="JumpInstruction_11",this.pos=t,this.e=i,this.elements=(()=>[16,B(t,i)])()}}class Os{constructor(t,i){this.kind="CallInstruction_1",this.pos=t,this.ee=i,this.elements=(()=>[205,I(t,i)])()}}class Ps{constructor(t,i,n){this.kind="CallInstruction_2",this.cc=t,this.pos=i,this.ee=n,this.elements=(()=>[196|v(t,3),I(i,n)])()}}class Ns{constructor(){this.kind="ReturnInstruction_1",this.elements=(()=>[201])()}}class Js{constructor(t){this.kind="ReturnInstruction_2",this.cc=t,this.elements=(()=>[192|v(t,3)])()}}class Gs{constructor(){this.kind="ReturnInstruction_3",this.elements=(()=>[237,77])()}}class js{constructor(){this.kind="ReturnInstruction_4",this.elements=(()=>[237,69])()}}class Fs{constructor(t){this.kind="ReturnInstruction_5",this.p=t,this.elements=(()=>[199|K(t.value,3)])()}}class Vs{constructor(t){this.kind="InputInstruction_1",this.r=t,this.elements=(()=>[237,64|_(t,3)])()}}class zs{constructor(t,i){this.kind="InputInstruction_2",this.pos=t,this.n=i,this.elements=(()=>[219,A(t,i)])()}}class Us{constructor(){this.kind="InputInstruction_3",this.elements=(()=>[237,162])()}}class Xs{constructor(){this.kind="InputInstruction_4",this.elements=(()=>[237,178])()}}class Ws{constructor(){this.kind="InputInstruction_5",this.elements=(()=>[237,170])()}}class Zs{constructor(){this.kind="InputInstruction_6",this.elements=(()=>[237,186])()}}class Hs{constructor(t){this.kind="OutputInstruction_1",this.r=t,this.elements=(()=>[237,65|_(t,3)])()}}class Qs{constructor(t,i){this.kind="OutputInstruction_2",this.pos=t,this.n=i,this.elements=(()=>[211,A(t,i)])()}}class Ys{constructor(){this.kind="OutputInstruction_3",this.elements=(()=>[237,163])()}}class Ts{constructor(){this.kind="OutputInstruction_4",this.elements=(()=>[237,179])()}}class Ks{constructor(){this.kind="OutputInstruction_5",this.elements=(()=>[237,171])()}}class ds{constructor(){this.kind="OutputInstruction_6",this.elements=(()=>[237,187])()}}class $s{constructor(t){this.kind="ByteValue_1",this.c=t,this.elements=(()=>t.elements)()}}class tr{constructor(t){this.kind="ByteValue_2",this.s=t,this.elements=(()=>t.elements)()}}class ir{constructor(t){this.kind="ByteValue_3",this.s=t,this.elements=(()=>t.elements)()}}class nr{constructor(t,i){this.kind="ByteValue_4",this.pos=t,this.e=i,this.elements=(()=>[A(t,i)])()}}class er{constructor(t,i){this.kind="WordValue",this.pos=t,this.e=i,this.elements=(()=>[I(t,i)])()}}class sr{constructor(t,i,n){this.kind="DataDirective_1",this.pos0=t,this.data0=i,this.data=n,this.elements=(()=>Et(t,i,n))()}}class rr{constructor(t,i,n){this.kind="DataDirective_2",this.pos0=t,this.data0=i,this.data=n,this.elements=(()=>Rt(t,i,n))()}}class cr{constructor(t,i,n){this.kind="DataDirective_3",this.pos0=t,this.nn=i,this.data=n,this.elements=(()=>[vt(t,i,n?.pos1,n?.b)])()}}class ur{constructor(t){this.kind="SimpleEscapeSequence",this.raw=t,this.elements=(()=>qt(t))()}}class lr{constructor(t,i){this.kind="OctalEscapeSequence",this.pos=t,this.raw=i,this.elements=(()=>Ot(t,i))()}}class or{constructor(t,i){this.kind="HexadecimalEscapeSequence",this.pos=t,this.raw=i,this.elements=(()=>Pt(t,i))()}}class ar{constructor(t,i){this.kind="SimpleChar",this.pos=t,this.raw=i,this.elements=(()=>H(t,i))()}}class hr{constructor(t,i){this.kind="StringChar",this.pos=t,this.raw=i,this.elements=(()=>H(t,i))()}}class mr{constructor(t){this.kind="Char",this.char=t,this.elements=(()=>t.elements)()}}class _r{constructor(t){this.kind="Str",this.chars=t,this.elements=(()=>t.reduce((i,n)=>i.concat(n.elements),[]))()}}class gr{constructor(t,i){this.kind="ZX81Str",this.pos=t,this.chars=i,this.elements=(()=>Jt(t,i))()}}class Ir{constructor(t,i){this.kind="IncludeDirective",this.pos=t,this.name=i,this.lines=(()=>W(t,i.raw))()}}class xr{constructor(t,i){this.kind="OutputDirective",this.name=t,this.sld=i,this.void=(()=>{U(t.raw,i?.name.raw)})()}}class wr{constructor(t){this.kind="DeviceDirective",this.raw=t,this.void=(()=>{X(t)})()}}class Ar{constructor(t){this.negating=!1,this.memoSafe=!0,this.$scope$BitwiseOrExpression$memo=new Map,this.$scope$BitwiseXOrExpression$memo=new Map,this.$scope$BitwiseAndExpression$memo=new Map,this.$scope$ShiftExpression$memo=new Map,this.$scope$AdditiveExpression$memo=new Map,this.$scope$MultiplicativeExpression$memo=new Map,this.pos={overallPos:0,line:1,offset:0},this.input=t}reset(t){this.pos=t}finished(){return this.pos.overallPos===this.input.length}clearMemos(){this.$scope$BitwiseOrExpression$memo.clear(),this.$scope$BitwiseXOrExpression$memo.clear(),this.$scope$BitwiseAndExpression$memo.clear(),this.$scope$ShiftExpression$memo.clear(),this.$scope$AdditiveExpression$memo.clear(),this.$scope$MultiplicativeExpression$memo.clear()}matchstart(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchLines(t+1,i))!==null&&this.match$EOF(i)!==null&&(s={kind:"start",lines:n}),s})}matchr(t,i){return this.choice([()=>this.matchr_1(t+1,i),()=>this.matchr_2(t+1,i),()=>this.matchr_3(t+1,i),()=>this.matchr_4(t+1,i),()=>this.matchr_5(t+1,i),()=>this.matchr_6(t+1,i),()=>this.matchr_7(t+1,i)])}matchr_1(t,i){return this.regexAccept(String.raw`(?:a)`,t+1,i)}matchr_2(t,i){return this.regexAccept(String.raw`(?:b)`,t+1,i)}matchr_3(t,i){return this.regexAccept(String.raw`(?:c)`,t+1,i)}matchr_4(t,i){return this.regexAccept(String.raw`(?:d)`,t+1,i)}matchr_5(t,i){return this.regexAccept(String.raw`(?:e)`,t+1,i)}matchr_6(t,i){return this.regexAccept(String.raw`(?:h)`,t+1,i)}matchr_7(t,i){return this.regexAccept(String.raw`(?:l)`,t+1,i)}matchdd(t,i){return this.choice([()=>this.matchdd_1(t+1,i),()=>this.matchdd_2(t+1,i),()=>this.matchdd_3(t+1,i),()=>this.matchdd_4(t+1,i)])}matchdd_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchdd_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchdd_3(t,i){return this.regexAccept(String.raw`(?:hl)`,t+1,i)}matchdd_4(t,i){return this.regexAccept(String.raw`(?:sp)`,t+1,i)}matchss(t,i){return this.matchdd(t+1,i)}matchqq(t,i){return this.choice([()=>this.matchqq_1(t+1,i),()=>this.matchqq_2(t+1,i),()=>this.matchqq_3(t+1,i),()=>this.matchqq_4(t+1,i)])}matchqq_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchqq_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchqq_3(t,i){return this.regexAccept(String.raw`(?:hl)`,t+1,i)}matchqq_4(t,i){return this.regexAccept(String.raw`(?:af)`,t+1,i)}matchpp(t,i){return this.choice([()=>this.matchpp_1(t+1,i),()=>this.matchpp_2(t+1,i),()=>this.matchpp_3(t+1,i),()=>this.matchpp_4(t+1,i)])}matchpp_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchpp_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchpp_3(t,i){return this.regexAccept(String.raw`(?:ix)`,t+1,i)}matchpp_4(t,i){return this.regexAccept(String.raw`(?:sp)`,t+1,i)}matchrr(t,i){return this.choice([()=>this.matchrr_1(t+1,i),()=>this.matchrr_2(t+1,i),()=>this.matchrr_3(t+1,i),()=>this.matchrr_4(t+1,i)])}matchrr_1(t,i){return this.regexAccept(String.raw`(?:bc)`,t+1,i)}matchrr_2(t,i){return this.regexAccept(String.raw`(?:de)`,t+1,i)}matchrr_3(t,i){return this.regexAccept(String.raw`(?:iy)`,t+1,i)}matchrr_4(t,i){return this.regexAccept(String.raw`(?:sp)`,t+1,i)}matchn(t,i){return this.choice([()=>this.matchn_1(t+1,i),()=>this.matchn_2(t+1,i),()=>this.matchn_3(t+1,i),()=>this.matchn_4(t+1,i)])}matchn_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchbinary(t+1,i))!==null&&(r=new Gt(n,s)),r})}matchn_2(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchhexadecimal(t+1,i))!==null&&(r=new jt(n,s)),r})}matchn_3(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchoctal(t+1,i))!==null&&(r=new Ft(n,s)),r})}matchn_4(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchdecimal(t+1,i))!==null&&(r=new Vt(n,s)),r})}matchnn(t,i){return this.choice([()=>this.matchnn_1(t+1,i),()=>this.matchnn_2(t+1,i),()=>this.matchnn_3(t+1,i),()=>this.matchnn_4(t+1,i)])}matchnn_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchbinary(t+1,i))!==null&&(r=new zt(n,s)),r})}matchnn_2(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchhexadecimal(t+1,i))!==null&&(r=new Ut(n,s)),r})}matchnn_3(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchoctal(t+1,i))!==null&&(r=new Xt(n,s)),r})}matchnn_4(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchdecimal(t+1,i))!==null&&(r=new Wt(n,s)),r})}matchdecimal(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-9]+)`,t+1,i))!==null&&(this.regexAccept(String.raw`(?:d)`,t+1,i)||!0)&&(s={kind:"decimal",raw:n}),s})}matchbinary(t,i){return this.run(t,()=>{let n,s=null;return this.matchbinary_$0(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[0-1]+)`,t+1,i))!==null&&(s={kind:"binary",raw:n}),s})}matchbinary_$0(t,i){return this.choice([()=>this.matchbinary_$0_1(t+1,i),()=>this.matchbinary_$0_2(t+1,i)])}matchbinary_$0_1(t,i){return this.regexAccept(String.raw`(?:0b)`,t+1,i)}matchbinary_$0_2(t,i){return this.regexAccept(String.raw`(?:%)`,t+1,i)}matchoctal(t,i){return this.choice([()=>this.matchoctal_1(t+1,i),()=>this.matchoctal_2(t+1,i)])}matchoctal_1(t,i){return this.run(t,()=>{let n,s=null;return this.matchoctal_$0(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[0-7]+)`,t+1,i))!==null&&(s={kind:"octal_1",raw:n}),s})}matchoctal_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-7]+)`,t+1,i))!==null&&this.matchoctal_$1(t+1,i)!==null&&(s={kind:"octal_2",raw:n}),s})}matchoctal_$0(t,i){return this.choice([()=>this.matchoctal_$0_1(t+1,i),()=>this.matchoctal_$0_2(t+1,i)])}matchoctal_$0_1(t,i){return this.regexAccept(String.raw`(?:0q)`,t+1,i)}matchoctal_$0_2(t,i){return this.regexAccept(String.raw`(?:0o)`,t+1,i)}matchoctal_$1(t,i){return this.choice([()=>this.matchoctal_$1_1(t+1,i),()=>this.matchoctal_$1_2(t+1,i)])}matchoctal_$1_1(t,i){return this.regexAccept(String.raw`(?:q)`,t+1,i)}matchoctal_$1_2(t,i){return this.regexAccept(String.raw`(?:o)`,t+1,i)}matchhexadecimal(t,i){return this.choice([()=>this.matchhexadecimal_1(t+1,i),()=>this.matchhexadecimal_2(t+1,i)])}matchhexadecimal_1(t,i){return this.run(t,()=>{let n,s=null;return this.matchhexadecimal_$0(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[0-9a-f]+)`,t+1,i))!==null&&(s={kind:"hexadecimal_1",raw:n}),s})}matchhexadecimal_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-9][0-9a-f]?)`,t+1,i))!==null&&this.regexAccept(String.raw`(?:h)`,t+1,i)!==null&&(s={kind:"hexadecimal_2",raw:n}),s})}matchhexadecimal_$0(t,i){return this.choice([()=>this.matchhexadecimal_$0_1(t+1,i),()=>this.matchhexadecimal_$0_2(t+1,i),()=>this.matchhexadecimal_$0_3(t+1,i)])}matchhexadecimal_$0_1(t,i){return this.regexAccept(String.raw`(?:0x)`,t+1,i)}matchhexadecimal_$0_2(t,i){return this.regexAccept(String.raw`(?:\$)`,t+1,i)}matchhexadecimal_$0_3(t,i){return this.regexAccept(String.raw`(?:#)`,t+1,i)}matchd(t,i){return this.matchn(t+1,i)}matche(t,i){return this.matchn(t+1,i)}matchp(t,i){return this.matchn(t+1,i)}matchb(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[0-7])`,t+1,i))!==null&&(s=new Zt(n)),s})}matchcc(t,i){return this.choice([()=>this.matchcc_1(t+1,i),()=>this.matchcc_2(t+1,i),()=>this.matchcc_3(t+1,i),()=>this.matchcc_4(t+1,i),()=>this.matchcc_5(t+1,i),()=>this.matchcc_6(t+1,i),()=>this.matchcc_7(t+1,i),()=>this.matchcc_8(t+1,i),()=>this.matchcc_9(t+1,i)])}matchcc_1(t,i){return this.regexAccept(String.raw`(?:nz)`,t+1,i)}matchcc_2(t,i){return this.regexAccept(String.raw`(?:z)`,t+1,i)}matchcc_3(t,i){return this.regexAccept(String.raw`(?:nc)`,t+1,i)}matchcc_4(t,i){return this.regexAccept(String.raw`(?:c)`,t+1,i)}matchcc_5(t,i){return this.regexAccept(String.raw`(?:po)`,t+1,i)}matchcc_6(t,i){return this.regexAccept(String.raw`(?:pe)`,t+1,i)}matchcc_7(t,i){return this.regexAccept(String.raw`(?:p)`,t+1,i)}matchcc_8(t,i){return this.regexAccept(String.raw`(?:m)`,t+1,i)}matchcc_9(t,i){return this.regexAccept(String.raw`(?:s)`,t+1,i)}matchjj(t,i){return this.choice([()=>this.matchjj_1(t+1,i),()=>this.matchjj_2(t+1,i),()=>this.matchjj_3(t+1,i),()=>this.matchjj_4(t+1,i)])}matchjj_1(t,i){return this.regexAccept(String.raw`(?:c)`,t+1,i)}matchjj_2(t,i){return this.regexAccept(String.raw`(?:nc)`,t+1,i)}matchjj_3(t,i){return this.regexAccept(String.raw`(?:z)`,t+1,i)}matchjj_4(t,i){return this.regexAccept(String.raw`(?:nz)`,t+1,i)}match__(t,i){return this.regexAccept(String.raw`(?:[ \t]+)`,t+1,i)}match_(t,i){return this.regexAccept(String.raw`(?:[ \t]*)`,t+1,i)}match_eos(t,i){return this.regexAccept(String.raw`(?:[ \t]*(;|\r\n|\n|//))`,t+1,i)}matchLines(t,i){return this.loop(()=>this.matchLine(t+1,i),!0)}matchLine(t,i){return this.choice([()=>this.matchLine_1(t+1,i),()=>this.matchLine_2(t+1,i)])}matchLine_1(t,i){return this.matchLineEqual(t+1,i)}matchLine_2(t,i){return this.matchLineStatement(t+1,i)}matchLineEqual(t,i){return this.run(t,()=>{let n,s,r,c=null;return(n=this.matchLabelDeclaration(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchEqualDirective(t+1,i))!==null&&this.match_(t+1,i)!==null&&((r=this.matchComment(t+1,i))||!0)&&this.regexAccept(String.raw`(?:\r\n|\n)`,t+1,i)!==null&&(c={kind:"LineEqual",label:n,equal:s,comment:r}),c})}matchLineStatement(t,i){return this.run(t,()=>{let n,s,r,c=null;return((n=this.matchLabelDeclaration(t+1,i))||!0)&&this.match_(t+1,i)!==null&&((s=this.matchStatement(t+1,i))||!0)&&this.match_(t+1,i)!==null&&((r=this.matchComment(t+1,i))||!0)&&this.regexAccept(String.raw`(?:\r\n|\n)`,t+1,i)!==null&&(c={kind:"LineStatement",label:n,statement:s,comment:r}),c})}matchStatement(t,i){return this.choice([()=>this.matchStatement_1(t+1,i),()=>this.matchStatement_2(t+1,i),()=>this.matchStatement_3(t+1,i)])}matchStatement_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchIncludeDirective(t+1,i))!==null&&(s=new Ht(n)),s})}matchStatement_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchInstruction(t+1,i))!==null&&(s=new Qt(n)),s})}matchStatement_3(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchDirective(t+1,i))!==null&&(s=new Yt(n)),s})}matchEqualDirective(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\.?equ|eq)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchExpression(t+1,i))!==null&&(s={kind:"EqualDirective",e:n}),s})}matchDirective(t,i){return this.choice([()=>this.matchDirective_1(t+1,i),()=>this.matchDirective_2(t+1,i),()=>this.matchDirective_3(t+1,i),()=>this.matchDirective_4(t+1,i)])}matchDirective_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchDataDirective(t+1,i))!==null&&(s=new Tt(n)),s})}matchDirective_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchOriginDirective(t+1,i))!==null&&(s=new Kt(n)),s})}matchDirective_3(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchOutputDirective(t+1,i))!==null&&(s=new dt(n)),s})}matchDirective_4(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchDeviceDirective(t+1,i))!==null&&(s=new $t(n)),s})}matchForbiddenNames(t,i){return this.choice([()=>this.matchForbiddenNames_1(t+1,i),()=>this.matchForbiddenNames_2(t+1,i),()=>this.matchForbiddenNames_3(t+1,i),()=>this.matchForbiddenNames_4(t+1,i),()=>this.matchForbiddenNames_5(t+1,i)])}matchForbiddenNames_1(t,i){return this.regexAccept(String.raw`(?:block|.\?equ|\.?org|\.?include|\.?output|\.?device)`,t+1,i)}matchForbiddenNames_2(t,i){return this.regexAccept(String.raw`(?:byte|call|cpdr|cpir|defb|defm|defs|defw|djnz|eq|halt|indr|inir|lddr|ldir|otdr|otir|outd|outi|push|reti|retn|rlca|rrca|word)`,t+1,i)}matchForbiddenNames_3(t,i){return this.regexAccept(String.raw`(?:adc|add|and|bit|ccf|cpd|cpi|cpl|daa|dec|exx|inc|ind|ini|ldd|ldi|neg|nop|org|out|pop|res|ret|rla)`,t+1,i)}matchForbiddenNames_4(t,i){return this.regexAccept(String.raw`(?:rlc|rld|rra|rrc|rrd|rst|sbc|scf|set|sla|sra|srl|sub|xor)`,t+1,i)}matchForbiddenNames_5(t,i){return this.regexAccept(String.raw`(?:cp|db|di|dm|ds|dw|dz|ei|eq|ex|im|in|jp|jr|ld|or|rl|rr)`,t+1,i)}matchForbiddenLabel(t,i){return this.run(t,()=>{let n=null;return this.matchForbiddenNames(t+1,i)!==null&&this.regexAccept(String.raw`(?:[ \t:\r\n])`,t+1,i)!==null&&(n={kind:"ForbiddenLabel"}),n})}matchLabel(t,i){return this.run(t,()=>{let n,s,r=null;return this.negate(()=>this.matchForbiddenLabel(t+1,i))!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[a-z_][a-z0-9_!\?#@\.]*)`,t+1,i))!==null&&(r={kind:"Label",pos:n,name:s}),r})}matchLabelDeclaration(t,i){return this.run(t,()=>{let n,s,r=null;return this.negate(()=>this.matchForbiddenLabel(t+1,i))!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[a-z_][a-z0-9_!\?#@\.]*)`,t+1,i))!==null&&(this.regexAccept(String.raw`(?:\:)`,t+1,i)||!0)&&(r={kind:"LabelDeclaration",pos:n,name:s}),r})}matchExpression(t,i){return this.run(t,()=>{let n,s=null;return this.negate(()=>this.regexAccept(String.raw`(?:\()`,t+1,i))!==null&&(n=this.matchBitwiseOrExpression(t+1,i))!==null&&(s=new ti(n)),s})}matchBitwiseOrExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchBitwiseOrExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchBitwiseXOrExpression(t+1,i))!==null&&(x=new ii(g,a)),x}),s=this.mark(),r=this.$scope$BitwiseOrExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseOrExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseOrExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseOrExpression_$0(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchBitwiseOrExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\|)`,t+1,i)!==null&&(s={kind:"BitwiseOrExpression_$0",e:n}),s})}matchBitwiseXOrExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchBitwiseXOrExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchBitwiseAndExpression(t+1,i))!==null&&(x=new ni(g,a)),x}),s=this.mark(),r=this.$scope$BitwiseXOrExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseXOrExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseXOrExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseXOrExpression_$0(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchBitwiseXOrExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\^)`,t+1,i)!==null&&(s={kind:"BitwiseXOrExpression_$0",e:n}),s})}matchBitwiseAndExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchBitwiseAndExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchShiftExpression(t+1,i))!==null&&(x=new ei(g,a)),x}),s=this.mark(),r=this.$scope$BitwiseAndExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseAndExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseAndExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseAndExpression_$0(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchBitwiseAndExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\&)`,t+1,i)!==null&&(s={kind:"BitwiseAndExpression_$0",e:n}),s})}matchShiftExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchShiftExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchAdditiveExpression(t+1,i))!==null&&(x=new si(g,a)),x}),s=this.mark(),r=this.$scope$ShiftExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$ShiftExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$ShiftExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchShiftExpression_$0(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchShiftExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchShiftExpression_$0_$0(t+1,i))!==null&&(r={kind:"ShiftExpression_$0",e:n,op:s}),r})}matchShiftExpression_$0_$0(t,i){return this.choice([()=>this.matchShiftExpression_$0_$0_1(t+1,i),()=>this.matchShiftExpression_$0_$0_2(t+1,i)])}matchShiftExpression_$0_$0_1(t,i){return this.regexAccept(String.raw`(?:<<)`,t+1,i)}matchShiftExpression_$0_$0_2(t,i){return this.regexAccept(String.raw`(?:>>)`,t+1,i)}matchAdditiveExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchAdditiveExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchMultiplicativeExpression(t+1,i))!==null&&(x=new ri(g,a)),x}),s=this.mark(),r=this.$scope$AdditiveExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$AdditiveExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$AdditiveExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchAdditiveExpression_$0(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchAdditiveExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchAdditiveExpression_$0_$0(t+1,i))!==null&&(r={kind:"AdditiveExpression_$0",e:n,op:s}),r})}matchAdditiveExpression_$0_$0(t,i){return this.choice([()=>this.matchAdditiveExpression_$0_$0_1(t+1,i),()=>this.matchAdditiveExpression_$0_$0_2(t+1,i)])}matchAdditiveExpression_$0_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchAdditiveExpression_$0_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchMultiplicativeExpression(t,i){const n=()=>this.run(t,()=>{let g,a,x=null;return(g=this.loop(()=>this.matchMultiplicativeExpression_$0(t+1,i),!0))!==null&&this.match_(t+1,i)!==null&&(a=this.matchUnaryExpression(t+1,i))!==null&&(x=new ci(g,a)),x}),s=this.mark(),r=this.$scope$MultiplicativeExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$MultiplicativeExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=n(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$MultiplicativeExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchMultiplicativeExpression_$0(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchMultiplicativeExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchMultiplicativeExpression_$0_$0(t+1,i))!==null&&(r={kind:"MultiplicativeExpression_$0",e:n,op:s}),r})}matchMultiplicativeExpression_$0_$0(t,i){return this.choice([()=>this.matchMultiplicativeExpression_$0_$0_1(t+1,i),()=>this.matchMultiplicativeExpression_$0_$0_2(t+1,i),()=>this.matchMultiplicativeExpression_$0_$0_3(t+1,i)])}matchMultiplicativeExpression_$0_$0_1(t,i){return this.regexAccept(String.raw`(?:\*)`,t+1,i)}matchMultiplicativeExpression_$0_$0_2(t,i){return this.regexAccept(String.raw`(?:%)`,t+1,i)}matchMultiplicativeExpression_$0_$0_3(t,i){return this.regexAccept(String.raw`(?:/)`,t+1,i)}matchUnaryExpression(t,i){return this.choice([()=>this.matchUnaryExpression_1(t+1,i),()=>this.matchUnaryExpression_2(t+1,i)])}matchUnaryExpression_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.matchUnaryExpression_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.matchPrimaryExpression(t+1,i))!==null&&(r=new ui(n,s)),r})}matchUnaryExpression_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchPrimaryExpression(t+1,i))!==null&&(s=new li(n)),s})}matchUnaryExpression_$0(t,i){return this.choice([()=>this.matchUnaryExpression_$0_1(t+1,i),()=>this.matchUnaryExpression_$0_2(t+1,i),()=>this.matchUnaryExpression_$0_3(t+1,i)])}matchUnaryExpression_$0_1(t,i){return this.regexAccept(String.raw`(?:~)`,t+1,i)}matchUnaryExpression_$0_2(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchUnaryExpression_$0_3(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchPrimaryExpression(t,i){return this.choice([()=>this.matchPrimaryExpression_1(t+1,i),()=>this.matchPrimaryExpression_2(t+1,i),()=>this.matchPrimaryExpression_3(t+1,i)])}matchPrimaryExpression_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchnn(t+1,i))!==null&&(s=new oi(n)),s})}matchPrimaryExpression_2(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&(r=new ai(n,s)),r})}matchPrimaryExpression_3(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&(n=this.matchBitwiseOrExpression(t+1,i))!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&(s=new hi(n)),s})}matchReg8(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.regexAccept(String.raw`(?:[^a-z0-9_!\?#@\.])`,t+1,i))!==null&&(s={kind:"Reg8",reg:n}),s})}matchInstruction(t,i){return this.choice([()=>this.matchInstruction_1(t+1,i),()=>this.matchInstruction_2(t+1,i),()=>this.matchInstruction_3(t+1,i),()=>this.matchInstruction_4(t+1,i),()=>this.matchInstruction_5(t+1,i),()=>this.matchInstruction_6(t+1,i),()=>this.matchInstruction_7(t+1,i),()=>this.matchInstruction_8(t+1,i),()=>this.matchInstruction_9(t+1,i),()=>this.matchInstruction_10(t+1,i),()=>this.matchInstruction_11(t+1,i),()=>this.matchInstruction_12(t+1,i),()=>this.matchInstruction_13(t+1,i),()=>this.matchInstruction_14(t+1,i),()=>this.matchInstruction_15(t+1,i),()=>this.matchInstruction_16(t+1,i)])}matchInstruction_1(t,i){return this.matchLoad8Instruction(t+1,i)}matchInstruction_2(t,i){return this.matchLoad16Instruction(t+1,i)}matchInstruction_3(t,i){return this.matchExchangeInstruction(t+1,i)}matchInstruction_4(t,i){return this.matchBlockInstruction(t+1,i)}matchInstruction_5(t,i){return this.matchArithmeticLogic8Instruction(t+1,i)}matchInstruction_6(t,i){return this.matchIncrementDecrement8Instruction(t+1,i)}matchInstruction_7(t,i){return this.matchGeneralPurposeArithmeticInstruction(t+1,i)}matchInstruction_8(t,i){return this.matchArithmeticLogic16Instruction(t+1,i)}matchInstruction_9(t,i){return this.matchRotateShiftInstruction(t+1,i)}matchInstruction_10(t,i){return this.matchBitManipulationInstruction(t+1,i)}matchInstruction_11(t,i){return this.matchJumpInstruction(t+1,i)}matchInstruction_12(t,i){return this.matchCallInstruction(t+1,i)}matchInstruction_13(t,i){return this.matchReturnInstruction(t+1,i)}matchInstruction_14(t,i){return this.matchInputInstruction(t+1,i)}matchInstruction_15(t,i){return this.matchOutputInstruction(t+1,i)}matchInstruction_16(t,i){return this.matchCpuControlGroupInstruction(t+1,i)}matchLoad8Instruction(t,i){return this.choice([()=>this.matchLoad8Instruction_1(t+1,i),()=>this.matchLoad8Instruction_2(t+1,i),()=>this.matchLoad8Instruction_3(t+1,i),()=>this.matchLoad8Instruction_4(t+1,i),()=>this.matchLoad8Instruction_5(t+1,i),()=>this.matchLoad8Instruction_6(t+1,i),()=>this.matchLoad8Instruction_7(t+1,i),()=>this.matchLoad8Instruction_8(t+1,i),()=>this.matchLoad8Instruction_9(t+1,i),()=>this.matchLoad8Instruction_10(t+1,i),()=>this.matchLoad8Instruction_11(t+1,i),()=>this.matchLoad8Instruction_12(t+1,i),()=>this.matchLoad8Instruction_13(t+1,i),()=>this.matchLoad8Instruction_14(t+1,i),()=>this.matchLoad8Instruction_15(t+1,i),()=>this.matchLoad8Instruction_16(t+1,i),()=>this.matchLoad8Instruction_17(t+1,i),()=>this.matchLoad8Instruction_18(t+1,i),()=>this.matchLoad8Instruction_19(t+1,i),()=>this.matchLoad8Instruction_20(t+1,i),()=>this.matchLoad8Instruction_21(t+1,i)])}matchLoad8Instruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchReg8(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchReg8(t+1,i))!==null&&(r=new mi(n,s)),r})}matchLoad8Instruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new _i(n)),s})}matchLoad8Instruction_3(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchLoad8Instruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new gi(n,s,r,c)),u})}matchLoad8Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchLoad8Instruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Ii(n,s,r,c)),u})}matchLoad8Instruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new xi(n)),s})}matchLoad8Instruction_6(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new wi(n,s,r,c)),u})}matchLoad8Instruction_7(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Ai(n,s,r,c)),u})}matchLoad8Instruction_8(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Li(n,s)),r})}matchLoad8Instruction_9(t,i){return this.run(t,()=>{let n,s,r,c,u,o=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.mark())!==null&&(u=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(o=new fi(n,s,r,c,u)),o})}matchLoad8Instruction_10(t,i){return this.run(t,()=>{let n,s,r,c,u,o=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchLoad8Instruction_$5(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(c=this.mark())!==null&&(u=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(o=new Si(n,s,r,c,u)),o})}matchLoad8Instruction_11(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:bc)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ki),n})}matchLoad8Instruction_12(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ei),n})}matchLoad8Instruction_13(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ri(n,s)),r})}matchLoad8Instruction_14(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:bc)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new vi),n})}matchLoad8Instruction_15(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ci),n})}matchLoad8Instruction_16(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new pi(n,s)),r})}matchLoad8Instruction_17(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:i)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Bi),n})}matchLoad8Instruction_18(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:r)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Di),n})}matchLoad8Instruction_19(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:i)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new bi),n})}matchLoad8Instruction_20(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:r)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new yi),n})}matchLoad8Instruction_21(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchReg8(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Mi(n,s,r)),c})}matchLoad8Instruction_$0(t,i){return this.choice([()=>this.matchLoad8Instruction_$0_1(t+1,i),()=>this.matchLoad8Instruction_$0_2(t+1,i)])}matchLoad8Instruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$1(t,i){return this.choice([()=>this.matchLoad8Instruction_$1_1(t+1,i),()=>this.matchLoad8Instruction_$1_2(t+1,i)])}matchLoad8Instruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$2(t,i){return this.choice([()=>this.matchLoad8Instruction_$2_1(t+1,i),()=>this.matchLoad8Instruction_$2_2(t+1,i)])}matchLoad8Instruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$3(t,i){return this.choice([()=>this.matchLoad8Instruction_$3_1(t+1,i),()=>this.matchLoad8Instruction_$3_2(t+1,i)])}matchLoad8Instruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$4(t,i){return this.choice([()=>this.matchLoad8Instruction_$4_1(t+1,i),()=>this.matchLoad8Instruction_$4_2(t+1,i)])}matchLoad8Instruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad8Instruction_$5(t,i){return this.choice([()=>this.matchLoad8Instruction_$5_1(t+1,i),()=>this.matchLoad8Instruction_$5_2(t+1,i)])}matchLoad8Instruction_$5_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchLoad8Instruction_$5_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchLoad16Instruction(t,i){return this.choice([()=>this.matchLoad16Instruction_1(t+1,i),()=>this.matchLoad16Instruction_2(t+1,i),()=>this.matchLoad16Instruction_3(t+1,i),()=>this.matchLoad16Instruction_4(t+1,i),()=>this.matchLoad16Instruction_5(t+1,i),()=>this.matchLoad16Instruction_6(t+1,i),()=>this.matchLoad16Instruction_7(t+1,i),()=>this.matchLoad16Instruction_8(t+1,i),()=>this.matchLoad16Instruction_9(t+1,i),()=>this.matchLoad16Instruction_10(t+1,i),()=>this.matchLoad16Instruction_11(t+1,i),()=>this.matchLoad16Instruction_12(t+1,i),()=>this.matchLoad16Instruction_13(t+1,i),()=>this.matchLoad16Instruction_14(t+1,i),()=>this.matchLoad16Instruction_15(t+1,i),()=>this.matchLoad16Instruction_16(t+1,i),()=>this.matchLoad16Instruction_17(t+1,i),()=>this.matchLoad16Instruction_18(t+1,i),()=>this.matchLoad16Instruction_19(t+1,i),()=>this.matchLoad16Instruction_20(t+1,i)])}matchLoad16Instruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new qi(n,s)),r})}matchLoad16Instruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Oi(n,s)),r})}matchLoad16Instruction_3(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Pi(n,s)),r})}matchLoad16Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchdd(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ni(n,s,r)),c})}matchLoad16Instruction_5(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ji(n,s)),r})}matchLoad16Instruction_6(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Gi(n,s)),r})}matchLoad16Instruction_7(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new ji(n,s)),r})}matchLoad16Instruction_8(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(r=this.matchdd(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Fi(n,s,r)),c})}matchLoad16Instruction_9(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Vi(n,s)),r})}matchLoad16Instruction_10(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new zi(n,s)),r})}matchLoad16Instruction_11(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ui),n})}matchLoad16Instruction_12(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Xi),n})}matchLoad16Instruction_13(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Wi),n})}matchLoad16Instruction_14(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchdd(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Zi(n,s,r)),c})}matchLoad16Instruction_15(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:push)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchqq(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Hi(n)),s})}matchLoad16Instruction_16(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:push)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Qi),n})}matchLoad16Instruction_17(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:push)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Yi),n})}matchLoad16Instruction_18(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:pop)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchqq(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ti(n)),s})}matchLoad16Instruction_19(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:pop)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ki),n})}matchLoad16Instruction_20(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:pop)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new di),n})}matchExchangeInstruction(t,i){return this.choice([()=>this.matchExchangeInstruction_1(t+1,i),()=>this.matchExchangeInstruction_2(t+1,i),()=>this.matchExchangeInstruction_3(t+1,i),()=>this.matchExchangeInstruction_4(t+1,i),()=>this.matchExchangeInstruction_5(t+1,i),()=>this.matchExchangeInstruction_6(t+1,i)])}matchExchangeInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new $i),n})}matchExchangeInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:af)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:af\')`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new tn),n})}matchExchangeInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:exx)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new nn),n})}matchExchangeInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new en),n})}matchExchangeInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new sn),n})}matchExchangeInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ex)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new rn),n})}matchBlockInstruction(t,i){return this.choice([()=>this.matchBlockInstruction_1(t+1,i),()=>this.matchBlockInstruction_2(t+1,i),()=>this.matchBlockInstruction_3(t+1,i),()=>this.matchBlockInstruction_4(t+1,i),()=>this.matchBlockInstruction_5(t+1,i),()=>this.matchBlockInstruction_6(t+1,i),()=>this.matchBlockInstruction_7(t+1,i),()=>this.matchBlockInstruction_8(t+1,i)])}matchBlockInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ldir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new cn),n})}matchBlockInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ldi)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new un),n})}matchBlockInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:lddr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ln),n})}matchBlockInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ldd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new on),n})}matchBlockInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new an),n})}matchBlockInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpi)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new hn),n})}matchBlockInstruction_7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpdr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new mn),n})}matchBlockInstruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new _n),n})}matchArithmeticLogic8Instruction(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_2(t+1,i),()=>this.matchArithmeticLogic8Instruction_3(t+1,i),()=>this.matchArithmeticLogic8Instruction_4(t+1,i),()=>this.matchArithmeticLogic8Instruction_5(t+1,i),()=>this.matchArithmeticLogic8Instruction_6(t+1,i),()=>this.matchArithmeticLogic8Instruction_7(t+1,i),()=>this.matchArithmeticLogic8Instruction_8(t+1,i),()=>this.matchArithmeticLogic8Instruction_9(t+1,i),()=>this.matchArithmeticLogic8Instruction_10(t+1,i),()=>this.matchArithmeticLogic8Instruction_11(t+1,i),()=>this.matchArithmeticLogic8Instruction_12(t+1,i),()=>this.matchArithmeticLogic8Instruction_13(t+1,i),()=>this.matchArithmeticLogic8Instruction_14(t+1,i),()=>this.matchArithmeticLogic8Instruction_15(t+1,i),()=>this.matchArithmeticLogic8Instruction_16(t+1,i),()=>this.matchArithmeticLogic8Instruction_17(t+1,i),()=>this.matchArithmeticLogic8Instruction_18(t+1,i),()=>this.matchArithmeticLogic8Instruction_19(t+1,i),()=>this.matchArithmeticLogic8Instruction_20(t+1,i),()=>this.matchArithmeticLogic8Instruction_21(t+1,i),()=>this.matchArithmeticLogic8Instruction_22(t+1,i),()=>this.matchArithmeticLogic8Instruction_23(t+1,i),()=>this.matchArithmeticLogic8Instruction_24(t+1,i),()=>this.matchArithmeticLogic8Instruction_25(t+1,i),()=>this.matchArithmeticLogic8Instruction_26(t+1,i),()=>this.matchArithmeticLogic8Instruction_27(t+1,i),()=>this.matchArithmeticLogic8Instruction_28(t+1,i),()=>this.matchArithmeticLogic8Instruction_29(t+1,i),()=>this.matchArithmeticLogic8Instruction_30(t+1,i),()=>this.matchArithmeticLogic8Instruction_31(t+1,i),()=>this.matchArithmeticLogic8Instruction_32(t+1,i),()=>this.matchArithmeticLogic8Instruction_33(t+1,i),()=>this.matchArithmeticLogic8Instruction_34(t+1,i),()=>this.matchArithmeticLogic8Instruction_35(t+1,i),()=>this.matchArithmeticLogic8Instruction_36(t+1,i),()=>this.matchArithmeticLogic8Instruction_37(t+1,i),()=>this.matchArithmeticLogic8Instruction_38(t+1,i),()=>this.matchArithmeticLogic8Instruction_39(t+1,i),()=>this.matchArithmeticLogic8Instruction_40(t+1,i)])}matchArithmeticLogic8Instruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$0(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new gn(n)),s})}matchArithmeticLogic8Instruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$1(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new In(n,s)),r})}matchArithmeticLogic8Instruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$2(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new xn),n})}matchArithmeticLogic8Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$3(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new wn(n,s,r)),c})}matchArithmeticLogic8Instruction_5(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$5(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$6(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new An(n,s,r)),c})}matchArithmeticLogic8Instruction_6(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$7(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ln(n)),s})}matchArithmeticLogic8Instruction_7(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$8(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new fn(n,s)),r})}matchArithmeticLogic8Instruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$9(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Sn),n})}matchArithmeticLogic8Instruction_9(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$10(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$11(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new kn(n,s,r)),c})}matchArithmeticLogic8Instruction_10(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$12(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$13(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new En(n,s,r)),c})}matchArithmeticLogic8Instruction_11(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$14(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Rn(n)),s})}matchArithmeticLogic8Instruction_12(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$15(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new vn(n,s)),r})}matchArithmeticLogic8Instruction_13(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$16(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Cn),n})}matchArithmeticLogic8Instruction_14(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$17(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$18(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new pn(n,s,r)),c})}matchArithmeticLogic8Instruction_15(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sub)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$19(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$20(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Bn(n,s,r)),c})}matchArithmeticLogic8Instruction_16(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$21(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Dn(n)),s})}matchArithmeticLogic8Instruction_17(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$22(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new bn(n,s)),r})}matchArithmeticLogic8Instruction_18(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$23(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new yn),n})}matchArithmeticLogic8Instruction_19(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$24(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$25(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Mn(n,s,r)),c})}matchArithmeticLogic8Instruction_20(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$26(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$27(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new qn(n,s,r)),c})}matchArithmeticLogic8Instruction_21(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$28(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new On(n)),s})}matchArithmeticLogic8Instruction_22(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$29(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Pn(n,s)),r})}matchArithmeticLogic8Instruction_23(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$30(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Nn),n})}matchArithmeticLogic8Instruction_24(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$31(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$32(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Jn(n,s,r)),c})}matchArithmeticLogic8Instruction_25(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:and)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$33(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$34(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Gn(n,s,r)),c})}matchArithmeticLogic8Instruction_26(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$35(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new jn(n)),s})}matchArithmeticLogic8Instruction_27(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$36(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Fn(n,s)),r})}matchArithmeticLogic8Instruction_28(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$37(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Vn),n})}matchArithmeticLogic8Instruction_29(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$38(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$39(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new zn(n,s,r)),c})}matchArithmeticLogic8Instruction_30(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:or)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$40(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$41(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Un(n,s,r)),c})}matchArithmeticLogic8Instruction_31(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$42(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Xn(n)),s})}matchArithmeticLogic8Instruction_32(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$43(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Wn(n,s)),r})}matchArithmeticLogic8Instruction_33(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$44(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Zn),n})}matchArithmeticLogic8Instruction_34(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$45(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$46(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Hn(n,s,r)),c})}matchArithmeticLogic8Instruction_35(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:xor)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$47(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$48(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Qn(n,s,r)),c})}matchArithmeticLogic8Instruction_36(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$49(t+1,i)||!0)&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Yn(n)),s})}matchArithmeticLogic8Instruction_37(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$50(t+1,i)||!0)&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Tn(n,s)),r})}matchArithmeticLogic8Instruction_38(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$51(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Kn),n})}matchArithmeticLogic8Instruction_39(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$52(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$53(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new dn(n,s,r)),c})}matchArithmeticLogic8Instruction_40(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:cp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(this.matchArithmeticLogic8Instruction_$54(t+1,i)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchArithmeticLogic8Instruction_$55(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new $n(n,s,r)),c})}matchArithmeticLogic8Instruction_$0(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$0"}),n})}matchArithmeticLogic8Instruction_$1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$1"}),n})}matchArithmeticLogic8Instruction_$2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$2"}),n})}matchArithmeticLogic8Instruction_$3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$3"}),n})}matchArithmeticLogic8Instruction_$4(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$4_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$4_2(t+1,i)])}matchArithmeticLogic8Instruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$5"}),n})}matchArithmeticLogic8Instruction_$6(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$6_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$6_2(t+1,i)])}matchArithmeticLogic8Instruction_$6_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$6_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$7"}),n})}matchArithmeticLogic8Instruction_$8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$8"}),n})}matchArithmeticLogic8Instruction_$9(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$9"}),n})}matchArithmeticLogic8Instruction_$10(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$10"}),n})}matchArithmeticLogic8Instruction_$11(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$11_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$11_2(t+1,i)])}matchArithmeticLogic8Instruction_$11_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$11_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$12(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$12"}),n})}matchArithmeticLogic8Instruction_$13(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$13_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$13_2(t+1,i)])}matchArithmeticLogic8Instruction_$13_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$13_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$14(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$14"}),n})}matchArithmeticLogic8Instruction_$15(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$15"}),n})}matchArithmeticLogic8Instruction_$16(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$16"}),n})}matchArithmeticLogic8Instruction_$17(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$17"}),n})}matchArithmeticLogic8Instruction_$18(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$18_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$18_2(t+1,i)])}matchArithmeticLogic8Instruction_$18_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$18_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$19(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$19"}),n})}matchArithmeticLogic8Instruction_$20(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$20_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$20_2(t+1,i)])}matchArithmeticLogic8Instruction_$20_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$20_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$21(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$21"}),n})}matchArithmeticLogic8Instruction_$22(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$22"}),n})}matchArithmeticLogic8Instruction_$23(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$23"}),n})}matchArithmeticLogic8Instruction_$24(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$24"}),n})}matchArithmeticLogic8Instruction_$25(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$25_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$25_2(t+1,i)])}matchArithmeticLogic8Instruction_$25_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$25_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$26(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$26"}),n})}matchArithmeticLogic8Instruction_$27(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$27_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$27_2(t+1,i)])}matchArithmeticLogic8Instruction_$27_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$27_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$28(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$28"}),n})}matchArithmeticLogic8Instruction_$29(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$29"}),n})}matchArithmeticLogic8Instruction_$30(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$30"}),n})}matchArithmeticLogic8Instruction_$31(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$31"}),n})}matchArithmeticLogic8Instruction_$32(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$32_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$32_2(t+1,i)])}matchArithmeticLogic8Instruction_$32_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$32_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$33(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$33"}),n})}matchArithmeticLogic8Instruction_$34(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$34_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$34_2(t+1,i)])}matchArithmeticLogic8Instruction_$34_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$34_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$35(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$35"}),n})}matchArithmeticLogic8Instruction_$36(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$36"}),n})}matchArithmeticLogic8Instruction_$37(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$37"}),n})}matchArithmeticLogic8Instruction_$38(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$38"}),n})}matchArithmeticLogic8Instruction_$39(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$39_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$39_2(t+1,i)])}matchArithmeticLogic8Instruction_$39_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$39_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$40(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$40"}),n})}matchArithmeticLogic8Instruction_$41(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$41_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$41_2(t+1,i)])}matchArithmeticLogic8Instruction_$41_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$41_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$42(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$42"}),n})}matchArithmeticLogic8Instruction_$43(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$43"}),n})}matchArithmeticLogic8Instruction_$44(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$44"}),n})}matchArithmeticLogic8Instruction_$45(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$45"}),n})}matchArithmeticLogic8Instruction_$46(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$46_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$46_2(t+1,i)])}matchArithmeticLogic8Instruction_$46_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$46_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$47(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$47"}),n})}matchArithmeticLogic8Instruction_$48(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$48_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$48_2(t+1,i)])}matchArithmeticLogic8Instruction_$48_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$48_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$49(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$49"}),n})}matchArithmeticLogic8Instruction_$50(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$50"}),n})}matchArithmeticLogic8Instruction_$51(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$51"}),n})}matchArithmeticLogic8Instruction_$52(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$52"}),n})}matchArithmeticLogic8Instruction_$53(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$53_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$53_2(t+1,i)])}matchArithmeticLogic8Instruction_$53_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$53_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchArithmeticLogic8Instruction_$54(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n={kind:"ArithmeticLogic8Instruction_$54"}),n})}matchArithmeticLogic8Instruction_$55(t,i){return this.choice([()=>this.matchArithmeticLogic8Instruction_$55_1(t+1,i),()=>this.matchArithmeticLogic8Instruction_$55_2(t+1,i)])}matchArithmeticLogic8Instruction_$55_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchArithmeticLogic8Instruction_$55_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_2(t+1,i),()=>this.matchIncrementDecrement8Instruction_3(t+1,i),()=>this.matchIncrementDecrement8Instruction_4(t+1,i),()=>this.matchIncrementDecrement8Instruction_5(t+1,i),()=>this.matchIncrementDecrement8Instruction_6(t+1,i),()=>this.matchIncrementDecrement8Instruction_7(t+1,i),()=>this.matchIncrementDecrement8Instruction_8(t+1,i)])}matchIncrementDecrement8Instruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new te(n)),s})}matchIncrementDecrement8Instruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ie),n})}matchIncrementDecrement8Instruction_3(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ne(n,s,r)),c})}matchIncrementDecrement8Instruction_4(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ee(n,s,r)),c})}matchIncrementDecrement8Instruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new se(n)),s})}matchIncrementDecrement8Instruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new re),n})}matchIncrementDecrement8Instruction_7(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ce(n,s,r)),c})}matchIncrementDecrement8Instruction_8(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchIncrementDecrement8Instruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ue(n,s,r)),c})}matchIncrementDecrement8Instruction_$0(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$0_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$0_2(t+1,i)])}matchIncrementDecrement8Instruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction_$1(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$1_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$1_2(t+1,i)])}matchIncrementDecrement8Instruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction_$2(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$2_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$2_2(t+1,i)])}matchIncrementDecrement8Instruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchIncrementDecrement8Instruction_$3(t,i){return this.choice([()=>this.matchIncrementDecrement8Instruction_$3_1(t+1,i),()=>this.matchIncrementDecrement8Instruction_$3_2(t+1,i)])}matchIncrementDecrement8Instruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchIncrementDecrement8Instruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchGeneralPurposeArithmeticInstruction(t,i){return this.choice([()=>this.matchGeneralPurposeArithmeticInstruction_1(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_2(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_3(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_4(t+1,i),()=>this.matchGeneralPurposeArithmeticInstruction_5(t+1,i)])}matchGeneralPurposeArithmeticInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:daa)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new le),n})}matchGeneralPurposeArithmeticInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:cpl)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new oe),n})}matchGeneralPurposeArithmeticInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:neg)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ae),n})}matchGeneralPurposeArithmeticInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ccf)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new he),n})}matchGeneralPurposeArithmeticInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:scf)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new me),n})}matchCpuControlGroupInstruction(t,i){return this.choice([()=>this.matchCpuControlGroupInstruction_1(t+1,i),()=>this.matchCpuControlGroupInstruction_2(t+1,i),()=>this.matchCpuControlGroupInstruction_3(t+1,i),()=>this.matchCpuControlGroupInstruction_4(t+1,i),()=>this.matchCpuControlGroupInstruction_5(t+1,i)])}matchCpuControlGroupInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:nop)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new _e),n})}matchCpuControlGroupInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:halt)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ge),n})}matchCpuControlGroupInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:di)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ie),n})}matchCpuControlGroupInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ei)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new xe),n})}matchCpuControlGroupInstruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:im)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[012])`,t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new we(n)),s})}matchArithmeticLogic16Instruction(t,i){return this.choice([()=>this.matchArithmeticLogic16Instruction_1(t+1,i),()=>this.matchArithmeticLogic16Instruction_2(t+1,i),()=>this.matchArithmeticLogic16Instruction_3(t+1,i),()=>this.matchArithmeticLogic16Instruction_4(t+1,i),()=>this.matchArithmeticLogic16Instruction_5(t+1,i),()=>this.matchArithmeticLogic16Instruction_6(t+1,i),()=>this.matchArithmeticLogic16Instruction_7(t+1,i),()=>this.matchArithmeticLogic16Instruction_8(t+1,i),()=>this.matchArithmeticLogic16Instruction_9(t+1,i),()=>this.matchArithmeticLogic16Instruction_10(t+1,i),()=>this.matchArithmeticLogic16Instruction_11(t+1,i)])}matchArithmeticLogic16Instruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ae(n)),s})}matchArithmeticLogic16Instruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:adc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Le(n)),s})}matchArithmeticLogic16Instruction_3(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new fe(n)),s})}matchArithmeticLogic16Instruction_4(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchpp(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Se(n)),s})}matchArithmeticLogic16Instruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchrr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new ke(n)),s})}matchArithmeticLogic16Instruction_6(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ee(n)),s})}matchArithmeticLogic16Instruction_7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Re),n})}matchArithmeticLogic16Instruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ve),n})}matchArithmeticLogic16Instruction_9(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchss(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ce(n)),s})}matchArithmeticLogic16Instruction_10(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new pe),n})}matchArithmeticLogic16Instruction_11(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:dec)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Be),n})}matchRotateShiftInstruction(t,i){return this.choice([()=>this.matchRotateShiftInstruction_1(t+1,i),()=>this.matchRotateShiftInstruction_2(t+1,i),()=>this.matchRotateShiftInstruction_3(t+1,i),()=>this.matchRotateShiftInstruction_4(t+1,i),()=>this.matchRotateShiftInstruction_5(t+1,i),()=>this.matchRotateShiftInstruction_6(t+1,i),()=>this.matchRotateShiftInstruction_7(t+1,i),()=>this.matchRotateShiftInstruction_8(t+1,i),()=>this.matchRotateShiftInstruction_9(t+1,i),()=>this.matchRotateShiftInstruction_10(t+1,i),()=>this.matchRotateShiftInstruction_11(t+1,i),()=>this.matchRotateShiftInstruction_12(t+1,i),()=>this.matchRotateShiftInstruction_13(t+1,i),()=>this.matchRotateShiftInstruction_14(t+1,i),()=>this.matchRotateShiftInstruction_15(t+1,i),()=>this.matchRotateShiftInstruction_16(t+1,i),()=>this.matchRotateShiftInstruction_17(t+1,i),()=>this.matchRotateShiftInstruction_18(t+1,i),()=>this.matchRotateShiftInstruction_19(t+1,i),()=>this.matchRotateShiftInstruction_20(t+1,i),()=>this.matchRotateShiftInstruction_21(t+1,i),()=>this.matchRotateShiftInstruction_22(t+1,i),()=>this.matchRotateShiftInstruction_23(t+1,i),()=>this.matchRotateShiftInstruction_24(t+1,i),()=>this.matchRotateShiftInstruction_25(t+1,i),()=>this.matchRotateShiftInstruction_26(t+1,i),()=>this.matchRotateShiftInstruction_27(t+1,i),()=>this.matchRotateShiftInstruction_28(t+1,i),()=>this.matchRotateShiftInstruction_29(t+1,i),()=>this.matchRotateShiftInstruction_30(t+1,i),()=>this.matchRotateShiftInstruction_31(t+1,i),()=>this.matchRotateShiftInstruction_32(t+1,i),()=>this.matchRotateShiftInstruction_33(t+1,i),()=>this.matchRotateShiftInstruction_34(t+1,i)])}matchRotateShiftInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rlca)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new De),n})}matchRotateShiftInstruction_2(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rla)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new be),n})}matchRotateShiftInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rrca)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ye),n})}matchRotateShiftInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rra)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Me),n})}matchRotateShiftInstruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new qe(n)),s})}matchRotateShiftInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Oe),n})}matchRotateShiftInstruction_7(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Pe(n,s,r)),c})}matchRotateShiftInstruction_8(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ne(n,s,r)),c})}matchRotateShiftInstruction_9(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Je(n)),s})}matchRotateShiftInstruction_10(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ge),n})}matchRotateShiftInstruction_11(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new je(n,s,r)),c})}matchRotateShiftInstruction_12(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Fe(n,s,r)),c})}matchRotateShiftInstruction_13(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ve(n)),s})}matchRotateShiftInstruction_14(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ze),n})}matchRotateShiftInstruction_15(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ue(n,s,r)),c})}matchRotateShiftInstruction_16(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$5(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Xe(n,s,r)),c})}matchRotateShiftInstruction_17(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new We(n)),s})}matchRotateShiftInstruction_18(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ze),n})}matchRotateShiftInstruction_19(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$6(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new He(n,s,r)),c})}matchRotateShiftInstruction_20(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:rr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$7(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Qe(n,s,r)),c})}matchRotateShiftInstruction_21(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Ye(n)),s})}matchRotateShiftInstruction_22(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Te),n})}matchRotateShiftInstruction_23(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$8(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ke(n,s,r)),c})}matchRotateShiftInstruction_24(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sla)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$9(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new de(n,s,r)),c})}matchRotateShiftInstruction_25(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new $e(n)),s})}matchRotateShiftInstruction_26(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ts),n})}matchRotateShiftInstruction_27(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$10(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new is(n,s,r)),c})}matchRotateShiftInstruction_28(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:sra)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$11(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ns(n,s,r)),c})}matchRotateShiftInstruction_29(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new es(n)),s})}matchRotateShiftInstruction_30(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ss),n})}matchRotateShiftInstruction_31(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$12(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new rs(n,s,r)),c})}matchRotateShiftInstruction_32(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:srl)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchRotateShiftInstruction_$13(t+1,i))!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new cs(n,s,r)),c})}matchRotateShiftInstruction_33(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rld)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new us),n})}matchRotateShiftInstruction_34(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:rrd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ls),n})}matchRotateShiftInstruction_$0(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$0_1(t+1,i),()=>this.matchRotateShiftInstruction_$0_2(t+1,i)])}matchRotateShiftInstruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$1(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$1_1(t+1,i),()=>this.matchRotateShiftInstruction_$1_2(t+1,i)])}matchRotateShiftInstruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$2(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$2_1(t+1,i),()=>this.matchRotateShiftInstruction_$2_2(t+1,i)])}matchRotateShiftInstruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$3(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$3_1(t+1,i),()=>this.matchRotateShiftInstruction_$3_2(t+1,i)])}matchRotateShiftInstruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$4(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$4_1(t+1,i),()=>this.matchRotateShiftInstruction_$4_2(t+1,i)])}matchRotateShiftInstruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$5(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$5_1(t+1,i),()=>this.matchRotateShiftInstruction_$5_2(t+1,i)])}matchRotateShiftInstruction_$5_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$5_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$6(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$6_1(t+1,i),()=>this.matchRotateShiftInstruction_$6_2(t+1,i)])}matchRotateShiftInstruction_$6_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$6_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$7(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$7_1(t+1,i),()=>this.matchRotateShiftInstruction_$7_2(t+1,i)])}matchRotateShiftInstruction_$7_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$7_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$8(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$8_1(t+1,i),()=>this.matchRotateShiftInstruction_$8_2(t+1,i)])}matchRotateShiftInstruction_$8_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$8_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$9(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$9_1(t+1,i),()=>this.matchRotateShiftInstruction_$9_2(t+1,i)])}matchRotateShiftInstruction_$9_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$9_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$10(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$10_1(t+1,i),()=>this.matchRotateShiftInstruction_$10_2(t+1,i)])}matchRotateShiftInstruction_$10_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$10_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$11(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$11_1(t+1,i),()=>this.matchRotateShiftInstruction_$11_2(t+1,i)])}matchRotateShiftInstruction_$11_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$11_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$12(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$12_1(t+1,i),()=>this.matchRotateShiftInstruction_$12_2(t+1,i)])}matchRotateShiftInstruction_$12_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$12_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchRotateShiftInstruction_$13(t,i){return this.choice([()=>this.matchRotateShiftInstruction_$13_1(t+1,i),()=>this.matchRotateShiftInstruction_$13_2(t+1,i)])}matchRotateShiftInstruction_$13_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchRotateShiftInstruction_$13_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction(t,i){return this.choice([()=>this.matchBitManipulationInstruction_1(t+1,i),()=>this.matchBitManipulationInstruction_2(t+1,i),()=>this.matchBitManipulationInstruction_3(t+1,i),()=>this.matchBitManipulationInstruction_4(t+1,i),()=>this.matchBitManipulationInstruction_5(t+1,i),()=>this.matchBitManipulationInstruction_6(t+1,i),()=>this.matchBitManipulationInstruction_7(t+1,i),()=>this.matchBitManipulationInstruction_8(t+1,i),()=>this.matchBitManipulationInstruction_9(t+1,i),()=>this.matchBitManipulationInstruction_10(t+1,i),()=>this.matchBitManipulationInstruction_11(t+1,i),()=>this.matchBitManipulationInstruction_12(t+1,i)])}matchBitManipulationInstruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new os(n,s)),r})}matchBitManipulationInstruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new as(n)),s})}matchBitManipulationInstruction_3(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$0(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new hs(n,s,r,c)),u})}matchBitManipulationInstruction_4(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:bit)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$1(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new ms(n,s,r,c)),u})}matchBitManipulationInstruction_5(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new _s(n,s)),r})}matchBitManipulationInstruction_6(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new gs(n)),s})}matchBitManipulationInstruction_7(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$2(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Is(n,s,r,c)),u})}matchBitManipulationInstruction_8(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:set)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$3(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new xs(n,s,r,c)),u})}matchBitManipulationInstruction_9(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new ws(n,s)),r})}matchBitManipulationInstruction_10(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new As(n)),s})}matchBitManipulationInstruction_11(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$4(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new Ls(n,s,r,c)),u})}matchBitManipulationInstruction_12(t,i){return this.run(t,()=>{let n,s,r,c,u=null;return this.regexAccept(String.raw`(?:res)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchb(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.matchBitManipulationInstruction_$5(t+1,i))!==null&&this.match_(t+1,i)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(u=new fs(n,s,r,c)),u})}matchBitManipulationInstruction_$0(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$0_1(t+1,i),()=>this.matchBitManipulationInstruction_$0_2(t+1,i)])}matchBitManipulationInstruction_$0_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$0_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$1(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$1_1(t+1,i),()=>this.matchBitManipulationInstruction_$1_2(t+1,i)])}matchBitManipulationInstruction_$1_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$1_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$2(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$2_1(t+1,i),()=>this.matchBitManipulationInstruction_$2_2(t+1,i)])}matchBitManipulationInstruction_$2_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$2_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$3(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$3_1(t+1,i),()=>this.matchBitManipulationInstruction_$3_2(t+1,i)])}matchBitManipulationInstruction_$3_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$3_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$4(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$4_1(t+1,i),()=>this.matchBitManipulationInstruction_$4_2(t+1,i)])}matchBitManipulationInstruction_$4_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$4_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchBitManipulationInstruction_$5(t,i){return this.choice([()=>this.matchBitManipulationInstruction_$5_1(t+1,i),()=>this.matchBitManipulationInstruction_$5_2(t+1,i)])}matchBitManipulationInstruction_$5_1(t,i){return this.regexAccept(String.raw`(?:\+)`,t+1,i)}matchBitManipulationInstruction_$5_2(t,i){return this.regexAccept(String.raw`(?:\-)`,t+1,i)}matchOffset(t,i){return this.choice([()=>this.matchOffset_1(t+1,i),()=>this.matchOffset_2(t+1,i)])}matchOffset_1(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&(r=new Ss(n,s)),r})}matchOffset_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchExpression(t+1,i))!==null&&(s=new ks(n)),s})}matchJumpInstruction(t,i){return this.choice([()=>this.matchJumpInstruction_1(t+1,i),()=>this.matchJumpInstruction_2(t+1,i),()=>this.matchJumpInstruction_3(t+1,i),()=>this.matchJumpInstruction_4(t+1,i),()=>this.matchJumpInstruction_5(t+1,i),()=>this.matchJumpInstruction_6(t+1,i),()=>this.matchJumpInstruction_7(t+1,i),()=>this.matchJumpInstruction_8(t+1,i),()=>this.matchJumpInstruction_9(t+1,i),()=>this.matchJumpInstruction_10(t+1,i),()=>this.matchJumpInstruction_11(t+1,i)])}matchJumpInstruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Es(n,s)),r})}matchJumpInstruction_2(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchcc(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Rs(n,s,r)),c})}matchJumpInstruction_3(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new vs(n,s)),r})}matchJumpInstruction_4(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Cs(n,s)),r})}matchJumpInstruction_5(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchjj(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchLabel(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new ps(n,s,r)),c})}matchJumpInstruction_6(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:jr)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchjj(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Bs(n,s,r)),c})}matchJumpInstruction_7(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ds),n})}matchJumpInstruction_8(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new bs),n})}matchJumpInstruction_9(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:jp)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ys),n})}matchJumpInstruction_10(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:djnz)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchLabel(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ms(n,s)),r})}matchJumpInstruction_11(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:djnz)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new qs(n,s)),r})}matchCallInstruction(t,i){return this.choice([()=>this.matchCallInstruction_1(t+1,i),()=>this.matchCallInstruction_2(t+1,i)])}matchCallInstruction_1(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:call)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Os(n,s)),r})}matchCallInstruction_2(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.regexAccept(String.raw`(?:call)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchcc(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new Ps(n,s,r)),c})}matchReturnInstruction(t,i){return this.choice([()=>this.matchReturnInstruction_1(t+1,i),()=>this.matchReturnInstruction_2(t+1,i),()=>this.matchReturnInstruction_3(t+1,i),()=>this.matchReturnInstruction_4(t+1,i),()=>this.matchReturnInstruction_5(t+1,i)])}matchReturnInstruction_1(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ret)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ns),n})}matchReturnInstruction_2(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:ret)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchcc(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Js(n)),s})}matchReturnInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:reti)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Gs),n})}matchReturnInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:retn)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new js),n})}matchReturnInstruction_5(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:rst)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchp(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Fs(n)),s})}matchInputInstruction(t,i){return this.choice([()=>this.matchInputInstruction_1(t+1,i),()=>this.matchInputInstruction_2(t+1,i),()=>this.matchInputInstruction_3(t+1,i),()=>this.matchInputInstruction_4(t+1,i),()=>this.matchInputInstruction_5(t+1,i),()=>this.matchInputInstruction_6(t+1,i)])}matchInputInstruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:in)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:c)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Vs(n)),s})}matchInputInstruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:in)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new zs(n,s)),r})}matchInputInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ini)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Us),n})}matchInputInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:inir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Xs),n})}matchInputInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:ind)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ws),n})}matchInputInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:indr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Zs),n})}matchOutputInstruction(t,i){return this.choice([()=>this.matchOutputInstruction_1(t+1,i),()=>this.matchOutputInstruction_2(t+1,i),()=>this.matchOutputInstruction_3(t+1,i),()=>this.matchOutputInstruction_4(t+1,i),()=>this.matchOutputInstruction_5(t+1,i),()=>this.matchOutputInstruction_6(t+1,i)])}matchOutputInstruction_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:out)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.regexAccept(String.raw`(?:c)`,t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchr(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new Hs(n)),s})}matchOutputInstruction_2(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:out)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Qs(n,s)),r})}matchOutputInstruction_3(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:outi)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ys),n})}matchOutputInstruction_4(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:otir)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ts),n})}matchOutputInstruction_5(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:outd)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new Ks),n})}matchOutputInstruction_6(t,i){return this.run(t,()=>{let n=null;return this.regexAccept(String.raw`(?:otdr)`,t+1,i)!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(n=new ds),n})}matchByteDirective(t,i){return this.choice([()=>this.matchByteDirective_1(t+1,i),()=>this.matchByteDirective_2(t+1,i),()=>this.matchByteDirective_3(t+1,i),()=>this.matchByteDirective_4(t+1,i),()=>this.matchByteDirective_5(t+1,i)])}matchByteDirective_1(t,i){return this.regexAccept(String.raw`(?:db)`,t+1,i)}matchByteDirective_2(t,i){return this.regexAccept(String.raw`(?:dm)`,t+1,i)}matchByteDirective_3(t,i){return this.regexAccept(String.raw`(?:byte)`,t+1,i)}matchByteDirective_4(t,i){return this.regexAccept(String.raw`(?:defb)`,t+1,i)}matchByteDirective_5(t,i){return this.regexAccept(String.raw`(?:defm)`,t+1,i)}matchWordDirective(t,i){return this.choice([()=>this.matchWordDirective_1(t+1,i),()=>this.matchWordDirective_2(t+1,i),()=>this.matchWordDirective_3(t+1,i)])}matchWordDirective_1(t,i){return this.regexAccept(String.raw`(?:dw)`,t+1,i)}matchWordDirective_2(t,i){return this.regexAccept(String.raw`(?:word)`,t+1,i)}matchWordDirective_3(t,i){return this.regexAccept(String.raw`(?:defw)`,t+1,i)}matchBlockDirective(t,i){return this.choice([()=>this.matchBlockDirective_1(t+1,i),()=>this.matchBlockDirective_2(t+1,i),()=>this.matchBlockDirective_3(t+1,i)])}matchBlockDirective_1(t,i){return this.regexAccept(String.raw`(?:block)`,t+1,i)}matchBlockDirective_2(t,i){return this.regexAccept(String.raw`(?:defs)`,t+1,i)}matchBlockDirective_3(t,i){return this.regexAccept(String.raw`(?:ds)`,t+1,i)}matchByteValue(t,i){return this.choice([()=>this.matchByteValue_1(t+1,i),()=>this.matchByteValue_2(t+1,i),()=>this.matchByteValue_3(t+1,i),()=>this.matchByteValue_4(t+1,i)])}matchByteValue_1(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchChar(t+1,i))!==null&&(s=new $s(n)),s})}matchByteValue_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchStr(t+1,i))!==null&&(s=new tr(n)),s})}matchByteValue_3(t,i){return this.run(t,()=>{let n,s=null;return(n=this.matchZX81Str(t+1,i))!==null&&(s=new ir(n)),s})}matchByteValue_4(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&(r=new nr(n,s)),r})}matchWordValue(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&(r=new er(n,s)),r})}matchDataDirective(t,i){return this.choice([()=>this.matchDataDirective_1(t+1,i),()=>this.matchDataDirective_2(t+1,i),()=>this.matchDataDirective_3(t+1,i)])}matchDataDirective_1(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.matchByteDirective(t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchByteValue(t+1,i))!==null&&(r=this.loop(()=>this.matchDataDirective_$0(t+1,i),!0))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new sr(n,s,r)),c})}matchDataDirective_2(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.matchWordDirective(t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchWordValue(t+1,i))!==null&&(r=this.loop(()=>this.matchDataDirective_$1(t+1,i),!0))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new rr(n,s,r)),c})}matchDataDirective_3(t,i){return this.run(t,()=>{let n,s,r,c=null;return this.matchBlockDirective(t+1,i)!==null&&this.match__(t+1,i)!==null&&this.mark()!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&((r=this.matchDataDirective_$2(t+1,i))||!0)&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(c=new cr(n,s,r)),c})}matchDataDirective_$0(t,i){return this.run(t,()=>{let n,s=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchByteValue(t+1,i))!==null&&(s={kind:"DataDirective_$0",inner:n}),s})}matchDataDirective_$1(t,i){return this.run(t,()=>{let n,s=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.matchWordValue(t+1,i))!==null&&(s={kind:"DataDirective_$1",inner:n}),s})}matchDataDirective_$2(t,i){return this.run(t,()=>{let n,s,r=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&(n=this.mark())!==null&&(s=this.matchExpression(t+1,i))!==null&&(r={kind:"DataDirective_$2",pos1:n,b:s}),r})}matchEscapeSequence(t,i){return this.choice([()=>this.matchEscapeSequence_1(t+1,i),()=>this.matchEscapeSequence_2(t+1,i),()=>this.matchEscapeSequence_3(t+1,i)])}matchEscapeSequence_1(t,i){return this.matchSimpleEscapeSequence(t+1,i)}matchEscapeSequence_2(t,i){return this.matchOctalEscapeSequence(t+1,i)}matchEscapeSequence_3(t,i){return this.matchHexadecimalEscapeSequence(t+1,i)}matchSimpleEscapeSequence(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\\)`,t+1,i)!==null&&(n=this.matchSimpleEscapeSequence_$0(t+1,i))!==null&&(s=new ur(n)),s})}matchSimpleEscapeSequence_$0(t,i){return this.choice([()=>this.matchSimpleEscapeSequence_$0_1(t+1,i),()=>this.matchSimpleEscapeSequence_$0_2(t+1,i),()=>this.matchSimpleEscapeSequence_$0_3(t+1,i),()=>this.matchSimpleEscapeSequence_$0_4(t+1,i),()=>this.matchSimpleEscapeSequence_$0_5(t+1,i),()=>this.matchSimpleEscapeSequence_$0_6(t+1,i),()=>this.matchSimpleEscapeSequence_$0_7(t+1,i),()=>this.matchSimpleEscapeSequence_$0_8(t+1,i),()=>this.matchSimpleEscapeSequence_$0_9(t+1,i),()=>this.matchSimpleEscapeSequence_$0_10(t+1,i),()=>this.matchSimpleEscapeSequence_$0_11(t+1,i),()=>this.matchSimpleEscapeSequence_$0_12(t+1,i)])}matchSimpleEscapeSequence_$0_1(t,i){return this.regexAccept(String.raw`(?:\')`,t+1,i)}matchSimpleEscapeSequence_$0_2(t,i){return this.regexAccept(String.raw`(?:")`,t+1,i)}matchSimpleEscapeSequence_$0_3(t,i){return this.regexAccept(String.raw`(?:\?)`,t+1,i)}matchSimpleEscapeSequence_$0_4(t,i){return this.regexAccept(String.raw`(?:\\)`,t+1,i)}matchSimpleEscapeSequence_$0_5(t,i){return this.regexAccept(String.raw`(?:a)`,t+1,i)}matchSimpleEscapeSequence_$0_6(t,i){return this.regexAccept(String.raw`(?:b)`,t+1,i)}matchSimpleEscapeSequence_$0_7(t,i){return this.regexAccept(String.raw`(?:e)`,t+1,i)}matchSimpleEscapeSequence_$0_8(t,i){return this.regexAccept(String.raw`(?:f)`,t+1,i)}matchSimpleEscapeSequence_$0_9(t,i){return this.regexAccept(String.raw`(?:n)`,t+1,i)}matchSimpleEscapeSequence_$0_10(t,i){return this.regexAccept(String.raw`(?:t)`,t+1,i)}matchSimpleEscapeSequence_$0_11(t,i){return this.regexAccept(String.raw`(?:r)`,t+1,i)}matchSimpleEscapeSequence_$0_12(t,i){return this.regexAccept(String.raw`(?:v)`,t+1,i)}matchOctalEscapeSequence(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:\\)`,t+1,i)!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[0-7]{1,3})`,t+1,i))!==null&&(r=new lr(n,s)),r})}matchHexadecimalEscapeSequence(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:\\x)`,t+1,i)!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[0-9a-f]{1,2})`,t+1,i))!==null&&(r=new or(n,s)),r})}matchSimpleChar(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[^\'\\\n])`,t+1,i))!==null&&(r=new ar(n,s)),r})}matchStringChar(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[^\"\\\n])`,t+1,i))!==null&&(r=new hr(n,s)),r})}matchChar(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\')`,t+1,i)!==null&&(n=this.matchChar_$0(t+1,i))!==null&&this.regexAccept(String.raw`(?:\')`,t+1,i)!==null&&(s=new mr(n)),s})}matchChar_$0(t,i){return this.choice([()=>this.matchChar_$0_1(t+1,i),()=>this.matchChar_$0_2(t+1,i)])}matchChar_$0_1(t,i){return this.matchSimpleChar(t+1,i)}matchChar_$0_2(t,i){return this.matchEscapeSequence(t+1,i)}matchStr(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\")`,t+1,i)!==null&&(n=this.loop(()=>this.matchStr_$0(t+1,i),!0))!==null&&this.regexAccept(String.raw`(?:\")`,t+1,i)!==null&&(s=new _r(n)),s})}matchStr_$0(t,i){return this.choice([()=>this.matchStr_$0_1(t+1,i),()=>this.matchStr_$0_2(t+1,i)])}matchStr_$0_1(t,i){return this.matchStringChar(t+1,i)}matchStr_$0_2(t,i){return this.matchEscapeSequence(t+1,i)}matchZX81Str(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:zx81\")`,t+1,i)!==null&&(n=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[ £\$:\?()><=+\-\*;/,.0-9A-Za-z]*)`,t+1,i))!==null&&this.regexAccept(String.raw`(?:\")`,t+1,i)!==null&&(r=new gr(n,s)),r})}matchComment(t,i){return this.regexAccept(String.raw`(?:(//|;)[^\r\n]*)`,t+1,i)}matchOriginDirective(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\.?org)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchnn(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s={kind:"OriginDirective",address:n}),s})}matchFilename(t,i){return this.choice([()=>this.matchFilename_1(t+1,i),()=>this.matchFilename_2(t+1,i)])}matchFilename_1(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:")`,t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[^"\\:\*\?<>\|%#\$,]+)`,t+1,i))!==null&&this.regexAccept(String.raw`(?:")`,t+1,i)!==null&&(s={kind:"Filename_1",raw:n}),s})}matchFilename_2(t,i){return this.run(t,()=>{let n,s=null;return(n=this.regexAccept(String.raw`(?:[^ \t\r\n"\\:\*\?<>\|%#\$,]+)`,t+1,i))!==null&&(s={kind:"Filename_2",raw:n}),s})}matchIncludeDirective(t,i){return this.run(t,()=>{let n,s,r=null;return(n=this.mark())!==null&&this.regexAccept(String.raw`(?:\.?include)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(s=this.matchFilename(t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new Ir(n,s)),r})}matchOutputDirective(t,i){return this.run(t,()=>{let n,s,r=null;return this.regexAccept(String.raw`(?:\.?output)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchFilename(t+1,i))!==null&&((s=this.matchOutputDirective_$0(t+1,i))||!0)&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(r=new xr(n,s)),r})}matchOutputDirective_$0(t,i){return this.run(t,()=>{let n,s=null;return this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,i)!==null&&this.match_(t+1,i)!==null&&this.regexAccept(String.raw`(?:sld)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.matchFilename(t+1,i))!==null&&(s={kind:"OutputDirective_$0",name:n}),s})}matchDeviceDirective(t,i){return this.run(t,()=>{let n,s=null;return this.regexAccept(String.raw`(?:\.?device)`,t+1,i)!==null&&this.match__(t+1,i)!==null&&(n=this.regexAccept(String.raw`(?:[a-zA-Z][0-9a-zA-Z]*)`,t+1,i))!==null&&this.noConsume(()=>this.match_eos(t+1,i))!==null&&(s=new wr(n)),s})}test(){const t=this.mark(),n=this.matchstart(0)!==null;return this.reset(t),n}parse(){const t=this.mark(),i=this.matchstart(0);if(i)return{ast:i,errs:[]};this.reset(t);const n=new Lr;this.clearMemos(),this.matchstart(0,n);const s=n.getErr();return{ast:i,errs:s!==null?[s]:[]}}mark(){return this.pos}loop(t,i=!1){const n=this.mark(),s=[];for(;;){const r=t();if(r===null)break;s.push(r)}return i||s.length>0?s:(this.reset(n),null)}run(t,i){const n=this.mark(),s=i();return s!==null?s:(this.reset(n),null)}choice(t){for(const i of t){const n=i();if(n!==null)return n}return null}regexAccept(t,i,n){return this.run(i,()=>{const s=new RegExp(t,"yi"),r=this.mark();s.lastIndex=r.overallPos;const c=this.tryConsume(s);return n&&n.record(r,c,{kind:"RegexMatch",literal:t.substring(3,t.length-1),negated:this.negating}),c})}tryConsume(t){const i=t.exec(this.input);if(i){let n=0,s=-1;for(let r=0;r<i[0].length;++r)i[0][r]===`
|
|
9
|
-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});function _(e,t=0){switch(e.toLowerCase()){case"b":return 0<<t;case"c":return 1<<t;case"d":return 2<<t;case"e":return 3<<t;case"h":return 4<<t;case"l":return 5<<t;case"a":return 7<<t;default:return console.log(`Invalid register name: ${e}`),0}}function v(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"hl":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function O(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"hl":return 2<<t;case"af":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function k(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"hl":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function Z(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"ix":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function Y(e,t=0){switch(e.toLowerCase()){case"bc":return 0<<t;case"de":return 1<<t;case"iy":return 2<<t;case"sp":return 3<<t;default:return console.log(`Invalid register name: ${e}`),0}}function C(e,t=0){switch(e.toLowerCase()){case"nz":return 0<<t;case"z":return 1<<t;case"nc":return 2<<t;case"c":return 3<<t;case"po":return 4<<t;case"pe":return 5<<t;case"p":return 6<<t;case"s":case"m":return 7<<t;default:return console.log(`Invalid jump condition: ${e}`),0}}function R(e=""){switch(e.toLowerCase()){case"":return 24;case"nz":return 32;case"z":return 40;case"nc":return 48;case"c":return 56;default:return console.log(`Invalid relative jump condition: ${e}`),0}}function T(e,t=0){return(e<0||e>56||e%8!==0)&&console.log(`Invalid argument for RST: ${e}`),e/8<<t}function K(e){switch(e){case"0":return 70;case"1":return 86;case"2":return 94;default:return console.log(`Invalid interrupt mode: ${e}`),0}}const L=new Map;function d(){L.clear()}function $(e,t,n){const i=L.get(t);if(!i){L.set(t,{expression:null,value:n??0,known:n!=null,used:!1});return}if(i.known&&i.value!=n)throw new m(h.fileName,e,`The value of the label '${t}' is redefined (old value: ${i.value}, new value: ${n})`);i.value=n??0,i.known=n!=null}function tt(e,t,n){const i=L.get(t);if(!i){L.set(t,{expression:n,value:0,known:!1,used:!1});return}i.known||(i.expression=n)}function E(e,t=!0){const n=L.get(e);if(!n)return L.set(e,{expression:null,value:0,known:!1,used:!0}),null;if(t&&(n.used=!0),n.known)return n.value;if(n.expression==null)return null;const i=n.expression.eval();return i==null?null:(n.value=i,n.known=!0,i)}function nt(e){return L.get(e)?.used}function it(){return[...L.entries()].filter(([,e])=>!e.known&&e.value==null).map(([e])=>e)}class et{constructor(t,n,i,s){this.pos0=t,this.length=n,this.pos1=i,this.value=s,this.filename=h.fileName}get size(){const t=this.length.eval();if(t==null)throw new m(this.filename,this.pos0,"Unknown size for the data block");if(t<0)throw new m(this.filename,this.pos0,`Invalid size size for the data block: ${t}`);return t}getValue(){if(this.value==null||this.pos1==null)return 0;let t=this.value.eval();if(t==null)throw new m(this.filename,this.pos1,"Not able to determine a value");if(t<-256||t>255)throw new m(this.filename,this.pos1,`Invalid 8-bits value: ${t}`);return t<0&&(t=256+t),t}generate(){const t=new Array(this.size);return t.fill(this.getValue()),t}}class st{constructor(t,n){this.pos=t,this.expression=n,this.filename=h.fileName}get size(){return 2}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the 16-bits value");if(t<-65536||t>65535)throw new m(this.filename,this.pos,`Invalid 16-bits value: ${t}`);return t<0&&(t=65536+t),[t&255,(t&65280)>>8]}}class P{constructor(t,n){this.pos=t,this.expression=n,this.filename=h.fileName}get size(){return 1}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the 8-bits value");if(t<-256||t>255)throw new m(this.filename,this.pos,`Invalid 8-bits value: ${t}`);return t<0&&(t=256+t),[t]}}class rt{constructor(t,n){this.pos=t,this.expression=n,this.filename=h.fileName}get size(){return 1}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the 8-bits value");if(t=-t,t<-256||t>255)throw new m(this.filename,this.pos,`Invalid 8-bits value: ${t}`);return t<0&&(t=256+t),[t]}}class ct{constructor(t,n){this.pos=t,this.expression=n,this.filename=h.fileName}get size(){return 1}generate(){let t=this.expression.eval();if(t==null)throw new m(this.filename,this.pos,"Not able to determine the offset value");if(t<-126||t>129)throw new m(this.filename,this.pos,`Invalid offset for JR instruction: ${t}`);return t-=2,t<0&&(t=256+t),[t]}}class ut{constructor(t,n){this.pos=t,this.label=n,this.filename=h.fileName}get size(){return 1}generate(t){const n=E(this.label);if(n==null)throw new m(this.filename,this.pos,`Not able to determine the value of label '${this.label}'`);let i=n-t;if(i<-126||i>129)throw new m(this.filename,this.pos,`Label ${this.label} is to far from JR instruction: ${i} bytes`);return i-=2,i<0&&(i=256+i),[i]}}function N(e){return e.generate!==void 0}function p(e){return N(e)?e.size:1}function b(e,t,n){return()=>{const i=t.eval();if(!e)return i;const s=e.e.eval();return s==null||i==null?null:n(s,i)}}function D(e,t,n){return()=>{const i=t.eval();if(!e)return i;const s=e.e.eval();return s==null||i==null?null:n[e.op](s,i)}}function V(e,t){return()=>{const n=e.eval();return n==null?null:t(n)}}function lt(e,t,n){return()=>{const i=e.eval();return i==null?null:n[t](i)}}const ot=(e,t)=>e|t,at=(e,t)=>e^t,ht=(e,t)=>e&t,mt=(e,t)=>e<<t,_t=(e,t)=>e>>t,gt=(e,t)=>e+t,It=(e,t)=>e-t,wt=(e,t)=>e*t,xt=(e,t)=>Math.trunc(e/t),At=(e,t)=>e%t,Lt=e=>+e,ft=e=>-e,St=e=>~e,J=e=>e;function I(e,t){return new st(e,t)}function A(e,t){return new P(e,t)}function l(e,t,n){return t==="-"?new rt(e,n):new P(e,n)}function B(e,t){return new ct(e,t)}function q(e,t){return new ut(e,t)}function kt(e,t,n){return n.reduce((i,s)=>i.concat(s.inner.elements),t.elements)}function Rt(e,t,n){return n.reduce((i,s)=>i.concat(s.inner.elements),t.elements)}function Et(e,t,n,i){return new et(e,t,n,i)}function y(e,t){return t.reduce((n,i)=>i.lines.length<=0?n:(G(i.lines),vt(n,i.lines)),e)}function G(e){for(const t of e)t.kind===x.LineEqual?tt(t.label.pos,t.label.name,t.equal.e):t.kind===x.LineStatement&&t.statement?.kind===x.Statement_1&&G(t.statement.inc.info.lines)}function vt(e,t){for(const n of t)n.kind===x.LineStatement&&(n.label&&$(n.label.pos,n.label.name,e),n.statement&&(e=F(e,n.statement)));return e}function F(e,t){switch(t.kind){case x.Statement_1:return y(e,[t.info]);case x.Statement_2:return e+t.elements.reduce((n,i)=>n+p(i),0);case x.Statement_3:return t.address?t.address:e+t.elements.reduce((n,i)=>n+p(i),0)}}function j(e,t,n){const i=`|SLD.data.version|1
|
|
2
|
+
${e}|1||0|-1|-1|Z|pages.size:65536,pages.count:32,slots.count:1,slots.adr:0
|
|
3
|
+
`,s=U(t,n);return{bytes:s.bytes,sld:i+s.sld,address:t}}function U(e,t){let n=[],i="";for(const s of t){let r=1;for(const c of s.lines){if(c.kind!==x.LineStatement||!c.statement){r+=1;continue}switch(c.statement?.kind){case x.Statement_1:{const u=U(e,[c.statement.info]);n=n.concat(u.bytes),i+=u.sld,e=u.address}break;case x.Statement_2:case x.Statement_3:n=n.concat(Ct(e,c.statement.elements)),i+=bt(s.filename,r,e,c),e=F(e,c.statement);break}r+=1}}return{bytes:n,sld:i,address:e}}function Ct(e,t){return t.reduce((n,i)=>n.concat(N(i)?i.generate(e):[i]),[])}function bt(e,t,n,i){return Dt(e,t,i)+Bt(e,t,i,n)}function Dt(e,t,n){if(!n.label)return"";const i=E(n.label.name,!1),s=nt(n.label.name);return n.kind===x.LineEqual?`${e}|${t}||0|-1|${i}|L|,${n.label.name},,+equ${s?",+used":""}
|
|
4
|
+
`:`${e}|${t}||0|0|${i}|L|,${n.label.name},${s?",+used":""}
|
|
5
|
+
`}function Bt(e,t,n,i){return n.kind!==x.LineStatement?"":n.statement?.kind===x.Statement_2?`${e}|${t}||0|0|${i}|T|
|
|
6
|
+
`:""}const qt=`__ equ $00
|
|
7
|
+
_SPC equ $00
|
|
8
|
+
_DQT equ $0b
|
|
9
|
+
_PND equ $0c
|
|
10
|
+
_DLR equ $0d
|
|
11
|
+
_CLN equ $0e
|
|
12
|
+
_QMK equ $0f
|
|
13
|
+
_OBR equ $10
|
|
14
|
+
_CBR equ $11
|
|
15
|
+
_GTH equ $12
|
|
16
|
+
_LTH equ $13
|
|
17
|
+
_EQU equ $14
|
|
18
|
+
_PLS equ $15
|
|
19
|
+
_MNS equ $16
|
|
20
|
+
_ASK equ $17
|
|
21
|
+
_SLS equ $18
|
|
22
|
+
_SMC equ $19
|
|
23
|
+
_CMA equ $1a
|
|
24
|
+
_FST equ $1b
|
|
25
|
+
_0 equ $1c
|
|
26
|
+
_1 equ $1d
|
|
27
|
+
_2 equ $1e
|
|
28
|
+
_3 equ $1f
|
|
29
|
+
_4 equ $20
|
|
30
|
+
_5 equ $21
|
|
31
|
+
_6 equ $22
|
|
32
|
+
_7 equ $23
|
|
33
|
+
_8 equ $24
|
|
34
|
+
_9 equ $25
|
|
35
|
+
_A equ $26
|
|
36
|
+
_B equ $27
|
|
37
|
+
_C equ $28
|
|
38
|
+
_D equ $29
|
|
39
|
+
_E equ $2a
|
|
40
|
+
_F equ $2b
|
|
41
|
+
_G equ $2c
|
|
42
|
+
_H equ $2d
|
|
43
|
+
_I equ $2e
|
|
44
|
+
_J equ $2f
|
|
45
|
+
_K equ $30
|
|
46
|
+
_L equ $31
|
|
47
|
+
_M equ $32
|
|
48
|
+
_N equ $33
|
|
49
|
+
_O equ $34
|
|
50
|
+
_P equ $35
|
|
51
|
+
_Q equ $36
|
|
52
|
+
_R equ $37
|
|
53
|
+
_S equ $38
|
|
54
|
+
_T equ $39
|
|
55
|
+
_U equ $3a
|
|
56
|
+
_V equ $3b
|
|
57
|
+
_W equ $3c
|
|
58
|
+
_X equ $3d
|
|
59
|
+
_Y equ $3e
|
|
60
|
+
_Z equ $3f
|
|
61
|
+
|
|
62
|
+
_SPCV equ _SPC+$80
|
|
63
|
+
_DQTV equ _DQT+$80
|
|
64
|
+
_PNDV equ _PND+$80
|
|
65
|
+
_DLRV equ _DLR+$80
|
|
66
|
+
_CLNV equ _CLN+$80
|
|
67
|
+
_QMKV equ _QMK+$80
|
|
68
|
+
_OBRV equ _OBR+$80
|
|
69
|
+
_CBRV equ _CBR+$80
|
|
70
|
+
_GTHV equ _GTH+$80
|
|
71
|
+
_LTHV equ _LTH+$80
|
|
72
|
+
_EQUV equ _EQU+$80
|
|
73
|
+
_PLSV equ _PLS+$80
|
|
74
|
+
_MNSV equ _MNS+$80
|
|
75
|
+
_ASKV equ _ASK+$80
|
|
76
|
+
_SLSV equ _SLS+$80
|
|
77
|
+
_SMCV equ _SMC+$80
|
|
78
|
+
_CMAV equ _CMA+$80
|
|
79
|
+
_FSTV equ _FST+$80
|
|
80
|
+
_0V equ _0+$80
|
|
81
|
+
_1V equ _1+$80
|
|
82
|
+
_2V equ _2+$80
|
|
83
|
+
_3V equ _3+$80
|
|
84
|
+
_4V equ _4+$80
|
|
85
|
+
_5V equ _5+$80
|
|
86
|
+
_6V equ _6+$80
|
|
87
|
+
_7V equ _7+$80
|
|
88
|
+
_8V equ _8+$80
|
|
89
|
+
_9V equ _9+$80
|
|
90
|
+
_AV equ _A+$80
|
|
91
|
+
_BV equ _B+$80
|
|
92
|
+
_CV equ _C+$80
|
|
93
|
+
_DV equ _D+$80
|
|
94
|
+
_EV equ _E+$80
|
|
95
|
+
_FV equ _F+$80
|
|
96
|
+
_GV equ _G+$80
|
|
97
|
+
_HV equ _H+$80
|
|
98
|
+
_IV equ _I+$80
|
|
99
|
+
_JV equ _J+$80
|
|
100
|
+
_KV equ _K+$80
|
|
101
|
+
_LV equ _L+$80
|
|
102
|
+
_MV equ _M+$80
|
|
103
|
+
_NV equ _N+$80
|
|
104
|
+
_OV equ _O+$80
|
|
105
|
+
_PV equ _P+$80
|
|
106
|
+
_QV equ _Q+$80
|
|
107
|
+
_RV equ _R+$80
|
|
108
|
+
_SV equ _S+$80
|
|
109
|
+
_TV equ _T+$80
|
|
110
|
+
_UV equ _U+$80
|
|
111
|
+
_VV equ _V+$80
|
|
112
|
+
_WV equ _W+$80
|
|
113
|
+
_XV equ _X+$80
|
|
114
|
+
_YV equ _Y+$80
|
|
115
|
+
_ZV equ _Z+$80
|
|
116
|
+
|
|
117
|
+
_NL equ $76
|
|
118
|
+
|
|
119
|
+
_VAL equ $c5
|
|
120
|
+
_INT equ $cf
|
|
121
|
+
_USR equ $d4
|
|
122
|
+
_NOT equ $d7
|
|
123
|
+
_PWR equ $d8
|
|
124
|
+
_THEN equ $de
|
|
125
|
+
_STOP equ $e3
|
|
126
|
+
_REM equ $ea
|
|
127
|
+
_LET equ $f1
|
|
128
|
+
_PRINT equ $f5
|
|
129
|
+
_RUN equ $f7
|
|
130
|
+
_SAVE equ $f8
|
|
131
|
+
_RAND equ $f9
|
|
132
|
+
_IF equ $fa
|
|
133
|
+
`,yt=`
|
|
134
|
+
ERR_NR equ $4000
|
|
135
|
+
FLAGS equ $4001
|
|
136
|
+
ERR_SP equ $4002
|
|
137
|
+
RAMTOP equ $4004
|
|
138
|
+
MODE equ $4006
|
|
139
|
+
PPC equ $4007
|
|
140
|
+
|
|
141
|
+
org $4009
|
|
142
|
+
|
|
143
|
+
VERSN: byte 0
|
|
144
|
+
E_PPC: word 2
|
|
145
|
+
D_FILE: word display
|
|
146
|
+
DF_CC: word display+1
|
|
147
|
+
VARS: word variables
|
|
148
|
+
DEST: word 0
|
|
149
|
+
E_LINE: word edit_line
|
|
150
|
+
CH_ADD: word edit_line+4
|
|
151
|
+
X_PTR: word 0
|
|
152
|
+
STKBOT: word edit_line+5
|
|
153
|
+
STKEND: word edit_line+5
|
|
154
|
+
BERG: byte 0
|
|
155
|
+
MEM: word MEMBOT
|
|
156
|
+
SPARE1: byte 0
|
|
157
|
+
DF_SZ: byte 2
|
|
158
|
+
S_TOP: word 10
|
|
159
|
+
LAST_K: word $ffff
|
|
160
|
+
DB_ST: byte 0
|
|
161
|
+
MARGIN: byte 55
|
|
162
|
+
NXTLIN: word basic_line2
|
|
163
|
+
OLDPPC: word 0
|
|
164
|
+
FLAGX: byte 0
|
|
165
|
+
STRLEN: word 0
|
|
166
|
+
T_ADDR: word 0x0c8d
|
|
167
|
+
SEED: word 0
|
|
168
|
+
FRAMES: word 0
|
|
169
|
+
COORDS: byte 0
|
|
170
|
+
byte 0
|
|
171
|
+
PR_CC: byte $bc
|
|
172
|
+
S_POSN: byte $21
|
|
173
|
+
byte $18
|
|
174
|
+
CDFLAG: byte $40
|
|
175
|
+
PRBUF: block $20
|
|
176
|
+
byte _NL
|
|
177
|
+
MEMBOT: block $1e
|
|
178
|
+
SPARE2: word 0
|
|
179
|
+
`,pt=`basic_line1:
|
|
180
|
+
byte 0,1
|
|
181
|
+
word basic_line1_end-basic_line1-4
|
|
182
|
+
byte _REM
|
|
183
|
+
`,Mt=` byte _NL
|
|
184
|
+
basic_line1_end:
|
|
185
|
+
|
|
186
|
+
basic_line2:
|
|
187
|
+
byte 0,2
|
|
188
|
+
word basic_line2_end-basic_line2-4
|
|
189
|
+
byte _RAND,_USR,_VAL,_DQT,_1,_6,_5,_1,_4,_DQT
|
|
190
|
+
byte _NL
|
|
191
|
+
basic_line2_end:
|
|
192
|
+
`,Ot=`display:
|
|
193
|
+
byte _NL
|
|
194
|
+
block 32
|
|
195
|
+
byte _NL
|
|
196
|
+
block 32
|
|
197
|
+
byte _NL
|
|
198
|
+
block 32
|
|
199
|
+
byte _NL
|
|
200
|
+
block 32
|
|
201
|
+
byte _NL
|
|
202
|
+
block 32
|
|
203
|
+
byte _NL
|
|
204
|
+
block 32
|
|
205
|
+
byte _NL
|
|
206
|
+
block 32
|
|
207
|
+
byte _NL
|
|
208
|
+
block 32
|
|
209
|
+
byte _NL
|
|
210
|
+
block 32
|
|
211
|
+
byte _NL
|
|
212
|
+
block 32
|
|
213
|
+
byte _NL
|
|
214
|
+
block 32
|
|
215
|
+
byte _NL
|
|
216
|
+
block 32
|
|
217
|
+
byte _NL
|
|
218
|
+
block 32
|
|
219
|
+
byte _NL
|
|
220
|
+
block 32
|
|
221
|
+
byte _NL
|
|
222
|
+
block 32
|
|
223
|
+
byte _NL
|
|
224
|
+
block 32
|
|
225
|
+
byte _NL
|
|
226
|
+
block 32
|
|
227
|
+
byte _NL
|
|
228
|
+
block 32
|
|
229
|
+
byte _NL
|
|
230
|
+
block 32
|
|
231
|
+
byte _NL
|
|
232
|
+
block 32
|
|
233
|
+
byte _NL
|
|
234
|
+
block 32
|
|
235
|
+
byte _NL
|
|
236
|
+
block 32
|
|
237
|
+
byte _NL
|
|
238
|
+
block 32
|
|
239
|
+
byte _NL
|
|
240
|
+
block 32
|
|
241
|
+
byte _NL
|
|
242
|
+
`,Pt=`variables:
|
|
243
|
+
variables_end:
|
|
244
|
+
byte $80
|
|
245
|
+
edit_line:
|
|
246
|
+
`,h={outputName:"",sldName:"",deviceName:"",basePath:"",fileName:"",getFileCode:()=>""};function z(e,t){h.outputName=e,h.sldName=t||e.replace(/\.P$/,".sld")}function W(e){h.deviceName=e.toLowerCase()}function X(e,t){const n=h.basePath+t,i=h.getFileCode(n);return f(n,i)}function f(e,t){const n=h.fileName;h.fileName=e,t.endsWith(`
|
|
247
|
+
`)||(t+=`
|
|
248
|
+
`);const s=new fr(t).parse();if(h.fileName=n,s.errs.length>0)throw m.fromSyntaxErr(e,s.errs[0]);return{lines:s.ast?.lines??[],filename:e}}function Nt(e){let t=e.lastIndexOf("/");return t===-1&&(t=e.lastIndexOf("\\")),t===-1?"":e.substring(0,t+1)}function Vt(e,t,n){h.outputName=e.replace(/\..*$/,"")+".P",h.sldName=h.outputName.replace(/\.P$/,".sld"),h.basePath=Nt(e),h.getFileCode=n;try{d();const i=Jt(f(e,t));y(0,i);const s=it().join(", ");if(s.length>0)throw new m(h.fileName,{line:1,offset:0,overallPos:0},`Unknown value for labels: ${s}`);const r=j(e,0,i);return{outputName:h.outputName,bytes:r.bytes,sld:r.sld,errs:[]}}catch(i){return{outputName:h.outputName,bytes:[],sld:"",errs:[m.fromAny(h.fileName,i)]}}}function Jt(e){return h.deviceName!=="zx81"?[e]:[f("@internal/characters.zx81",qt),f("@internal/system-variables.zx81",yt),f("@internal/basic-line1.zx81",pt),e,f("@internal/basic-line2.zx81",Mt),f("@internal/display.zx81",Ot),f("@internal/basic-end.zx81",Pt)]}function S(e,t,n,i){let s=parseInt(t,n);if(isNaN(s))throw new m(h.fileName,e,`Number '${t}' is invalid in base ${n}.`);switch(i){case 1:if(s>255||s<-256)throw new m(h.fileName,e,`Number '${t}' does not fit into a byte.`);s<0&&(s=256+s);break;case 2:if(s>65535||s<-65536)throw new m(h.fileName,e,`Number '${t}' does not fit into a word.`);s<0&&(s=65536+s);break;default:throw new m(h.fileName,e,`Invalid number of bytes (${i})`)}return s}function Gt(e,t){switch(t){case'"':return[11];default:throw new m(h.fileName,e,`Invalid escape: \\${t}`)}}function Ft(e,t){const n=parseInt(t,8);if(n>255)throw new m(h.fileName,e,`Number '${t}' in octal escape sequence does not fit into a byte.`);return[n]}function jt(e,t){const n=parseInt(t,16);if(n>255)throw new m(h.fileName,e,`Number '${t}' in hexadecimal escape sequence does not fit into a byte.`);return[n]}const M=new Map([[" ",0],['"',11],["£",12],["$",13],[":",14],["?",15],["(",16],[")",17],[">",18],["<",19],["=",20],["+",21],["-",22],["*",23],["/",24],[";",25],[",",26],[".",27],["_",128]]);function H(e,t){if(t>="A"&&t<"Z")return[t.charCodeAt(0)-65+38];if(t>="a"&&t<"z")return[t.charCodeAt(0)-97+166];if(t>="0"&&t<"9")return[t.charCodeAt(0)-48+28];if(!M.has(t))throw new m(h.fileName,e,`Invalid ZX81 character: ${t}`);return[M.get(t)]}var x=(e=>(e.start="start",e.r_1="r_1",e.r_2="r_2",e.r_3="r_3",e.r_4="r_4",e.r_5="r_5",e.r_6="r_6",e.r_7="r_7",e.dd_1="dd_1",e.dd_2="dd_2",e.dd_3="dd_3",e.dd_4="dd_4",e.ss="ss",e.qq_1="qq_1",e.qq_2="qq_2",e.qq_3="qq_3",e.qq_4="qq_4",e.pp_1="pp_1",e.pp_2="pp_2",e.pp_3="pp_3",e.pp_4="pp_4",e.rr_1="rr_1",e.rr_2="rr_2",e.rr_3="rr_3",e.rr_4="rr_4",e.n_1="n_1",e.n_2="n_2",e.n_3="n_3",e.n_4="n_4",e.nn_1="nn_1",e.nn_2="nn_2",e.nn_3="nn_3",e.nn_4="nn_4",e.decimal="decimal",e.binary="binary",e.binary_$0_1="binary_$0_1",e.binary_$0_2="binary_$0_2",e.octal_1="octal_1",e.octal_2="octal_2",e.octal_$0_1="octal_$0_1",e.octal_$0_2="octal_$0_2",e.octal_$1_1="octal_$1_1",e.octal_$1_2="octal_$1_2",e.hexadecimal_1="hexadecimal_1",e.hexadecimal_2="hexadecimal_2",e.hexadecimal_$0_1="hexadecimal_$0_1",e.hexadecimal_$0_2="hexadecimal_$0_2",e.hexadecimal_$0_3="hexadecimal_$0_3",e.d="d",e.e="e",e.p="p",e.b="b",e.cc_1="cc_1",e.cc_2="cc_2",e.cc_3="cc_3",e.cc_4="cc_4",e.cc_5="cc_5",e.cc_6="cc_6",e.cc_7="cc_7",e.cc_8="cc_8",e.cc_9="cc_9",e.jj_1="jj_1",e.jj_2="jj_2",e.jj_3="jj_3",e.jj_4="jj_4",e.__="__",e._="_",e.eos="eos",e.eol="eol",e.Lines="Lines",e.Line_1="Line_1",e.Line_2="Line_2",e.LineEqual="LineEqual",e.LineStatement="LineStatement",e.Statement_1="Statement_1",e.Statement_2="Statement_2",e.Statement_3="Statement_3",e.EqualDirective="EqualDirective",e.Directive_1="Directive_1",e.Directive_2="Directive_2",e.Directive_3="Directive_3",e.Directive_4="Directive_4",e.ForbiddenNames_1="ForbiddenNames_1",e.ForbiddenNames_2="ForbiddenNames_2",e.ForbiddenNames_3="ForbiddenNames_3",e.ForbiddenNames_4="ForbiddenNames_4",e.ForbiddenNames_5="ForbiddenNames_5",e.ForbiddenLabel="ForbiddenLabel",e.Label="Label",e.LabelDeclaration="LabelDeclaration",e.Expression="Expression",e.BitwiseOrExpression="BitwiseOrExpression",e.BitwiseOrExpression_$0="BitwiseOrExpression_$0",e.BitwiseXOrExpression="BitwiseXOrExpression",e.BitwiseXOrExpression_$0="BitwiseXOrExpression_$0",e.BitwiseAndExpression="BitwiseAndExpression",e.BitwiseAndExpression_$0="BitwiseAndExpression_$0",e.ShiftExpression="ShiftExpression",e.ShiftExpression_$0="ShiftExpression_$0",e.ShiftExpression_$0_$0_1="ShiftExpression_$0_$0_1",e.ShiftExpression_$0_$0_2="ShiftExpression_$0_$0_2",e.AdditiveExpression="AdditiveExpression",e.AdditiveExpression_$0="AdditiveExpression_$0",e.AdditiveExpression_$0_$0_1="AdditiveExpression_$0_$0_1",e.AdditiveExpression_$0_$0_2="AdditiveExpression_$0_$0_2",e.MultiplicativeExpression="MultiplicativeExpression",e.MultiplicativeExpression_$0="MultiplicativeExpression_$0",e.MultiplicativeExpression_$0_$0_1="MultiplicativeExpression_$0_$0_1",e.MultiplicativeExpression_$0_$0_2="MultiplicativeExpression_$0_$0_2",e.MultiplicativeExpression_$0_$0_3="MultiplicativeExpression_$0_$0_3",e.UnaryExpression_1="UnaryExpression_1",e.UnaryExpression_2="UnaryExpression_2",e.UnaryExpression_$0_1="UnaryExpression_$0_1",e.UnaryExpression_$0_2="UnaryExpression_$0_2",e.UnaryExpression_$0_3="UnaryExpression_$0_3",e.PrimaryExpression_1="PrimaryExpression_1",e.PrimaryExpression_2="PrimaryExpression_2",e.PrimaryExpression_3="PrimaryExpression_3",e.Reg8="Reg8",e.Instruction_1="Instruction_1",e.Instruction_2="Instruction_2",e.Instruction_3="Instruction_3",e.Instruction_4="Instruction_4",e.Instruction_5="Instruction_5",e.Instruction_6="Instruction_6",e.Instruction_7="Instruction_7",e.Instruction_8="Instruction_8",e.Instruction_9="Instruction_9",e.Instruction_10="Instruction_10",e.Instruction_11="Instruction_11",e.Instruction_12="Instruction_12",e.Instruction_13="Instruction_13",e.Instruction_14="Instruction_14",e.Instruction_15="Instruction_15",e.Instruction_16="Instruction_16",e.Load8Instruction_1="Load8Instruction_1",e.Load8Instruction_2="Load8Instruction_2",e.Load8Instruction_3="Load8Instruction_3",e.Load8Instruction_4="Load8Instruction_4",e.Load8Instruction_5="Load8Instruction_5",e.Load8Instruction_6="Load8Instruction_6",e.Load8Instruction_7="Load8Instruction_7",e.Load8Instruction_8="Load8Instruction_8",e.Load8Instruction_9="Load8Instruction_9",e.Load8Instruction_10="Load8Instruction_10",e.Load8Instruction_11="Load8Instruction_11",e.Load8Instruction_12="Load8Instruction_12",e.Load8Instruction_13="Load8Instruction_13",e.Load8Instruction_14="Load8Instruction_14",e.Load8Instruction_15="Load8Instruction_15",e.Load8Instruction_16="Load8Instruction_16",e.Load8Instruction_17="Load8Instruction_17",e.Load8Instruction_18="Load8Instruction_18",e.Load8Instruction_19="Load8Instruction_19",e.Load8Instruction_20="Load8Instruction_20",e.Load8Instruction_21="Load8Instruction_21",e.Load8Instruction_$0_1="Load8Instruction_$0_1",e.Load8Instruction_$0_2="Load8Instruction_$0_2",e.Load8Instruction_$1_1="Load8Instruction_$1_1",e.Load8Instruction_$1_2="Load8Instruction_$1_2",e.Load8Instruction_$2_1="Load8Instruction_$2_1",e.Load8Instruction_$2_2="Load8Instruction_$2_2",e.Load8Instruction_$3_1="Load8Instruction_$3_1",e.Load8Instruction_$3_2="Load8Instruction_$3_2",e.Load8Instruction_$4_1="Load8Instruction_$4_1",e.Load8Instruction_$4_2="Load8Instruction_$4_2",e.Load8Instruction_$5_1="Load8Instruction_$5_1",e.Load8Instruction_$5_2="Load8Instruction_$5_2",e.Load16Instruction_1="Load16Instruction_1",e.Load16Instruction_2="Load16Instruction_2",e.Load16Instruction_3="Load16Instruction_3",e.Load16Instruction_4="Load16Instruction_4",e.Load16Instruction_5="Load16Instruction_5",e.Load16Instruction_6="Load16Instruction_6",e.Load16Instruction_7="Load16Instruction_7",e.Load16Instruction_8="Load16Instruction_8",e.Load16Instruction_9="Load16Instruction_9",e.Load16Instruction_10="Load16Instruction_10",e.Load16Instruction_11="Load16Instruction_11",e.Load16Instruction_12="Load16Instruction_12",e.Load16Instruction_13="Load16Instruction_13",e.Load16Instruction_14="Load16Instruction_14",e.Load16Instruction_15="Load16Instruction_15",e.Load16Instruction_16="Load16Instruction_16",e.Load16Instruction_17="Load16Instruction_17",e.Load16Instruction_18="Load16Instruction_18",e.Load16Instruction_19="Load16Instruction_19",e.Load16Instruction_20="Load16Instruction_20",e.ExchangeInstruction_1="ExchangeInstruction_1",e.ExchangeInstruction_2="ExchangeInstruction_2",e.ExchangeInstruction_3="ExchangeInstruction_3",e.ExchangeInstruction_4="ExchangeInstruction_4",e.ExchangeInstruction_5="ExchangeInstruction_5",e.ExchangeInstruction_6="ExchangeInstruction_6",e.BlockInstruction_1="BlockInstruction_1",e.BlockInstruction_2="BlockInstruction_2",e.BlockInstruction_3="BlockInstruction_3",e.BlockInstruction_4="BlockInstruction_4",e.BlockInstruction_5="BlockInstruction_5",e.BlockInstruction_6="BlockInstruction_6",e.BlockInstruction_7="BlockInstruction_7",e.BlockInstruction_8="BlockInstruction_8",e.ArithmeticLogic8Instruction_1="ArithmeticLogic8Instruction_1",e.ArithmeticLogic8Instruction_2="ArithmeticLogic8Instruction_2",e.ArithmeticLogic8Instruction_3="ArithmeticLogic8Instruction_3",e.ArithmeticLogic8Instruction_4="ArithmeticLogic8Instruction_4",e.ArithmeticLogic8Instruction_5="ArithmeticLogic8Instruction_5",e.ArithmeticLogic8Instruction_6="ArithmeticLogic8Instruction_6",e.ArithmeticLogic8Instruction_7="ArithmeticLogic8Instruction_7",e.ArithmeticLogic8Instruction_8="ArithmeticLogic8Instruction_8",e.ArithmeticLogic8Instruction_9="ArithmeticLogic8Instruction_9",e.ArithmeticLogic8Instruction_10="ArithmeticLogic8Instruction_10",e.ArithmeticLogic8Instruction_11="ArithmeticLogic8Instruction_11",e.ArithmeticLogic8Instruction_12="ArithmeticLogic8Instruction_12",e.ArithmeticLogic8Instruction_13="ArithmeticLogic8Instruction_13",e.ArithmeticLogic8Instruction_14="ArithmeticLogic8Instruction_14",e.ArithmeticLogic8Instruction_15="ArithmeticLogic8Instruction_15",e.ArithmeticLogic8Instruction_16="ArithmeticLogic8Instruction_16",e.ArithmeticLogic8Instruction_17="ArithmeticLogic8Instruction_17",e.ArithmeticLogic8Instruction_18="ArithmeticLogic8Instruction_18",e.ArithmeticLogic8Instruction_19="ArithmeticLogic8Instruction_19",e.ArithmeticLogic8Instruction_20="ArithmeticLogic8Instruction_20",e.ArithmeticLogic8Instruction_21="ArithmeticLogic8Instruction_21",e.ArithmeticLogic8Instruction_22="ArithmeticLogic8Instruction_22",e.ArithmeticLogic8Instruction_23="ArithmeticLogic8Instruction_23",e.ArithmeticLogic8Instruction_24="ArithmeticLogic8Instruction_24",e.ArithmeticLogic8Instruction_25="ArithmeticLogic8Instruction_25",e.ArithmeticLogic8Instruction_26="ArithmeticLogic8Instruction_26",e.ArithmeticLogic8Instruction_27="ArithmeticLogic8Instruction_27",e.ArithmeticLogic8Instruction_28="ArithmeticLogic8Instruction_28",e.ArithmeticLogic8Instruction_29="ArithmeticLogic8Instruction_29",e.ArithmeticLogic8Instruction_30="ArithmeticLogic8Instruction_30",e.ArithmeticLogic8Instruction_31="ArithmeticLogic8Instruction_31",e.ArithmeticLogic8Instruction_32="ArithmeticLogic8Instruction_32",e.ArithmeticLogic8Instruction_33="ArithmeticLogic8Instruction_33",e.ArithmeticLogic8Instruction_34="ArithmeticLogic8Instruction_34",e.ArithmeticLogic8Instruction_35="ArithmeticLogic8Instruction_35",e.ArithmeticLogic8Instruction_36="ArithmeticLogic8Instruction_36",e.ArithmeticLogic8Instruction_37="ArithmeticLogic8Instruction_37",e.ArithmeticLogic8Instruction_38="ArithmeticLogic8Instruction_38",e.ArithmeticLogic8Instruction_39="ArithmeticLogic8Instruction_39",e.ArithmeticLogic8Instruction_40="ArithmeticLogic8Instruction_40",e.ArithmeticLogic8Instruction_$0="ArithmeticLogic8Instruction_$0",e.ArithmeticLogic8Instruction_$1="ArithmeticLogic8Instruction_$1",e.ArithmeticLogic8Instruction_$2_1="ArithmeticLogic8Instruction_$2_1",e.ArithmeticLogic8Instruction_$2_2="ArithmeticLogic8Instruction_$2_2",e.ArithmeticLogic8Instruction_$3="ArithmeticLogic8Instruction_$3",e.ArithmeticLogic8Instruction_$4_1="ArithmeticLogic8Instruction_$4_1",e.ArithmeticLogic8Instruction_$4_2="ArithmeticLogic8Instruction_$4_2",e.ArithmeticLogic8Instruction_$5="ArithmeticLogic8Instruction_$5",e.ArithmeticLogic8Instruction_$6="ArithmeticLogic8Instruction_$6",e.ArithmeticLogic8Instruction_$7="ArithmeticLogic8Instruction_$7",e.ArithmeticLogic8Instruction_$8="ArithmeticLogic8Instruction_$8",e.ArithmeticLogic8Instruction_$9_1="ArithmeticLogic8Instruction_$9_1",e.ArithmeticLogic8Instruction_$9_2="ArithmeticLogic8Instruction_$9_2",e.ArithmeticLogic8Instruction_$10="ArithmeticLogic8Instruction_$10",e.ArithmeticLogic8Instruction_$11_1="ArithmeticLogic8Instruction_$11_1",e.ArithmeticLogic8Instruction_$11_2="ArithmeticLogic8Instruction_$11_2",e.ArithmeticLogic8Instruction_$12="ArithmeticLogic8Instruction_$12",e.ArithmeticLogic8Instruction_$13="ArithmeticLogic8Instruction_$13",e.ArithmeticLogic8Instruction_$14="ArithmeticLogic8Instruction_$14",e.ArithmeticLogic8Instruction_$15="ArithmeticLogic8Instruction_$15",e.ArithmeticLogic8Instruction_$16_1="ArithmeticLogic8Instruction_$16_1",e.ArithmeticLogic8Instruction_$16_2="ArithmeticLogic8Instruction_$16_2",e.ArithmeticLogic8Instruction_$17="ArithmeticLogic8Instruction_$17",e.ArithmeticLogic8Instruction_$18_1="ArithmeticLogic8Instruction_$18_1",e.ArithmeticLogic8Instruction_$18_2="ArithmeticLogic8Instruction_$18_2",e.ArithmeticLogic8Instruction_$19="ArithmeticLogic8Instruction_$19",e.ArithmeticLogic8Instruction_$20="ArithmeticLogic8Instruction_$20",e.ArithmeticLogic8Instruction_$21="ArithmeticLogic8Instruction_$21",e.ArithmeticLogic8Instruction_$22="ArithmeticLogic8Instruction_$22",e.ArithmeticLogic8Instruction_$23_1="ArithmeticLogic8Instruction_$23_1",e.ArithmeticLogic8Instruction_$23_2="ArithmeticLogic8Instruction_$23_2",e.ArithmeticLogic8Instruction_$24="ArithmeticLogic8Instruction_$24",e.ArithmeticLogic8Instruction_$25_1="ArithmeticLogic8Instruction_$25_1",e.ArithmeticLogic8Instruction_$25_2="ArithmeticLogic8Instruction_$25_2",e.ArithmeticLogic8Instruction_$26="ArithmeticLogic8Instruction_$26",e.ArithmeticLogic8Instruction_$27="ArithmeticLogic8Instruction_$27",e.ArithmeticLogic8Instruction_$28="ArithmeticLogic8Instruction_$28",e.ArithmeticLogic8Instruction_$29="ArithmeticLogic8Instruction_$29",e.ArithmeticLogic8Instruction_$30_1="ArithmeticLogic8Instruction_$30_1",e.ArithmeticLogic8Instruction_$30_2="ArithmeticLogic8Instruction_$30_2",e.ArithmeticLogic8Instruction_$31="ArithmeticLogic8Instruction_$31",e.ArithmeticLogic8Instruction_$32_1="ArithmeticLogic8Instruction_$32_1",e.ArithmeticLogic8Instruction_$32_2="ArithmeticLogic8Instruction_$32_2",e.ArithmeticLogic8Instruction_$33="ArithmeticLogic8Instruction_$33",e.ArithmeticLogic8Instruction_$34="ArithmeticLogic8Instruction_$34",e.ArithmeticLogic8Instruction_$35="ArithmeticLogic8Instruction_$35",e.ArithmeticLogic8Instruction_$36="ArithmeticLogic8Instruction_$36",e.ArithmeticLogic8Instruction_$37_1="ArithmeticLogic8Instruction_$37_1",e.ArithmeticLogic8Instruction_$37_2="ArithmeticLogic8Instruction_$37_2",e.ArithmeticLogic8Instruction_$38="ArithmeticLogic8Instruction_$38",e.ArithmeticLogic8Instruction_$39_1="ArithmeticLogic8Instruction_$39_1",e.ArithmeticLogic8Instruction_$39_2="ArithmeticLogic8Instruction_$39_2",e.ArithmeticLogic8Instruction_$40="ArithmeticLogic8Instruction_$40",e.ArithmeticLogic8Instruction_$41="ArithmeticLogic8Instruction_$41",e.ArithmeticLogic8Instruction_$42="ArithmeticLogic8Instruction_$42",e.ArithmeticLogic8Instruction_$43="ArithmeticLogic8Instruction_$43",e.ArithmeticLogic8Instruction_$44_1="ArithmeticLogic8Instruction_$44_1",e.ArithmeticLogic8Instruction_$44_2="ArithmeticLogic8Instruction_$44_2",e.ArithmeticLogic8Instruction_$45="ArithmeticLogic8Instruction_$45",e.ArithmeticLogic8Instruction_$46_1="ArithmeticLogic8Instruction_$46_1",e.ArithmeticLogic8Instruction_$46_2="ArithmeticLogic8Instruction_$46_2",e.ArithmeticLogic8Instruction_$47="ArithmeticLogic8Instruction_$47",e.ArithmeticLogic8Instruction_$48="ArithmeticLogic8Instruction_$48",e.ArithmeticLogic8Instruction_$49="ArithmeticLogic8Instruction_$49",e.ArithmeticLogic8Instruction_$50="ArithmeticLogic8Instruction_$50",e.ArithmeticLogic8Instruction_$51_1="ArithmeticLogic8Instruction_$51_1",e.ArithmeticLogic8Instruction_$51_2="ArithmeticLogic8Instruction_$51_2",e.ArithmeticLogic8Instruction_$52="ArithmeticLogic8Instruction_$52",e.ArithmeticLogic8Instruction_$53_1="ArithmeticLogic8Instruction_$53_1",e.ArithmeticLogic8Instruction_$53_2="ArithmeticLogic8Instruction_$53_2",e.ArithmeticLogic8Instruction_$54="ArithmeticLogic8Instruction_$54",e.ArithmeticLogic8Instruction_$55="ArithmeticLogic8Instruction_$55",e.IncrementDecrement8Instruction_1="IncrementDecrement8Instruction_1",e.IncrementDecrement8Instruction_2="IncrementDecrement8Instruction_2",e.IncrementDecrement8Instruction_3="IncrementDecrement8Instruction_3",e.IncrementDecrement8Instruction_4="IncrementDecrement8Instruction_4",e.IncrementDecrement8Instruction_5="IncrementDecrement8Instruction_5",e.IncrementDecrement8Instruction_6="IncrementDecrement8Instruction_6",e.IncrementDecrement8Instruction_7="IncrementDecrement8Instruction_7",e.IncrementDecrement8Instruction_8="IncrementDecrement8Instruction_8",e.IncrementDecrement8Instruction_$0_1="IncrementDecrement8Instruction_$0_1",e.IncrementDecrement8Instruction_$0_2="IncrementDecrement8Instruction_$0_2",e.IncrementDecrement8Instruction_$1_1="IncrementDecrement8Instruction_$1_1",e.IncrementDecrement8Instruction_$1_2="IncrementDecrement8Instruction_$1_2",e.IncrementDecrement8Instruction_$2_1="IncrementDecrement8Instruction_$2_1",e.IncrementDecrement8Instruction_$2_2="IncrementDecrement8Instruction_$2_2",e.IncrementDecrement8Instruction_$3_1="IncrementDecrement8Instruction_$3_1",e.IncrementDecrement8Instruction_$3_2="IncrementDecrement8Instruction_$3_2",e.GeneralPurposeArithmeticInstruction_1="GeneralPurposeArithmeticInstruction_1",e.GeneralPurposeArithmeticInstruction_2="GeneralPurposeArithmeticInstruction_2",e.GeneralPurposeArithmeticInstruction_3="GeneralPurposeArithmeticInstruction_3",e.GeneralPurposeArithmeticInstruction_4="GeneralPurposeArithmeticInstruction_4",e.GeneralPurposeArithmeticInstruction_5="GeneralPurposeArithmeticInstruction_5",e.CpuControlGroupInstruction_1="CpuControlGroupInstruction_1",e.CpuControlGroupInstruction_2="CpuControlGroupInstruction_2",e.CpuControlGroupInstruction_3="CpuControlGroupInstruction_3",e.CpuControlGroupInstruction_4="CpuControlGroupInstruction_4",e.CpuControlGroupInstruction_5="CpuControlGroupInstruction_5",e.ArithmeticLogic16Instruction_1="ArithmeticLogic16Instruction_1",e.ArithmeticLogic16Instruction_2="ArithmeticLogic16Instruction_2",e.ArithmeticLogic16Instruction_3="ArithmeticLogic16Instruction_3",e.ArithmeticLogic16Instruction_4="ArithmeticLogic16Instruction_4",e.ArithmeticLogic16Instruction_5="ArithmeticLogic16Instruction_5",e.ArithmeticLogic16Instruction_6="ArithmeticLogic16Instruction_6",e.ArithmeticLogic16Instruction_7="ArithmeticLogic16Instruction_7",e.ArithmeticLogic16Instruction_8="ArithmeticLogic16Instruction_8",e.ArithmeticLogic16Instruction_9="ArithmeticLogic16Instruction_9",e.ArithmeticLogic16Instruction_10="ArithmeticLogic16Instruction_10",e.ArithmeticLogic16Instruction_11="ArithmeticLogic16Instruction_11",e.RotateShiftInstruction_1="RotateShiftInstruction_1",e.RotateShiftInstruction_2="RotateShiftInstruction_2",e.RotateShiftInstruction_3="RotateShiftInstruction_3",e.RotateShiftInstruction_4="RotateShiftInstruction_4",e.RotateShiftInstruction_5="RotateShiftInstruction_5",e.RotateShiftInstruction_6="RotateShiftInstruction_6",e.RotateShiftInstruction_7="RotateShiftInstruction_7",e.RotateShiftInstruction_8="RotateShiftInstruction_8",e.RotateShiftInstruction_9="RotateShiftInstruction_9",e.RotateShiftInstruction_10="RotateShiftInstruction_10",e.RotateShiftInstruction_11="RotateShiftInstruction_11",e.RotateShiftInstruction_12="RotateShiftInstruction_12",e.RotateShiftInstruction_13="RotateShiftInstruction_13",e.RotateShiftInstruction_14="RotateShiftInstruction_14",e.RotateShiftInstruction_15="RotateShiftInstruction_15",e.RotateShiftInstruction_16="RotateShiftInstruction_16",e.RotateShiftInstruction_17="RotateShiftInstruction_17",e.RotateShiftInstruction_18="RotateShiftInstruction_18",e.RotateShiftInstruction_19="RotateShiftInstruction_19",e.RotateShiftInstruction_20="RotateShiftInstruction_20",e.RotateShiftInstruction_21="RotateShiftInstruction_21",e.RotateShiftInstruction_22="RotateShiftInstruction_22",e.RotateShiftInstruction_23="RotateShiftInstruction_23",e.RotateShiftInstruction_24="RotateShiftInstruction_24",e.RotateShiftInstruction_25="RotateShiftInstruction_25",e.RotateShiftInstruction_26="RotateShiftInstruction_26",e.RotateShiftInstruction_27="RotateShiftInstruction_27",e.RotateShiftInstruction_28="RotateShiftInstruction_28",e.RotateShiftInstruction_29="RotateShiftInstruction_29",e.RotateShiftInstruction_30="RotateShiftInstruction_30",e.RotateShiftInstruction_31="RotateShiftInstruction_31",e.RotateShiftInstruction_32="RotateShiftInstruction_32",e.RotateShiftInstruction_33="RotateShiftInstruction_33",e.RotateShiftInstruction_34="RotateShiftInstruction_34",e.RotateShiftInstruction_$0_1="RotateShiftInstruction_$0_1",e.RotateShiftInstruction_$0_2="RotateShiftInstruction_$0_2",e.RotateShiftInstruction_$1_1="RotateShiftInstruction_$1_1",e.RotateShiftInstruction_$1_2="RotateShiftInstruction_$1_2",e.RotateShiftInstruction_$2_1="RotateShiftInstruction_$2_1",e.RotateShiftInstruction_$2_2="RotateShiftInstruction_$2_2",e.RotateShiftInstruction_$3_1="RotateShiftInstruction_$3_1",e.RotateShiftInstruction_$3_2="RotateShiftInstruction_$3_2",e.RotateShiftInstruction_$4_1="RotateShiftInstruction_$4_1",e.RotateShiftInstruction_$4_2="RotateShiftInstruction_$4_2",e.RotateShiftInstruction_$5_1="RotateShiftInstruction_$5_1",e.RotateShiftInstruction_$5_2="RotateShiftInstruction_$5_2",e.RotateShiftInstruction_$6_1="RotateShiftInstruction_$6_1",e.RotateShiftInstruction_$6_2="RotateShiftInstruction_$6_2",e.RotateShiftInstruction_$7_1="RotateShiftInstruction_$7_1",e.RotateShiftInstruction_$7_2="RotateShiftInstruction_$7_2",e.RotateShiftInstruction_$8_1="RotateShiftInstruction_$8_1",e.RotateShiftInstruction_$8_2="RotateShiftInstruction_$8_2",e.RotateShiftInstruction_$9_1="RotateShiftInstruction_$9_1",e.RotateShiftInstruction_$9_2="RotateShiftInstruction_$9_2",e.RotateShiftInstruction_$10_1="RotateShiftInstruction_$10_1",e.RotateShiftInstruction_$10_2="RotateShiftInstruction_$10_2",e.RotateShiftInstruction_$11_1="RotateShiftInstruction_$11_1",e.RotateShiftInstruction_$11_2="RotateShiftInstruction_$11_2",e.RotateShiftInstruction_$12_1="RotateShiftInstruction_$12_1",e.RotateShiftInstruction_$12_2="RotateShiftInstruction_$12_2",e.RotateShiftInstruction_$13_1="RotateShiftInstruction_$13_1",e.RotateShiftInstruction_$13_2="RotateShiftInstruction_$13_2",e.BitManipulationInstruction_1="BitManipulationInstruction_1",e.BitManipulationInstruction_2="BitManipulationInstruction_2",e.BitManipulationInstruction_3="BitManipulationInstruction_3",e.BitManipulationInstruction_4="BitManipulationInstruction_4",e.BitManipulationInstruction_5="BitManipulationInstruction_5",e.BitManipulationInstruction_6="BitManipulationInstruction_6",e.BitManipulationInstruction_7="BitManipulationInstruction_7",e.BitManipulationInstruction_8="BitManipulationInstruction_8",e.BitManipulationInstruction_9="BitManipulationInstruction_9",e.BitManipulationInstruction_10="BitManipulationInstruction_10",e.BitManipulationInstruction_11="BitManipulationInstruction_11",e.BitManipulationInstruction_12="BitManipulationInstruction_12",e.BitManipulationInstruction_$0_1="BitManipulationInstruction_$0_1",e.BitManipulationInstruction_$0_2="BitManipulationInstruction_$0_2",e.BitManipulationInstruction_$1_1="BitManipulationInstruction_$1_1",e.BitManipulationInstruction_$1_2="BitManipulationInstruction_$1_2",e.BitManipulationInstruction_$2_1="BitManipulationInstruction_$2_1",e.BitManipulationInstruction_$2_2="BitManipulationInstruction_$2_2",e.BitManipulationInstruction_$3_1="BitManipulationInstruction_$3_1",e.BitManipulationInstruction_$3_2="BitManipulationInstruction_$3_2",e.BitManipulationInstruction_$4_1="BitManipulationInstruction_$4_1",e.BitManipulationInstruction_$4_2="BitManipulationInstruction_$4_2",e.BitManipulationInstruction_$5_1="BitManipulationInstruction_$5_1",e.BitManipulationInstruction_$5_2="BitManipulationInstruction_$5_2",e.Offset_1="Offset_1",e.Offset_2="Offset_2",e.JumpInstruction_1="JumpInstruction_1",e.JumpInstruction_2="JumpInstruction_2",e.JumpInstruction_3="JumpInstruction_3",e.JumpInstruction_4="JumpInstruction_4",e.JumpInstruction_5="JumpInstruction_5",e.JumpInstruction_6="JumpInstruction_6",e.JumpInstruction_7="JumpInstruction_7",e.JumpInstruction_8="JumpInstruction_8",e.JumpInstruction_9="JumpInstruction_9",e.JumpInstruction_10="JumpInstruction_10",e.JumpInstruction_11="JumpInstruction_11",e.CallInstruction_1="CallInstruction_1",e.CallInstruction_2="CallInstruction_2",e.ReturnInstruction_1="ReturnInstruction_1",e.ReturnInstruction_2="ReturnInstruction_2",e.ReturnInstruction_3="ReturnInstruction_3",e.ReturnInstruction_4="ReturnInstruction_4",e.ReturnInstruction_5="ReturnInstruction_5",e.InputInstruction_1="InputInstruction_1",e.InputInstruction_2="InputInstruction_2",e.InputInstruction_3="InputInstruction_3",e.InputInstruction_4="InputInstruction_4",e.InputInstruction_5="InputInstruction_5",e.InputInstruction_6="InputInstruction_6",e.OutputInstruction_1="OutputInstruction_1",e.OutputInstruction_2="OutputInstruction_2",e.OutputInstruction_3="OutputInstruction_3",e.OutputInstruction_4="OutputInstruction_4",e.OutputInstruction_5="OutputInstruction_5",e.OutputInstruction_6="OutputInstruction_6",e.ByteDirective_1="ByteDirective_1",e.ByteDirective_2="ByteDirective_2",e.ByteDirective_3="ByteDirective_3",e.ByteDirective_4="ByteDirective_4",e.ByteDirective_5="ByteDirective_5",e.WordDirective_1="WordDirective_1",e.WordDirective_2="WordDirective_2",e.WordDirective_3="WordDirective_3",e.BlockDirective_1="BlockDirective_1",e.BlockDirective_2="BlockDirective_2",e.BlockDirective_3="BlockDirective_3",e.ByteValue_1="ByteValue_1",e.ByteValue_2="ByteValue_2",e.ByteValue_3="ByteValue_3",e.WordValue="WordValue",e.DataDirective_1="DataDirective_1",e.DataDirective_2="DataDirective_2",e.DataDirective_3="DataDirective_3",e.DataDirective_$0="DataDirective_$0",e.DataDirective_$1="DataDirective_$1",e.DataDirective_$2="DataDirective_$2",e.EscapeSequence_1="EscapeSequence_1",e.EscapeSequence_2="EscapeSequence_2",e.EscapeSequence_3="EscapeSequence_3",e.SimpleEscapeSequence="SimpleEscapeSequence",e.SimpleEscapeSequence_$0_1="SimpleEscapeSequence_$0_1",e.SimpleEscapeSequence_$0_2="SimpleEscapeSequence_$0_2",e.OctalEscapeSequence="OctalEscapeSequence",e.HexadecimalEscapeSequence="HexadecimalEscapeSequence",e.SimpleChar="SimpleChar",e.StringChar="StringChar",e.Char="Char",e.Char_$0_1="Char_$0_1",e.Char_$0_2="Char_$0_2",e.Str="Str",e.Str_$0_1="Str_$0_1",e.Str_$0_2="Str_$0_2",e.Comment="Comment",e.OriginDirective="OriginDirective",e.Filename_1="Filename_1",e.Filename_2="Filename_2",e.IncludeDirective="IncludeDirective",e.OutputDirective="OutputDirective",e.OutputDirective_$0="OutputDirective_$0",e.DeviceDirective="DeviceDirective",e.$EOF="$EOF",e))(x||{});class Ut{constructor(t,n){this.kind="n_1",this.pos=t,this.binary=n,this.value=(()=>S(t,n.raw,2,1))()}}class zt{constructor(t,n){this.kind="n_2",this.pos=t,this.hexadecimal=n,this.value=(()=>S(t,n.raw,16,1))()}}class Wt{constructor(t,n){this.kind="n_3",this.pos=t,this.octal=n,this.value=(()=>S(t,n.raw,8,1))()}}class Xt{constructor(t,n){this.kind="n_4",this.pos=t,this.decimal=n,this.value=(()=>S(t,n.raw,10,1))()}}class Ht{constructor(t,n){this.kind="nn_1",this.pos=t,this.binary=n,this.value=(()=>S(t,n.raw,2,2))()}}class Qt{constructor(t,n){this.kind="nn_2",this.pos=t,this.hexadecimal=n,this.value=(()=>S(t,n.raw,16,2))()}}class Zt{constructor(t,n){this.kind="nn_3",this.pos=t,this.octal=n,this.value=(()=>S(t,n.raw,8,2))()}}class Yt{constructor(t,n){this.kind="nn_4",this.pos=t,this.decimal=n,this.value=(()=>S(t,n.raw,10,2))()}}class Tt{constructor(t){this.kind="b",this.raw=t,this.value=(()=>parseInt(t))()}}class Kt{constructor(t){this.kind="Statement_1",this.inc=t,this.info=(()=>t.info)()}}class dt{constructor(t){this.kind="Statement_2",this.ins=t,this.elements=(()=>t.elements)()}}class $t{constructor(t){this.kind="Statement_3",this.dir=t,this.elements=(()=>t.elements)(),this.address=(()=>t.address)()}}class tn{constructor(t){this.kind="Directive_1",this.data=t,this.elements=(()=>t.elements)(),this.address=(()=>null)()}}class nn{constructor(t){this.kind="Directive_2",this.origin=t,this.elements=(()=>[])(),this.address=(()=>t.address.value)()}}class en{constructor(t){this.kind="Directive_3",this.directive=t,this.elements=(()=>[])(),this.address=(()=>null)()}}class sn{constructor(t){this.kind="Directive_4",this.directive=t,this.elements=(()=>[])(),this.address=(()=>null)()}}class rn{constructor(t){this.kind="Expression",this.e1=t,this.eval=(()=>t.eval)()}}class cn{constructor(t,n){this.kind="BitwiseOrExpression",this.left=t,this.right=n,this.eval=(()=>b(t,n,ot))()}}class un{constructor(t,n){this.kind="BitwiseXOrExpression",this.left=t,this.right=n,this.eval=(()=>b(t,n,at))()}}class ln{constructor(t,n){this.kind="BitwiseAndExpression",this.left=t,this.right=n,this.eval=(()=>b(t,n,ht))()}}class on{constructor(t,n){this.kind="ShiftExpression",this.left=t,this.right=n,this.eval=(()=>D(t,n,{"<<":mt,">>":_t}))()}}class an{constructor(t,n){this.kind="AdditiveExpression",this.left=t,this.right=n,this.eval=(()=>D(t,n,{"+":gt,"-":It}))()}}class hn{constructor(t,n){this.kind="MultiplicativeExpression",this.left=t,this.right=n,this.eval=(()=>D(t,n,{"*":wt,"/":xt,"%":At}))()}}class mn{constructor(t,n){this.kind="UnaryExpression_1",this.op=t,this.e=n,this.eval=(()=>lt(n,t,{"~":St,"+":Lt,"-":ft}))()}}class _n{constructor(t){this.kind="UnaryExpression_2",this.e=t,this.eval=(()=>V(t,J))()}}class gn{constructor(t){this.kind="PrimaryExpression_1",this.nn=t,this.eval=(()=>()=>t.value)()}}class In{constructor(t,n){this.kind="PrimaryExpression_2",this.pos=t,this.label=n,this.eval=(()=>()=>E(n.name))()}}class wn{constructor(t){this.kind="PrimaryExpression_3",this.e=t,this.eval=(()=>V(t,J))()}}class xn{constructor(t,n){this.kind="Load8Instruction_1",this.r0=t,this.r1=n,this.elements=(()=>[64|_(t.reg,3)|_(n.reg)])()}}class An{constructor(t){this.kind="Load8Instruction_2",this.r=t,this.elements=(()=>[70|_(t,3)])()}}class Ln{constructor(t,n,i,s){this.kind="Load8Instruction_3",this.r=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[221,70|_(t,3),l(i,n,s)])()}}class fn{constructor(t,n,i,s){this.kind="Load8Instruction_4",this.r=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[253,70|_(t,3),l(i,n,s)])()}}class Sn{constructor(t){this.kind="Load8Instruction_5",this.r=t,this.elements=(()=>[112|_(t)])()}}class kn{constructor(t,n,i,s){this.kind="Load8Instruction_6",this.s=t,this.pos=n,this.d=i,this.r=s,this.elements=(()=>[221,112|_(s),l(n,t,i)])()}}class Rn{constructor(t,n,i,s){this.kind="Load8Instruction_7",this.s=t,this.pos=n,this.d=i,this.r=s,this.elements=(()=>[253,112|_(s),l(n,t,i)])()}}class En{constructor(t,n){this.kind="Load8Instruction_8",this.pos=t,this.n=n,this.elements=(()=>[54,A(t,n)])()}}class vn{constructor(t,n,i,s,r){this.kind="Load8Instruction_9",this.s=t,this.pos0=n,this.d=i,this.pos1=s,this.n=r,this.elements=(()=>[221,54,l(n,t,i),A(s,r)])()}}class Cn{constructor(t,n,i,s,r){this.kind="Load8Instruction_10",this.s=t,this.pos0=n,this.d=i,this.pos1=s,this.n=r,this.elements=(()=>[253,54,l(n,t,i),A(s,r)])()}}class bn{constructor(){this.kind="Load8Instruction_11",this.elements=(()=>[10])()}}class Dn{constructor(){this.kind="Load8Instruction_12",this.elements=(()=>[26])()}}class Bn{constructor(t,n){this.kind="Load8Instruction_13",this.pos=t,this.ee=n,this.elements=(()=>[58,I(t,n)])()}}class qn{constructor(){this.kind="Load8Instruction_14",this.elements=(()=>[2])()}}class yn{constructor(){this.kind="Load8Instruction_15",this.elements=(()=>[18])()}}class pn{constructor(t,n){this.kind="Load8Instruction_16",this.pos=t,this.ee=n,this.elements=(()=>[50,I(t,n)])()}}class Mn{constructor(){this.kind="Load8Instruction_17",this.elements=(()=>[237,87])()}}class On{constructor(){this.kind="Load8Instruction_18",this.elements=(()=>[237,95])()}}class Pn{constructor(){this.kind="Load8Instruction_19",this.elements=(()=>[237,71])()}}class Nn{constructor(){this.kind="Load8Instruction_20",this.elements=(()=>[237,79])()}}class Vn{constructor(t,n,i){this.kind="Load8Instruction_21",this.r=t,this.pos=n,this.n=i,this.elements=(()=>[6|_(t.reg,3),A(n,i)])()}}class Jn{constructor(t,n){this.kind="Load16Instruction_1",this.pos=t,this.ee=n,this.elements=(()=>[221,42,I(t,n)])()}}class Gn{constructor(t,n){this.kind="Load16Instruction_2",this.pos=t,this.ee=n,this.elements=(()=>[253,42,I(t,n)])()}}class Fn{constructor(t,n){this.kind="Load16Instruction_3",this.pos=t,this.ee=n,this.elements=(()=>[221,33,I(t,n)])()}}class jn{constructor(t,n){this.kind="Load16Instruction_4",this.pos=t,this.ee=n,this.elements=(()=>[253,33,I(t,n)])()}}class Un{constructor(t,n){this.kind="Load16Instruction_5",this.pos=t,this.ee=n,this.elements=(()=>[42,I(t,n)])()}}class zn{constructor(t,n,i){this.kind="Load16Instruction_6",this.dd=t,this.pos=n,this.ee=i,this.elements=(()=>[237,75|v(t,4),I(n,i)])()}}class Wn{constructor(t,n){this.kind="Load16Instruction_7",this.pos=t,this.ee=n,this.elements=(()=>[34,I(t,n)])()}}class Xn{constructor(t,n,i){this.kind="Load16Instruction_8",this.pos=t,this.ee=n,this.dd=i,this.elements=(()=>[237,67|v(i,4),I(t,n)])()}}class Hn{constructor(t,n){this.kind="Load16Instruction_9",this.pos=t,this.ee=n,this.elements=(()=>[221,34,I(t,n)])()}}class Qn{constructor(t,n){this.kind="Load16Instruction_10",this.pos=t,this.ee=n,this.elements=(()=>[253,34,I(t,n)])()}}class Zn{constructor(){this.kind="Load16Instruction_11",this.elements=(()=>[249])()}}class Yn{constructor(){this.kind="Load16Instruction_12",this.elements=(()=>[221,249])()}}class Tn{constructor(){this.kind="Load16Instruction_13",this.elements=(()=>[253,249])()}}class Kn{constructor(t,n,i){this.kind="Load16Instruction_14",this.dd=t,this.pos=n,this.ee=i,this.elements=(()=>[1|v(t,4),I(n,i)])()}}class dn{constructor(t){this.kind="Load16Instruction_15",this.qq=t,this.elements=(()=>[197|O(t,4)])()}}class $n{constructor(){this.kind="Load16Instruction_16",this.elements=(()=>[221,229])()}}class ti{constructor(){this.kind="Load16Instruction_17",this.elements=(()=>[253,229])()}}class ni{constructor(t){this.kind="Load16Instruction_18",this.qq=t,this.elements=(()=>[193|O(t,4)])()}}class ii{constructor(){this.kind="Load16Instruction_19",this.elements=(()=>[221,225])()}}class ei{constructor(){this.kind="Load16Instruction_20",this.elements=(()=>[253,225])()}}class si{constructor(){this.kind="ExchangeInstruction_1",this.elements=(()=>[235])()}}class ri{constructor(){this.kind="ExchangeInstruction_2",this.elements=(()=>[8])()}}class ci{constructor(){this.kind="ExchangeInstruction_3",this.elements=(()=>[217])()}}class ui{constructor(){this.kind="ExchangeInstruction_4",this.elements=(()=>[227])()}}class li{constructor(){this.kind="ExchangeInstruction_5",this.elements=(()=>[221,227])()}}class oi{constructor(){this.kind="ExchangeInstruction_6",this.elements=(()=>[253,227])()}}class ai{constructor(){this.kind="BlockInstruction_1",this.elements=(()=>[237,176])()}}class hi{constructor(){this.kind="BlockInstruction_2",this.elements=(()=>[237,160])()}}class mi{constructor(){this.kind="BlockInstruction_3",this.elements=(()=>[237,184])()}}class _i{constructor(){this.kind="BlockInstruction_4",this.elements=(()=>[237,168])()}}class gi{constructor(){this.kind="BlockInstruction_5",this.elements=(()=>[237,177])()}}class Ii{constructor(){this.kind="BlockInstruction_6",this.elements=(()=>[237,161])()}}class wi{constructor(){this.kind="BlockInstruction_7",this.elements=(()=>[237,185])()}}class xi{constructor(){this.kind="BlockInstruction_8",this.elements=(()=>[237,169])()}}class Ai{constructor(){this.kind="ArithmeticLogic8Instruction_1",this.elements=(()=>[134])()}}class Li{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_2",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,134,l(n,t,i)])()}}class fi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_3",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,134,l(n,t,i)])()}}class Si{constructor(t){this.kind="ArithmeticLogic8Instruction_4",this.r=t,this.elements=(()=>[128|_(t)])()}}class ki{constructor(t,n){this.kind="ArithmeticLogic8Instruction_5",this.pos=t,this.n=n,this.elements=(()=>[198,A(t,n)])()}}class Ri{constructor(){this.kind="ArithmeticLogic8Instruction_6",this.elements=(()=>[142])()}}class Ei{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_7",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,142,l(n,t,i)])()}}class vi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_8",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,142,l(n,t,i)])()}}class Ci{constructor(t){this.kind="ArithmeticLogic8Instruction_9",this.r=t,this.elements=(()=>[136|_(t)])()}}class bi{constructor(t,n){this.kind="ArithmeticLogic8Instruction_10",this.pos=t,this.n=n,this.elements=(()=>[206,A(t,n)])()}}class Di{constructor(){this.kind="ArithmeticLogic8Instruction_11",this.elements=(()=>[150])()}}class Bi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_12",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,150,l(n,t,i)])()}}class qi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_13",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,150,l(n,t,i)])()}}class yi{constructor(t){this.kind="ArithmeticLogic8Instruction_14",this.r=t,this.elements=(()=>[144|_(t)])()}}class pi{constructor(t,n){this.kind="ArithmeticLogic8Instruction_15",this.pos=t,this.n=n,this.elements=(()=>[214,A(t,n)])()}}class Mi{constructor(){this.kind="ArithmeticLogic8Instruction_16",this.elements=(()=>[158])()}}class Oi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_17",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,158,l(n,t,i)])()}}class Pi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_18",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,158,l(n,t,i)])()}}class Ni{constructor(t){this.kind="ArithmeticLogic8Instruction_19",this.r=t,this.elements=(()=>[152|_(t)])()}}class Vi{constructor(t,n){this.kind="ArithmeticLogic8Instruction_20",this.pos=t,this.n=n,this.elements=(()=>[222,A(t,n)])()}}class Ji{constructor(){this.kind="ArithmeticLogic8Instruction_21",this.elements=(()=>[166])()}}class Gi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_22",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,166,l(n,t,i)])()}}class Fi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_23",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,166,l(n,t,i)])()}}class ji{constructor(t){this.kind="ArithmeticLogic8Instruction_24",this.r=t,this.elements=(()=>[160|_(t)])()}}class Ui{constructor(t,n){this.kind="ArithmeticLogic8Instruction_25",this.pos=t,this.n=n,this.elements=(()=>[230,A(t,n)])()}}class zi{constructor(){this.kind="ArithmeticLogic8Instruction_26",this.elements=(()=>[182])()}}class Wi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_27",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,182,l(n,t,i)])()}}class Xi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_28",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,182,l(n,t,i)])()}}class Hi{constructor(t){this.kind="ArithmeticLogic8Instruction_29",this.r=t,this.elements=(()=>[176|_(t)])()}}class Qi{constructor(t,n){this.kind="ArithmeticLogic8Instruction_30",this.pos=t,this.n=n,this.elements=(()=>[246,A(t,n)])()}}class Zi{constructor(){this.kind="ArithmeticLogic8Instruction_31",this.elements=(()=>[174])()}}class Yi{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_32",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,174,l(n,t,i)])()}}class Ti{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_33",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,174,l(n,t,i)])()}}class Ki{constructor(t){this.kind="ArithmeticLogic8Instruction_34",this.r=t,this.elements=(()=>[168|_(t)])()}}class di{constructor(t,n){this.kind="ArithmeticLogic8Instruction_35",this.pos=t,this.n=n,this.elements=(()=>[238,A(t,n)])()}}class $i{constructor(){this.kind="ArithmeticLogic8Instruction_36",this.elements=(()=>[190])()}}class te{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_37",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,190,l(n,t,i)])()}}class ne{constructor(t,n,i){this.kind="ArithmeticLogic8Instruction_38",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,190,l(n,t,i)])()}}class ie{constructor(t){this.kind="ArithmeticLogic8Instruction_39",this.r=t,this.elements=(()=>[184|_(t)])()}}class ee{constructor(t,n){this.kind="ArithmeticLogic8Instruction_40",this.pos=t,this.n=n,this.elements=(()=>[254,A(t,n)])()}}class se{constructor(t){this.kind="IncrementDecrement8Instruction_1",this.r=t,this.elements=(()=>[4|_(t,3)])()}}class re{constructor(){this.kind="IncrementDecrement8Instruction_2",this.elements=(()=>[52])()}}class ce{constructor(t,n,i){this.kind="IncrementDecrement8Instruction_3",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,52,l(n,t,i)])()}}class ue{constructor(t,n,i){this.kind="IncrementDecrement8Instruction_4",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,52,l(n,t,i)])()}}class le{constructor(t){this.kind="IncrementDecrement8Instruction_5",this.r=t,this.elements=(()=>[5|_(t,3)])()}}class oe{constructor(){this.kind="IncrementDecrement8Instruction_6",this.elements=(()=>[53])()}}class ae{constructor(t,n,i){this.kind="IncrementDecrement8Instruction_7",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,53,l(n,t,i)])()}}class he{constructor(t,n,i){this.kind="IncrementDecrement8Instruction_8",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,53,l(n,t,i)])()}}class me{constructor(){this.kind="GeneralPurposeArithmeticInstruction_1",this.elements=(()=>[39])()}}class _e{constructor(){this.kind="GeneralPurposeArithmeticInstruction_2",this.elements=(()=>[47])()}}class ge{constructor(){this.kind="GeneralPurposeArithmeticInstruction_3",this.elements=(()=>[237,68])()}}class Ie{constructor(){this.kind="GeneralPurposeArithmeticInstruction_4",this.elements=(()=>[63])()}}class we{constructor(){this.kind="GeneralPurposeArithmeticInstruction_5",this.elements=(()=>[55])()}}class xe{constructor(){this.kind="CpuControlGroupInstruction_1",this.elements=(()=>[0])()}}class Ae{constructor(){this.kind="CpuControlGroupInstruction_2",this.elements=(()=>[118])()}}class Le{constructor(){this.kind="CpuControlGroupInstruction_3",this.elements=(()=>[243])()}}class fe{constructor(){this.kind="CpuControlGroupInstruction_4",this.elements=(()=>[251])()}}class Se{constructor(t){this.kind="CpuControlGroupInstruction_5",this.m=t,this.elements=(()=>[237,K(t)])()}}class ke{constructor(t){this.kind="ArithmeticLogic16Instruction_1",this.ss=t,this.elements=(()=>[9|k(t,4)])()}}class Re{constructor(t){this.kind="ArithmeticLogic16Instruction_2",this.ss=t,this.elements=(()=>[237,74|k(t,4)])()}}class Ee{constructor(t){this.kind="ArithmeticLogic16Instruction_3",this.ss=t,this.elements=(()=>[237,66|k(t,4)])()}}class ve{constructor(t){this.kind="ArithmeticLogic16Instruction_4",this.pp=t,this.elements=(()=>[221,9|Z(t,4)])()}}class Ce{constructor(t){this.kind="ArithmeticLogic16Instruction_5",this.rr=t,this.elements=(()=>[253,9|Y(t,4)])()}}class be{constructor(t){this.kind="ArithmeticLogic16Instruction_6",this.ss=t,this.elements=(()=>[3|k(t,4)])()}}class De{constructor(){this.kind="ArithmeticLogic16Instruction_7",this.elements=(()=>[221,35])()}}class Be{constructor(){this.kind="ArithmeticLogic16Instruction_8",this.elements=(()=>[253,35])()}}class qe{constructor(t){this.kind="ArithmeticLogic16Instruction_9",this.ss=t,this.elements=(()=>[11|k(t,4)])()}}class ye{constructor(){this.kind="ArithmeticLogic16Instruction_10",this.elements=(()=>[221,43])()}}class pe{constructor(){this.kind="ArithmeticLogic16Instruction_11",this.elements=(()=>[253,43])()}}class Me{constructor(){this.kind="RotateShiftInstruction_1",this.elements=(()=>[7])()}}class Oe{constructor(){this.kind="RotateShiftInstruction_2",this.elements=(()=>[23])()}}class Pe{constructor(){this.kind="RotateShiftInstruction_3",this.elements=(()=>[15])()}}class Ne{constructor(){this.kind="RotateShiftInstruction_4",this.elements=(()=>[31])()}}class Ve{constructor(t){this.kind="RotateShiftInstruction_5",this.r=t,this.elements=(()=>[203,0|_(t)])()}}class Je{constructor(){this.kind="RotateShiftInstruction_6",this.elements=(()=>[203,6])()}}class Ge{constructor(t,n,i){this.kind="RotateShiftInstruction_7",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),6])()}}class Fe{constructor(t,n,i){this.kind="RotateShiftInstruction_8",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),6])()}}class je{constructor(t){this.kind="RotateShiftInstruction_9",this.r=t,this.elements=(()=>[203,16|_(t)])()}}class Ue{constructor(){this.kind="RotateShiftInstruction_10",this.elements=(()=>[203,22])()}}class ze{constructor(t,n,i){this.kind="RotateShiftInstruction_11",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),22])()}}class We{constructor(t,n,i){this.kind="RotateShiftInstruction_12",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),22])()}}class Xe{constructor(t){this.kind="RotateShiftInstruction_13",this.r=t,this.elements=(()=>[203,8|_(t)])()}}class He{constructor(){this.kind="RotateShiftInstruction_14",this.elements=(()=>[203,14])()}}class Qe{constructor(t,n,i){this.kind="RotateShiftInstruction_15",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),14])()}}class Ze{constructor(t,n,i){this.kind="RotateShiftInstruction_16",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),14])()}}class Ye{constructor(t){this.kind="RotateShiftInstruction_17",this.r=t,this.elements=(()=>[203,24|_(t)])()}}class Te{constructor(){this.kind="RotateShiftInstruction_18",this.elements=(()=>[203,30])()}}class Ke{constructor(t,n,i){this.kind="RotateShiftInstruction_19",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),30])()}}class de{constructor(t,n,i){this.kind="RotateShiftInstruction_20",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),30])()}}class $e{constructor(t){this.kind="RotateShiftInstruction_21",this.r=t,this.elements=(()=>[203,32|_(t)])()}}class ts{constructor(){this.kind="RotateShiftInstruction_22",this.elements=(()=>[203,38])()}}class ns{constructor(t,n,i){this.kind="RotateShiftInstruction_23",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),38])()}}class is{constructor(t,n,i){this.kind="RotateShiftInstruction_24",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),38])()}}class es{constructor(t){this.kind="RotateShiftInstruction_25",this.r=t,this.elements=(()=>[203,40|_(t)])()}}class ss{constructor(){this.kind="RotateShiftInstruction_26",this.elements=(()=>[203,46])()}}class rs{constructor(t,n,i){this.kind="RotateShiftInstruction_27",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),46])()}}class cs{constructor(t,n,i){this.kind="RotateShiftInstruction_28",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),46])()}}class us{constructor(t){this.kind="RotateShiftInstruction_29",this.r=t,this.elements=(()=>[203,56|_(t)])()}}class ls{constructor(){this.kind="RotateShiftInstruction_30",this.elements=(()=>[203,62])()}}class os{constructor(t,n,i){this.kind="RotateShiftInstruction_31",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[221,203,l(n,t,i),62])()}}class as{constructor(t,n,i){this.kind="RotateShiftInstruction_32",this.s=t,this.pos=n,this.d=i,this.elements=(()=>[253,203,l(n,t,i),62])()}}class hs{constructor(){this.kind="RotateShiftInstruction_33",this.elements=(()=>[237,111])()}}class ms{constructor(){this.kind="RotateShiftInstruction_34",this.elements=(()=>[237,103])()}}class _s{constructor(t,n){this.kind="BitManipulationInstruction_1",this.b=t,this.r=n,this.elements=(()=>[203,64|t.value<<3|_(n)])()}}class gs{constructor(t){this.kind="BitManipulationInstruction_2",this.b=t,this.elements=(()=>[203,70|t.value<<3])()}}class Is{constructor(t,n,i,s){this.kind="BitManipulationInstruction_3",this.b=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[221,203,l(i,n,s),70|t.value<<3])()}}class ws{constructor(t,n,i,s){this.kind="BitManipulationInstruction_4",this.b=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[253,203,l(i,n,s),70|t.value<<3])()}}class xs{constructor(t,n){this.kind="BitManipulationInstruction_5",this.b=t,this.r=n,this.elements=(()=>[203,192|t.value<<3|_(n)])()}}class As{constructor(t){this.kind="BitManipulationInstruction_6",this.b=t,this.elements=(()=>[203,198|t.value<<3])()}}class Ls{constructor(t,n,i,s){this.kind="BitManipulationInstruction_7",this.b=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[221,203,l(i,n,s),198|t.value<<3])()}}class fs{constructor(t,n,i,s){this.kind="BitManipulationInstruction_8",this.b=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[253,203,l(i,n,s),198|t.value<<3])()}}class Ss{constructor(t,n){this.kind="BitManipulationInstruction_9",this.b=t,this.r=n,this.elements=(()=>[203,128|t.value<<3|_(n)])()}}class ks{constructor(t){this.kind="BitManipulationInstruction_10",this.b=t,this.elements=(()=>[203,134|t.value<<3])()}}class Rs{constructor(t,n,i,s){this.kind="BitManipulationInstruction_11",this.b=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[221,203,l(i,n,s),134|t.value<<3])()}}class Es{constructor(t,n,i,s){this.kind="BitManipulationInstruction_12",this.b=t,this.s=n,this.pos=i,this.d=s,this.elements=(()=>[253,203,l(i,n,s),134|t.value<<3])()}}class vs{constructor(t,n){this.kind="Offset_1",this.pos=t,this.label=n,this.eval=(()=>()=>E(n.name))()}}class Cs{constructor(t){this.kind="Offset_2",this.e=t,this.eval=(()=>t.eval)()}}class bs{constructor(){this.kind="JumpInstruction_1",this.elements=(()=>[233])()}}class Ds{constructor(){this.kind="JumpInstruction_2",this.elements=(()=>[221,233])()}}class Bs{constructor(){this.kind="JumpInstruction_3",this.elements=(()=>[253,233])()}}class qs{constructor(t,n){this.kind="JumpInstruction_4",this.pos=t,this.ee=n,this.elements=(()=>[195,I(t,n)])()}}class ys{constructor(t,n,i){this.kind="JumpInstruction_5",this.cc=t,this.pos=n,this.ee=i,this.elements=(()=>[194|C(t,3),I(n,i)])()}}class ps{constructor(t,n){this.kind="JumpInstruction_6",this.pos=t,this.label=n,this.elements=(()=>[R(),q(t,n.name)])()}}class Ms{constructor(t,n){this.kind="JumpInstruction_7",this.pos=t,this.e=n,this.elements=(()=>[R(),B(t,n)])()}}class Os{constructor(t,n,i){this.kind="JumpInstruction_8",this.jj=t,this.pos=n,this.label=i,this.elements=(()=>[R(t),q(n,i.name)])()}}class Ps{constructor(t,n,i){this.kind="JumpInstruction_9",this.jj=t,this.pos=n,this.e=i,this.elements=(()=>[R(t),B(n,i)])()}}class Ns{constructor(t,n){this.kind="JumpInstruction_10",this.pos=t,this.label=n,this.elements=(()=>[16,q(t,n.name)])()}}class Vs{constructor(t,n){this.kind="JumpInstruction_11",this.pos=t,this.e=n,this.elements=(()=>[16,B(t,n)])()}}class Js{constructor(t,n){this.kind="CallInstruction_1",this.pos=t,this.ee=n,this.elements=(()=>[205,I(t,n)])()}}class Gs{constructor(t,n,i){this.kind="CallInstruction_2",this.cc=t,this.pos=n,this.ee=i,this.elements=(()=>[196|C(t,3),I(n,i)])()}}class Fs{constructor(){this.kind="ReturnInstruction_1",this.elements=(()=>[201])()}}class js{constructor(t){this.kind="ReturnInstruction_2",this.cc=t,this.elements=(()=>[192|C(t,3)])()}}class Us{constructor(){this.kind="ReturnInstruction_3",this.elements=(()=>[237,77])()}}class zs{constructor(){this.kind="ReturnInstruction_4",this.elements=(()=>[237,69])()}}class Ws{constructor(t){this.kind="ReturnInstruction_5",this.p=t,this.elements=(()=>[199|T(t.value,3)])()}}class Xs{constructor(t){this.kind="InputInstruction_1",this.r=t,this.elements=(()=>[237,64|_(t,3)])()}}class Hs{constructor(t,n){this.kind="InputInstruction_2",this.pos=t,this.n=n,this.elements=(()=>[219,A(t,n)])()}}class Qs{constructor(){this.kind="InputInstruction_3",this.elements=(()=>[237,162])()}}class Zs{constructor(){this.kind="InputInstruction_4",this.elements=(()=>[237,178])()}}class Ys{constructor(){this.kind="InputInstruction_5",this.elements=(()=>[237,170])()}}class Ts{constructor(){this.kind="InputInstruction_6",this.elements=(()=>[237,186])()}}class Ks{constructor(t){this.kind="OutputInstruction_1",this.r=t,this.elements=(()=>[237,65|_(t,3)])()}}class ds{constructor(t,n){this.kind="OutputInstruction_2",this.pos=t,this.n=n,this.elements=(()=>[211,A(t,n)])()}}class $s{constructor(){this.kind="OutputInstruction_3",this.elements=(()=>[237,163])()}}class tr{constructor(){this.kind="OutputInstruction_4",this.elements=(()=>[237,179])()}}class nr{constructor(){this.kind="OutputInstruction_5",this.elements=(()=>[237,171])()}}class ir{constructor(){this.kind="OutputInstruction_6",this.elements=(()=>[237,187])()}}class er{constructor(t){this.kind="ByteValue_1",this.c=t,this.elements=(()=>t.elements)()}}class sr{constructor(t){this.kind="ByteValue_2",this.s=t,this.elements=(()=>t.elements)()}}class rr{constructor(t,n){this.kind="ByteValue_3",this.pos=t,this.e=n,this.elements=(()=>[A(t,n)])()}}class cr{constructor(t,n){this.kind="WordValue",this.pos=t,this.e=n,this.elements=(()=>[I(t,n)])()}}class ur{constructor(t,n,i){this.kind="DataDirective_1",this.pos0=t,this.data0=n,this.data=i,this.elements=(()=>kt(t,n,i))()}}class lr{constructor(t,n,i){this.kind="DataDirective_2",this.pos0=t,this.data0=n,this.data=i,this.elements=(()=>Rt(t,n,i))()}}class or{constructor(t,n,i){this.kind="DataDirective_3",this.pos0=t,this.nn=n,this.data=i,this.elements=(()=>[Et(t,n,i?.pos1,i?.b)])()}}class ar{constructor(t,n){this.kind="SimpleEscapeSequence",this.pos=t,this.raw=n,this.elements=(()=>Gt(t,n))()}}class hr{constructor(t,n){this.kind="OctalEscapeSequence",this.pos=t,this.raw=n,this.elements=(()=>Ft(t,n))()}}class mr{constructor(t,n){this.kind="HexadecimalEscapeSequence",this.pos=t,this.raw=n,this.elements=(()=>jt(t,n))()}}class _r{constructor(t,n){this.kind="SimpleChar",this.pos=t,this.raw=n,this.elements=(()=>H(t,n))()}}class gr{constructor(t,n){this.kind="StringChar",this.pos=t,this.raw=n,this.elements=(()=>H(t,n))()}}class Ir{constructor(t){this.kind="Char",this.char=t,this.elements=(()=>t.elements)()}}class wr{constructor(t,n){this.kind="Str",this.pos=t,this.chars=n,this.elements=(()=>n.reduce((i,s)=>i.concat(s.elements),[]))()}}class xr{constructor(t,n){this.kind="IncludeDirective",this.pos=t,this.name=n,this.info=(()=>X(t,n.raw))()}}class Ar{constructor(t,n){this.kind="OutputDirective",this.name=t,this.sld=n,this.void=(()=>{z(t.raw,n?.name.raw)})()}}class Lr{constructor(t){this.kind="DeviceDirective",this.raw=t,this.void=(()=>{W(t)})()}}class fr{constructor(t){this.negating=!1,this.memoSafe=!0,this.$scope$BitwiseOrExpression$memo=new Map,this.$scope$BitwiseXOrExpression$memo=new Map,this.$scope$BitwiseAndExpression$memo=new Map,this.$scope$ShiftExpression$memo=new Map,this.$scope$AdditiveExpression$memo=new Map,this.$scope$MultiplicativeExpression$memo=new Map,this.pos={overallPos:0,line:1,offset:0},this.input=t}reset(t){this.pos=t}finished(){return this.pos.overallPos===this.input.length}clearMemos(){this.$scope$BitwiseOrExpression$memo.clear(),this.$scope$BitwiseXOrExpression$memo.clear(),this.$scope$BitwiseAndExpression$memo.clear(),this.$scope$ShiftExpression$memo.clear(),this.$scope$AdditiveExpression$memo.clear(),this.$scope$MultiplicativeExpression$memo.clear()}matchstart(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchLines(t+1,n))!==null&&this.match$EOF(n)!==null&&(s={kind:"start",lines:i}),s})}matchr(t,n){return this.choice([()=>this.matchr_1(t+1,n),()=>this.matchr_2(t+1,n),()=>this.matchr_3(t+1,n),()=>this.matchr_4(t+1,n),()=>this.matchr_5(t+1,n),()=>this.matchr_6(t+1,n),()=>this.matchr_7(t+1,n)])}matchr_1(t,n){return this.regexAccept(String.raw`(?:a)`,t+1,n)}matchr_2(t,n){return this.regexAccept(String.raw`(?:b)`,t+1,n)}matchr_3(t,n){return this.regexAccept(String.raw`(?:c)`,t+1,n)}matchr_4(t,n){return this.regexAccept(String.raw`(?:d)`,t+1,n)}matchr_5(t,n){return this.regexAccept(String.raw`(?:e)`,t+1,n)}matchr_6(t,n){return this.regexAccept(String.raw`(?:h)`,t+1,n)}matchr_7(t,n){return this.regexAccept(String.raw`(?:l)`,t+1,n)}matchdd(t,n){return this.choice([()=>this.matchdd_1(t+1,n),()=>this.matchdd_2(t+1,n),()=>this.matchdd_3(t+1,n),()=>this.matchdd_4(t+1,n)])}matchdd_1(t,n){return this.regexAccept(String.raw`(?:bc)`,t+1,n)}matchdd_2(t,n){return this.regexAccept(String.raw`(?:de)`,t+1,n)}matchdd_3(t,n){return this.regexAccept(String.raw`(?:hl)`,t+1,n)}matchdd_4(t,n){return this.regexAccept(String.raw`(?:sp)`,t+1,n)}matchss(t,n){return this.matchdd(t+1,n)}matchqq(t,n){return this.choice([()=>this.matchqq_1(t+1,n),()=>this.matchqq_2(t+1,n),()=>this.matchqq_3(t+1,n),()=>this.matchqq_4(t+1,n)])}matchqq_1(t,n){return this.regexAccept(String.raw`(?:bc)`,t+1,n)}matchqq_2(t,n){return this.regexAccept(String.raw`(?:de)`,t+1,n)}matchqq_3(t,n){return this.regexAccept(String.raw`(?:hl)`,t+1,n)}matchqq_4(t,n){return this.regexAccept(String.raw`(?:af)`,t+1,n)}matchpp(t,n){return this.choice([()=>this.matchpp_1(t+1,n),()=>this.matchpp_2(t+1,n),()=>this.matchpp_3(t+1,n),()=>this.matchpp_4(t+1,n)])}matchpp_1(t,n){return this.regexAccept(String.raw`(?:bc)`,t+1,n)}matchpp_2(t,n){return this.regexAccept(String.raw`(?:de)`,t+1,n)}matchpp_3(t,n){return this.regexAccept(String.raw`(?:ix)`,t+1,n)}matchpp_4(t,n){return this.regexAccept(String.raw`(?:sp)`,t+1,n)}matchrr(t,n){return this.choice([()=>this.matchrr_1(t+1,n),()=>this.matchrr_2(t+1,n),()=>this.matchrr_3(t+1,n),()=>this.matchrr_4(t+1,n)])}matchrr_1(t,n){return this.regexAccept(String.raw`(?:bc)`,t+1,n)}matchrr_2(t,n){return this.regexAccept(String.raw`(?:de)`,t+1,n)}matchrr_3(t,n){return this.regexAccept(String.raw`(?:iy)`,t+1,n)}matchrr_4(t,n){return this.regexAccept(String.raw`(?:sp)`,t+1,n)}matchn(t,n){return this.choice([()=>this.matchn_1(t+1,n),()=>this.matchn_2(t+1,n),()=>this.matchn_3(t+1,n),()=>this.matchn_4(t+1,n)])}matchn_1(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchbinary(t+1,n))!==null&&(r=new Ut(i,s)),r})}matchn_2(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchhexadecimal(t+1,n))!==null&&(r=new zt(i,s)),r})}matchn_3(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchoctal(t+1,n))!==null&&(r=new Wt(i,s)),r})}matchn_4(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchdecimal(t+1,n))!==null&&(r=new Xt(i,s)),r})}matchnn(t,n){return this.choice([()=>this.matchnn_1(t+1,n),()=>this.matchnn_2(t+1,n),()=>this.matchnn_3(t+1,n),()=>this.matchnn_4(t+1,n)])}matchnn_1(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchbinary(t+1,n))!==null&&(r=new Ht(i,s)),r})}matchnn_2(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchhexadecimal(t+1,n))!==null&&(r=new Qt(i,s)),r})}matchnn_3(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchoctal(t+1,n))!==null&&(r=new Zt(i,s)),r})}matchnn_4(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchdecimal(t+1,n))!==null&&(r=new Yt(i,s)),r})}matchdecimal(t,n){return this.run(t,()=>{let i,s=null;return(i=this.regexAccept(String.raw`(?:[0-9]+)`,t+1,n))!==null&&(this.regexAccept(String.raw`(?:d)`,t+1,n)||!0)&&(s={kind:"decimal",raw:i}),s})}matchbinary(t,n){return this.run(t,()=>{let i,s=null;return this.matchbinary_$0(t+1,n)!==null&&(i=this.regexAccept(String.raw`(?:[0-1]+)`,t+1,n))!==null&&(s={kind:"binary",raw:i}),s})}matchbinary_$0(t,n){return this.choice([()=>this.matchbinary_$0_1(t+1,n),()=>this.matchbinary_$0_2(t+1,n)])}matchbinary_$0_1(t,n){return this.regexAccept(String.raw`(?:0b)`,t+1,n)}matchbinary_$0_2(t,n){return this.regexAccept(String.raw`(?:%)`,t+1,n)}matchoctal(t,n){return this.choice([()=>this.matchoctal_1(t+1,n),()=>this.matchoctal_2(t+1,n)])}matchoctal_1(t,n){return this.run(t,()=>{let i,s=null;return this.matchoctal_$0(t+1,n)!==null&&(i=this.regexAccept(String.raw`(?:[0-7]+)`,t+1,n))!==null&&(s={kind:"octal_1",raw:i}),s})}matchoctal_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.regexAccept(String.raw`(?:[0-7]+)`,t+1,n))!==null&&this.matchoctal_$1(t+1,n)!==null&&(s={kind:"octal_2",raw:i}),s})}matchoctal_$0(t,n){return this.choice([()=>this.matchoctal_$0_1(t+1,n),()=>this.matchoctal_$0_2(t+1,n)])}matchoctal_$0_1(t,n){return this.regexAccept(String.raw`(?:0q)`,t+1,n)}matchoctal_$0_2(t,n){return this.regexAccept(String.raw`(?:0o)`,t+1,n)}matchoctal_$1(t,n){return this.choice([()=>this.matchoctal_$1_1(t+1,n),()=>this.matchoctal_$1_2(t+1,n)])}matchoctal_$1_1(t,n){return this.regexAccept(String.raw`(?:q)`,t+1,n)}matchoctal_$1_2(t,n){return this.regexAccept(String.raw`(?:o)`,t+1,n)}matchhexadecimal(t,n){return this.choice([()=>this.matchhexadecimal_1(t+1,n),()=>this.matchhexadecimal_2(t+1,n)])}matchhexadecimal_1(t,n){return this.run(t,()=>{let i,s=null;return this.matchhexadecimal_$0(t+1,n)!==null&&(i=this.regexAccept(String.raw`(?:[0-9a-f]+)`,t+1,n))!==null&&(s={kind:"hexadecimal_1",raw:i}),s})}matchhexadecimal_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.regexAccept(String.raw`(?:[0-9][0-9a-f]?)`,t+1,n))!==null&&this.regexAccept(String.raw`(?:h)`,t+1,n)!==null&&(s={kind:"hexadecimal_2",raw:i}),s})}matchhexadecimal_$0(t,n){return this.choice([()=>this.matchhexadecimal_$0_1(t+1,n),()=>this.matchhexadecimal_$0_2(t+1,n),()=>this.matchhexadecimal_$0_3(t+1,n)])}matchhexadecimal_$0_1(t,n){return this.regexAccept(String.raw`(?:0x)`,t+1,n)}matchhexadecimal_$0_2(t,n){return this.regexAccept(String.raw`(?:\$)`,t+1,n)}matchhexadecimal_$0_3(t,n){return this.regexAccept(String.raw`(?:#)`,t+1,n)}matchd(t,n){return this.matchn(t+1,n)}matche(t,n){return this.matchn(t+1,n)}matchp(t,n){return this.matchn(t+1,n)}matchb(t,n){return this.run(t,()=>{let i,s=null;return(i=this.regexAccept(String.raw`(?:[0-7])`,t+1,n))!==null&&(s=new Tt(i)),s})}matchcc(t,n){return this.choice([()=>this.matchcc_1(t+1,n),()=>this.matchcc_2(t+1,n),()=>this.matchcc_3(t+1,n),()=>this.matchcc_4(t+1,n),()=>this.matchcc_5(t+1,n),()=>this.matchcc_6(t+1,n),()=>this.matchcc_7(t+1,n),()=>this.matchcc_8(t+1,n),()=>this.matchcc_9(t+1,n)])}matchcc_1(t,n){return this.regexAccept(String.raw`(?:nz)`,t+1,n)}matchcc_2(t,n){return this.regexAccept(String.raw`(?:z)`,t+1,n)}matchcc_3(t,n){return this.regexAccept(String.raw`(?:nc)`,t+1,n)}matchcc_4(t,n){return this.regexAccept(String.raw`(?:c)`,t+1,n)}matchcc_5(t,n){return this.regexAccept(String.raw`(?:po)`,t+1,n)}matchcc_6(t,n){return this.regexAccept(String.raw`(?:pe)`,t+1,n)}matchcc_7(t,n){return this.regexAccept(String.raw`(?:p)`,t+1,n)}matchcc_8(t,n){return this.regexAccept(String.raw`(?:m)`,t+1,n)}matchcc_9(t,n){return this.regexAccept(String.raw`(?:s)`,t+1,n)}matchjj(t,n){return this.choice([()=>this.matchjj_1(t+1,n),()=>this.matchjj_2(t+1,n),()=>this.matchjj_3(t+1,n),()=>this.matchjj_4(t+1,n)])}matchjj_1(t,n){return this.regexAccept(String.raw`(?:c)`,t+1,n)}matchjj_2(t,n){return this.regexAccept(String.raw`(?:nc)`,t+1,n)}matchjj_3(t,n){return this.regexAccept(String.raw`(?:z)`,t+1,n)}matchjj_4(t,n){return this.regexAccept(String.raw`(?:nz)`,t+1,n)}match__(t,n){return this.regexAccept(String.raw`(?:[ \t]+)`,t+1,n)}match_(t,n){return this.regexAccept(String.raw`(?:[ \t]*)`,t+1,n)}matcheos(t,n){return this.regexAccept(String.raw`(?:[ \t]*(;|\r\n|\n|//))`,t+1,n)}matcheol(t,n){return this.regexAccept(String.raw`(?:\r\n|\n)`,t+1,n)}matchLines(t,n){return this.loop(()=>this.matchLine(t+1,n),!0)}matchLine(t,n){return this.choice([()=>this.matchLine_1(t+1,n),()=>this.matchLine_2(t+1,n)])}matchLine_1(t,n){return this.matchLineEqual(t+1,n)}matchLine_2(t,n){return this.matchLineStatement(t+1,n)}matchLineEqual(t,n){return this.run(t,()=>{let i,s,r,c=null;return(i=this.matchLabelDeclaration(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.matchEqualDirective(t+1,n))!==null&&this.match_(t+1,n)!==null&&((r=this.matchComment(t+1,n))||!0)&&this.matcheol(t+1,n)!==null&&(c={kind:"LineEqual",label:i,equal:s,comment:r}),c})}matchLineStatement(t,n){return this.run(t,()=>{let i,s,r,c=null;return((i=this.matchLabelDeclaration(t+1,n))||!0)&&this.match_(t+1,n)!==null&&((s=this.matchStatement(t+1,n))||!0)&&this.match_(t+1,n)!==null&&((r=this.matchComment(t+1,n))||!0)&&this.matcheol(t+1,n)!==null&&(c={kind:"LineStatement",label:i,statement:s,comment:r}),c})}matchStatement(t,n){return this.choice([()=>this.matchStatement_1(t+1,n),()=>this.matchStatement_2(t+1,n),()=>this.matchStatement_3(t+1,n)])}matchStatement_1(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchIncludeDirective(t+1,n))!==null&&(s=new Kt(i)),s})}matchStatement_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchInstruction(t+1,n))!==null&&(s=new dt(i)),s})}matchStatement_3(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchDirective(t+1,n))!==null&&(s=new $t(i)),s})}matchEqualDirective(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:\.?equ|eq)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchExpression(t+1,n))!==null&&(s={kind:"EqualDirective",e:i}),s})}matchDirective(t,n){return this.choice([()=>this.matchDirective_1(t+1,n),()=>this.matchDirective_2(t+1,n),()=>this.matchDirective_3(t+1,n),()=>this.matchDirective_4(t+1,n)])}matchDirective_1(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchDataDirective(t+1,n))!==null&&(s=new tn(i)),s})}matchDirective_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchOriginDirective(t+1,n))!==null&&(s=new nn(i)),s})}matchDirective_3(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchOutputDirective(t+1,n))!==null&&(s=new en(i)),s})}matchDirective_4(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchDeviceDirective(t+1,n))!==null&&(s=new sn(i)),s})}matchForbiddenNames(t,n){return this.choice([()=>this.matchForbiddenNames_1(t+1,n),()=>this.matchForbiddenNames_2(t+1,n),()=>this.matchForbiddenNames_3(t+1,n),()=>this.matchForbiddenNames_4(t+1,n),()=>this.matchForbiddenNames_5(t+1,n)])}matchForbiddenNames_1(t,n){return this.regexAccept(String.raw`(?:block|.\?equ|\.?org|\.?include|\.?output|\.?device)`,t+1,n)}matchForbiddenNames_2(t,n){return this.regexAccept(String.raw`(?:byte|call|cpdr|cpir|defb|defm|defs|defw|djnz|eq|halt|indr|inir|lddr|ldir|otdr|otir|outd|outi|push|reti|retn|rlca|rrca|word)`,t+1,n)}matchForbiddenNames_3(t,n){return this.regexAccept(String.raw`(?:adc|add|and|bit|ccf|cpd|cpi|cpl|daa|dec|exx|inc|ind|ini|ldd|ldi|neg|nop|org|out|pop|res|ret|rla)`,t+1,n)}matchForbiddenNames_4(t,n){return this.regexAccept(String.raw`(?:rlc|rld|rra|rrc|rrd|rst|sbc|scf|set|sla|sra|srl|sub|xor)`,t+1,n)}matchForbiddenNames_5(t,n){return this.regexAccept(String.raw`(?:cp|db|di|dm|ds|dw|ei|eq|ex|im|in|jp|jr|ld|or|rl|rr)`,t+1,n)}matchForbiddenLabel(t,n){return this.run(t,()=>{let i=null;return this.matchForbiddenNames(t+1,n)!==null&&this.regexAccept(String.raw`(?:[ \t:\r\n])`,t+1,n)!==null&&(i={kind:"ForbiddenLabel"}),i})}matchLabel(t,n){return this.run(t,()=>{let i,s,r=null;return this.negate(()=>this.matchForbiddenLabel(t+1,n))!==null&&(i=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[a-z_][a-z0-9_!\?#@\.\$]*)`,t+1,n))!==null&&(r={kind:"Label",pos:i,name:s}),r})}matchLabelDeclaration(t,n){return this.run(t,()=>{let i,s,r=null;return this.negate(()=>this.matchForbiddenLabel(t+1,n))!==null&&(i=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[a-z_][a-z0-9_!\?#@\.\$]*)`,t+1,n))!==null&&(this.regexAccept(String.raw`(?:\:)`,t+1,n)||!0)&&(r={kind:"LabelDeclaration",pos:i,name:s}),r})}matchExpression(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchBitwiseOrExpression(t+1,n))!==null&&(s=new rn(i)),s})}matchBitwiseOrExpression(t,n){const i=()=>this.run(t,()=>{let g,a,w=null;return((g=this.matchBitwiseOrExpression_$0(t+1,n))||!0)&&this.match_(t+1,n)!==null&&(a=this.matchBitwiseXOrExpression(t+1,n))!==null&&(w=new cn(g,a)),w}),s=this.mark(),r=this.$scope$BitwiseOrExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseOrExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=i(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseOrExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseOrExpression_$0(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchBitwiseOrExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\|)`,t+1,n)!==null&&(s={kind:"BitwiseOrExpression_$0",e:i}),s})}matchBitwiseXOrExpression(t,n){const i=()=>this.run(t,()=>{let g,a,w=null;return((g=this.matchBitwiseXOrExpression_$0(t+1,n))||!0)&&this.match_(t+1,n)!==null&&(a=this.matchBitwiseAndExpression(t+1,n))!==null&&(w=new un(g,a)),w}),s=this.mark(),r=this.$scope$BitwiseXOrExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseXOrExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=i(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseXOrExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseXOrExpression_$0(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchBitwiseXOrExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\^)`,t+1,n)!==null&&(s={kind:"BitwiseXOrExpression_$0",e:i}),s})}matchBitwiseAndExpression(t,n){const i=()=>this.run(t,()=>{let g,a,w=null;return((g=this.matchBitwiseAndExpression_$0(t+1,n))||!0)&&this.match_(t+1,n)!==null&&(a=this.matchShiftExpression(t+1,n))!==null&&(w=new ln(g,a)),w}),s=this.mark(),r=this.$scope$BitwiseAndExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$BitwiseAndExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=i(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$BitwiseAndExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchBitwiseAndExpression_$0(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchBitwiseAndExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\&)`,t+1,n)!==null&&(s={kind:"BitwiseAndExpression_$0",e:i}),s})}matchShiftExpression(t,n){const i=()=>this.run(t,()=>{let g,a,w=null;return((g=this.matchShiftExpression_$0(t+1,n))||!0)&&this.match_(t+1,n)!==null&&(a=this.matchAdditiveExpression(t+1,n))!==null&&(w=new on(g,a)),w}),s=this.mark(),r=this.$scope$ShiftExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$ShiftExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=i(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$ShiftExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchShiftExpression_$0(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.matchShiftExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.matchShiftExpression_$0_$0(t+1,n))!==null&&(r={kind:"ShiftExpression_$0",e:i,op:s}),r})}matchShiftExpression_$0_$0(t,n){return this.choice([()=>this.matchShiftExpression_$0_$0_1(t+1,n),()=>this.matchShiftExpression_$0_$0_2(t+1,n)])}matchShiftExpression_$0_$0_1(t,n){return this.regexAccept(String.raw`(?:<<)`,t+1,n)}matchShiftExpression_$0_$0_2(t,n){return this.regexAccept(String.raw`(?:>>)`,t+1,n)}matchAdditiveExpression(t,n){const i=()=>this.run(t,()=>{let g,a,w=null;return((g=this.matchAdditiveExpression_$0(t+1,n))||!0)&&this.match_(t+1,n)!==null&&(a=this.matchMultiplicativeExpression(t+1,n))!==null&&(w=new an(g,a)),w}),s=this.mark(),r=this.$scope$AdditiveExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$AdditiveExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=i(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$AdditiveExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchAdditiveExpression_$0(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.matchAdditiveExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.matchAdditiveExpression_$0_$0(t+1,n))!==null&&(r={kind:"AdditiveExpression_$0",e:i,op:s}),r})}matchAdditiveExpression_$0_$0(t,n){return this.choice([()=>this.matchAdditiveExpression_$0_$0_1(t+1,n),()=>this.matchAdditiveExpression_$0_$0_2(t+1,n)])}matchAdditiveExpression_$0_$0_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchAdditiveExpression_$0_$0_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchMultiplicativeExpression(t,n){const i=()=>this.run(t,()=>{let g,a,w=null;return((g=this.matchMultiplicativeExpression_$0(t+1,n))||!0)&&this.match_(t+1,n)!==null&&(a=this.matchUnaryExpression(t+1,n))!==null&&(w=new hn(g,a)),w}),s=this.mark(),r=this.$scope$MultiplicativeExpression$memo.get(s.overallPos);if(r!==void 0)return this.reset(r[1]),r[0];const c=this.memoSafe;this.memoSafe=!1,this.$scope$MultiplicativeExpression$memo.set(s.overallPos,[null,s]);let u=null,o=s;for(;;){this.reset(s);const g=i(),a=this.mark();if(a.overallPos<=o.overallPos)break;u=g,o=a,this.$scope$MultiplicativeExpression$memo.set(s.overallPos,[u,o])}return this.reset(o),this.memoSafe=c,u}matchMultiplicativeExpression_$0(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.matchMultiplicativeExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.matchMultiplicativeExpression_$0_$0(t+1,n))!==null&&(r={kind:"MultiplicativeExpression_$0",e:i,op:s}),r})}matchMultiplicativeExpression_$0_$0(t,n){return this.choice([()=>this.matchMultiplicativeExpression_$0_$0_1(t+1,n),()=>this.matchMultiplicativeExpression_$0_$0_2(t+1,n),()=>this.matchMultiplicativeExpression_$0_$0_3(t+1,n)])}matchMultiplicativeExpression_$0_$0_1(t,n){return this.regexAccept(String.raw`(?:\*)`,t+1,n)}matchMultiplicativeExpression_$0_$0_2(t,n){return this.regexAccept(String.raw`(?:%)`,t+1,n)}matchMultiplicativeExpression_$0_$0_3(t,n){return this.regexAccept(String.raw`(?:/)`,t+1,n)}matchUnaryExpression(t,n){return this.choice([()=>this.matchUnaryExpression_1(t+1,n),()=>this.matchUnaryExpression_2(t+1,n)])}matchUnaryExpression_1(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.matchUnaryExpression_$0(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.matchPrimaryExpression(t+1,n))!==null&&(r=new mn(i,s)),r})}matchUnaryExpression_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchPrimaryExpression(t+1,n))!==null&&(s=new _n(i)),s})}matchUnaryExpression_$0(t,n){return this.choice([()=>this.matchUnaryExpression_$0_1(t+1,n),()=>this.matchUnaryExpression_$0_2(t+1,n),()=>this.matchUnaryExpression_$0_3(t+1,n)])}matchUnaryExpression_$0_1(t,n){return this.regexAccept(String.raw`(?:~)`,t+1,n)}matchUnaryExpression_$0_2(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchUnaryExpression_$0_3(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchPrimaryExpression(t,n){return this.choice([()=>this.matchPrimaryExpression_1(t+1,n),()=>this.matchPrimaryExpression_2(t+1,n),()=>this.matchPrimaryExpression_3(t+1,n)])}matchPrimaryExpression_1(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchnn(t+1,n))!==null&&(s=new gn(i)),s})}matchPrimaryExpression_2(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchLabel(t+1,n))!==null&&(r=new In(i,s)),r})}matchPrimaryExpression_3(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&(i=this.matchBitwiseOrExpression(t+1,n))!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&(s=new wn(i)),s})}matchReg8(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.regexAccept(String.raw`(?:[^a-z0-9_!\?#@\.])`,t+1,n))!==null&&(s={kind:"Reg8",reg:i}),s})}matchInstruction(t,n){return this.choice([()=>this.matchInstruction_1(t+1,n),()=>this.matchInstruction_2(t+1,n),()=>this.matchInstruction_3(t+1,n),()=>this.matchInstruction_4(t+1,n),()=>this.matchInstruction_5(t+1,n),()=>this.matchInstruction_6(t+1,n),()=>this.matchInstruction_7(t+1,n),()=>this.matchInstruction_8(t+1,n),()=>this.matchInstruction_9(t+1,n),()=>this.matchInstruction_10(t+1,n),()=>this.matchInstruction_11(t+1,n),()=>this.matchInstruction_12(t+1,n),()=>this.matchInstruction_13(t+1,n),()=>this.matchInstruction_14(t+1,n),()=>this.matchInstruction_15(t+1,n),()=>this.matchInstruction_16(t+1,n)])}matchInstruction_1(t,n){return this.matchLoad8Instruction(t+1,n)}matchInstruction_2(t,n){return this.matchLoad16Instruction(t+1,n)}matchInstruction_3(t,n){return this.matchExchangeInstruction(t+1,n)}matchInstruction_4(t,n){return this.matchBlockInstruction(t+1,n)}matchInstruction_5(t,n){return this.matchArithmeticLogic8Instruction(t+1,n)}matchInstruction_6(t,n){return this.matchIncrementDecrement8Instruction(t+1,n)}matchInstruction_7(t,n){return this.matchGeneralPurposeArithmeticInstruction(t+1,n)}matchInstruction_8(t,n){return this.matchArithmeticLogic16Instruction(t+1,n)}matchInstruction_9(t,n){return this.matchRotateShiftInstruction(t+1,n)}matchInstruction_10(t,n){return this.matchBitManipulationInstruction(t+1,n)}matchInstruction_11(t,n){return this.matchJumpInstruction(t+1,n)}matchInstruction_12(t,n){return this.matchCallInstruction(t+1,n)}matchInstruction_13(t,n){return this.matchReturnInstruction(t+1,n)}matchInstruction_14(t,n){return this.matchInputInstruction(t+1,n)}matchInstruction_15(t,n){return this.matchOutputInstruction(t+1,n)}matchInstruction_16(t,n){return this.matchCpuControlGroupInstruction(t+1,n)}matchLoad8Instruction(t,n){return this.choice([()=>this.matchLoad8Instruction_1(t+1,n),()=>this.matchLoad8Instruction_2(t+1,n),()=>this.matchLoad8Instruction_3(t+1,n),()=>this.matchLoad8Instruction_4(t+1,n),()=>this.matchLoad8Instruction_5(t+1,n),()=>this.matchLoad8Instruction_6(t+1,n),()=>this.matchLoad8Instruction_7(t+1,n),()=>this.matchLoad8Instruction_8(t+1,n),()=>this.matchLoad8Instruction_9(t+1,n),()=>this.matchLoad8Instruction_10(t+1,n),()=>this.matchLoad8Instruction_11(t+1,n),()=>this.matchLoad8Instruction_12(t+1,n),()=>this.matchLoad8Instruction_13(t+1,n),()=>this.matchLoad8Instruction_14(t+1,n),()=>this.matchLoad8Instruction_15(t+1,n),()=>this.matchLoad8Instruction_16(t+1,n),()=>this.matchLoad8Instruction_17(t+1,n),()=>this.matchLoad8Instruction_18(t+1,n),()=>this.matchLoad8Instruction_19(t+1,n),()=>this.matchLoad8Instruction_20(t+1,n),()=>this.matchLoad8Instruction_21(t+1,n)])}matchLoad8Instruction_1(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchReg8(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchReg8(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new xn(i,s)),r})}matchLoad8Instruction_2(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new An(i)),s})}matchLoad8Instruction_3(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchLoad8Instruction_$0(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new Ln(i,s,r,c)),u})}matchLoad8Instruction_4(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchLoad8Instruction_$1(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new fn(i,s,r,c)),u})}matchLoad8Instruction_5(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Sn(i)),s})}matchLoad8Instruction_6(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchLoad8Instruction_$2(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(c=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new kn(i,s,r,c)),u})}matchLoad8Instruction_7(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchLoad8Instruction_$3(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(c=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new Rn(i,s,r,c)),u})}matchLoad8Instruction_8(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new En(i,s)),r})}matchLoad8Instruction_9(t,n){return this.run(t,()=>{let i,s,r,c,u,o=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchLoad8Instruction_$4(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(c=this.mark())!==null&&(u=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(o=new vn(i,s,r,c,u)),o})}matchLoad8Instruction_10(t,n){return this.run(t,()=>{let i,s,r,c,u,o=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchLoad8Instruction_$5(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(c=this.mark())!==null&&(u=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(o=new Cn(i,s,r,c,u)),o})}matchLoad8Instruction_11(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:bc)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new bn),i})}matchLoad8Instruction_12(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Dn),i})}matchLoad8Instruction_13(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Bn(i,s)),r})}matchLoad8Instruction_14(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:bc)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new qn),i})}matchLoad8Instruction_15(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new yn),i})}matchLoad8Instruction_16(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new pn(i,s)),r})}matchLoad8Instruction_17(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:i)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Mn),i})}matchLoad8Instruction_18(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:r)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new On),i})}matchLoad8Instruction_19(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:i)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Pn),i})}matchLoad8Instruction_20(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:r)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Nn),i})}matchLoad8Instruction_21(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchReg8(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Vn(i,s,r)),c})}matchLoad8Instruction_$0(t,n){return this.choice([()=>this.matchLoad8Instruction_$0_1(t+1,n),()=>this.matchLoad8Instruction_$0_2(t+1,n)])}matchLoad8Instruction_$0_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchLoad8Instruction_$0_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchLoad8Instruction_$1(t,n){return this.choice([()=>this.matchLoad8Instruction_$1_1(t+1,n),()=>this.matchLoad8Instruction_$1_2(t+1,n)])}matchLoad8Instruction_$1_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchLoad8Instruction_$1_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchLoad8Instruction_$2(t,n){return this.choice([()=>this.matchLoad8Instruction_$2_1(t+1,n),()=>this.matchLoad8Instruction_$2_2(t+1,n)])}matchLoad8Instruction_$2_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchLoad8Instruction_$2_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchLoad8Instruction_$3(t,n){return this.choice([()=>this.matchLoad8Instruction_$3_1(t+1,n),()=>this.matchLoad8Instruction_$3_2(t+1,n)])}matchLoad8Instruction_$3_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchLoad8Instruction_$3_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchLoad8Instruction_$4(t,n){return this.choice([()=>this.matchLoad8Instruction_$4_1(t+1,n),()=>this.matchLoad8Instruction_$4_2(t+1,n)])}matchLoad8Instruction_$4_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchLoad8Instruction_$4_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchLoad8Instruction_$5(t,n){return this.choice([()=>this.matchLoad8Instruction_$5_1(t+1,n),()=>this.matchLoad8Instruction_$5_2(t+1,n)])}matchLoad8Instruction_$5_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchLoad8Instruction_$5_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchLoad16Instruction(t,n){return this.choice([()=>this.matchLoad16Instruction_1(t+1,n),()=>this.matchLoad16Instruction_2(t+1,n),()=>this.matchLoad16Instruction_3(t+1,n),()=>this.matchLoad16Instruction_4(t+1,n),()=>this.matchLoad16Instruction_5(t+1,n),()=>this.matchLoad16Instruction_6(t+1,n),()=>this.matchLoad16Instruction_7(t+1,n),()=>this.matchLoad16Instruction_8(t+1,n),()=>this.matchLoad16Instruction_9(t+1,n),()=>this.matchLoad16Instruction_10(t+1,n),()=>this.matchLoad16Instruction_11(t+1,n),()=>this.matchLoad16Instruction_12(t+1,n),()=>this.matchLoad16Instruction_13(t+1,n),()=>this.matchLoad16Instruction_14(t+1,n),()=>this.matchLoad16Instruction_15(t+1,n),()=>this.matchLoad16Instruction_16(t+1,n),()=>this.matchLoad16Instruction_17(t+1,n),()=>this.matchLoad16Instruction_18(t+1,n),()=>this.matchLoad16Instruction_19(t+1,n),()=>this.matchLoad16Instruction_20(t+1,n)])}matchLoad16Instruction_1(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Jn(i,s)),r})}matchLoad16Instruction_2(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Gn(i,s)),r})}matchLoad16Instruction_3(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Fn(i,s)),r})}matchLoad16Instruction_4(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new jn(i,s)),r})}matchLoad16Instruction_5(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Un(i,s)),r})}matchLoad16Instruction_6(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchdd(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new zn(i,s,r)),c})}matchLoad16Instruction_7(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Wn(i,s)),r})}matchLoad16Instruction_8(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(r=this.matchdd(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Xn(i,s,r)),c})}matchLoad16Instruction_9(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Hn(i,s)),r})}matchLoad16Instruction_10(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Qn(i,s)),r})}matchLoad16Instruction_11(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Zn),i})}matchLoad16Instruction_12(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Yn),i})}matchLoad16Instruction_13(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Tn),i})}matchLoad16Instruction_14(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:ld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchdd(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Kn(i,s,r)),c})}matchLoad16Instruction_15(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:push)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchqq(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new dn(i)),s})}matchLoad16Instruction_16(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:push)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new $n),i})}matchLoad16Instruction_17(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:push)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ti),i})}matchLoad16Instruction_18(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:pop)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchqq(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new ni(i)),s})}matchLoad16Instruction_19(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:pop)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ii),i})}matchLoad16Instruction_20(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:pop)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ei),i})}matchExchangeInstruction(t,n){return this.choice([()=>this.matchExchangeInstruction_1(t+1,n),()=>this.matchExchangeInstruction_2(t+1,n),()=>this.matchExchangeInstruction_3(t+1,n),()=>this.matchExchangeInstruction_4(t+1,n),()=>this.matchExchangeInstruction_5(t+1,n),()=>this.matchExchangeInstruction_6(t+1,n)])}matchExchangeInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ex)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:de)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new si),i})}matchExchangeInstruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ex)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:af)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:af\')`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ri),i})}matchExchangeInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:exx)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ci),i})}matchExchangeInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ex)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ui),i})}matchExchangeInstruction_5(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ex)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new li),i})}matchExchangeInstruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ex)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:sp)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new oi),i})}matchBlockInstruction(t,n){return this.choice([()=>this.matchBlockInstruction_1(t+1,n),()=>this.matchBlockInstruction_2(t+1,n),()=>this.matchBlockInstruction_3(t+1,n),()=>this.matchBlockInstruction_4(t+1,n),()=>this.matchBlockInstruction_5(t+1,n),()=>this.matchBlockInstruction_6(t+1,n),()=>this.matchBlockInstruction_7(t+1,n),()=>this.matchBlockInstruction_8(t+1,n)])}matchBlockInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ldir)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ai),i})}matchBlockInstruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ldi)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new hi),i})}matchBlockInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:lddr)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new mi),i})}matchBlockInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ldd)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new _i),i})}matchBlockInstruction_5(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:cpir)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new gi),i})}matchBlockInstruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:cpi)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ii),i})}matchBlockInstruction_7(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:cpdr)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new wi),i})}matchBlockInstruction_8(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:cpd)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new xi),i})}matchArithmeticLogic8Instruction(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_2(t+1,n),()=>this.matchArithmeticLogic8Instruction_3(t+1,n),()=>this.matchArithmeticLogic8Instruction_4(t+1,n),()=>this.matchArithmeticLogic8Instruction_5(t+1,n),()=>this.matchArithmeticLogic8Instruction_6(t+1,n),()=>this.matchArithmeticLogic8Instruction_7(t+1,n),()=>this.matchArithmeticLogic8Instruction_8(t+1,n),()=>this.matchArithmeticLogic8Instruction_9(t+1,n),()=>this.matchArithmeticLogic8Instruction_10(t+1,n),()=>this.matchArithmeticLogic8Instruction_11(t+1,n),()=>this.matchArithmeticLogic8Instruction_12(t+1,n),()=>this.matchArithmeticLogic8Instruction_13(t+1,n),()=>this.matchArithmeticLogic8Instruction_14(t+1,n),()=>this.matchArithmeticLogic8Instruction_15(t+1,n),()=>this.matchArithmeticLogic8Instruction_16(t+1,n),()=>this.matchArithmeticLogic8Instruction_17(t+1,n),()=>this.matchArithmeticLogic8Instruction_18(t+1,n),()=>this.matchArithmeticLogic8Instruction_19(t+1,n),()=>this.matchArithmeticLogic8Instruction_20(t+1,n),()=>this.matchArithmeticLogic8Instruction_21(t+1,n),()=>this.matchArithmeticLogic8Instruction_22(t+1,n),()=>this.matchArithmeticLogic8Instruction_23(t+1,n),()=>this.matchArithmeticLogic8Instruction_24(t+1,n),()=>this.matchArithmeticLogic8Instruction_25(t+1,n),()=>this.matchArithmeticLogic8Instruction_26(t+1,n),()=>this.matchArithmeticLogic8Instruction_27(t+1,n),()=>this.matchArithmeticLogic8Instruction_28(t+1,n),()=>this.matchArithmeticLogic8Instruction_29(t+1,n),()=>this.matchArithmeticLogic8Instruction_30(t+1,n),()=>this.matchArithmeticLogic8Instruction_31(t+1,n),()=>this.matchArithmeticLogic8Instruction_32(t+1,n),()=>this.matchArithmeticLogic8Instruction_33(t+1,n),()=>this.matchArithmeticLogic8Instruction_34(t+1,n),()=>this.matchArithmeticLogic8Instruction_35(t+1,n),()=>this.matchArithmeticLogic8Instruction_36(t+1,n),()=>this.matchArithmeticLogic8Instruction_37(t+1,n),()=>this.matchArithmeticLogic8Instruction_38(t+1,n),()=>this.matchArithmeticLogic8Instruction_39(t+1,n),()=>this.matchArithmeticLogic8Instruction_40(t+1,n)])}matchArithmeticLogic8Instruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$0(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ai),i})}matchArithmeticLogic8Instruction_2(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$1(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$2(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Li(i,s,r)),c})}matchArithmeticLogic8Instruction_3(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$3(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$4(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new fi(i,s,r)),c})}matchArithmeticLogic8Instruction_4(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$5(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Si(i)),s})}matchArithmeticLogic8Instruction_5(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$6(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new ki(i,s)),r})}matchArithmeticLogic8Instruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:adc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$7(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ri),i})}matchArithmeticLogic8Instruction_7(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:adc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$8(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$9(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Ei(i,s,r)),c})}matchArithmeticLogic8Instruction_8(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:adc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$10(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$11(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new vi(i,s,r)),c})}matchArithmeticLogic8Instruction_9(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:adc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$12(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ci(i)),s})}matchArithmeticLogic8Instruction_10(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:adc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$13(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new bi(i,s)),r})}matchArithmeticLogic8Instruction_11(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:sub)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$14(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Di),i})}matchArithmeticLogic8Instruction_12(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sub)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$15(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$16(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Bi(i,s,r)),c})}matchArithmeticLogic8Instruction_13(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sub)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$17(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$18(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new qi(i,s,r)),c})}matchArithmeticLogic8Instruction_14(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:sub)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$19(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new yi(i)),s})}matchArithmeticLogic8Instruction_15(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:sub)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$20(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new pi(i,s)),r})}matchArithmeticLogic8Instruction_16(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$21(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Mi),i})}matchArithmeticLogic8Instruction_17(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$22(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$23(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Oi(i,s,r)),c})}matchArithmeticLogic8Instruction_18(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$24(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$25(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Pi(i,s,r)),c})}matchArithmeticLogic8Instruction_19(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$26(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ni(i)),s})}matchArithmeticLogic8Instruction_20(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$27(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Vi(i,s)),r})}matchArithmeticLogic8Instruction_21(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:and)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$28(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ji),i})}matchArithmeticLogic8Instruction_22(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:and)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$29(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$30(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Gi(i,s,r)),c})}matchArithmeticLogic8Instruction_23(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:and)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$31(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$32(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Fi(i,s,r)),c})}matchArithmeticLogic8Instruction_24(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:and)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$33(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new ji(i)),s})}matchArithmeticLogic8Instruction_25(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:and)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$34(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Ui(i,s)),r})}matchArithmeticLogic8Instruction_26(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:or)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$35(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new zi),i})}matchArithmeticLogic8Instruction_27(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:or)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$36(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$37(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Wi(i,s,r)),c})}matchArithmeticLogic8Instruction_28(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:or)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$38(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$39(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Xi(i,s,r)),c})}matchArithmeticLogic8Instruction_29(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:or)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$40(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Hi(i)),s})}matchArithmeticLogic8Instruction_30(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:or)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$41(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Qi(i,s)),r})}matchArithmeticLogic8Instruction_31(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:xor)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$42(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Zi),i})}matchArithmeticLogic8Instruction_32(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:xor)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$43(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$44(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Yi(i,s,r)),c})}matchArithmeticLogic8Instruction_33(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:xor)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$45(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$46(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Ti(i,s,r)),c})}matchArithmeticLogic8Instruction_34(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:xor)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$47(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ki(i)),s})}matchArithmeticLogic8Instruction_35(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:xor)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$48(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new di(i,s)),r})}matchArithmeticLogic8Instruction_36(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:cp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$49(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new $i),i})}matchArithmeticLogic8Instruction_37(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:cp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$50(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$51(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new te(i,s,r)),c})}matchArithmeticLogic8Instruction_38(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:cp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$52(t+1,n)||!0)&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchArithmeticLogic8Instruction_$53(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ne(i,s,r)),c})}matchArithmeticLogic8Instruction_39(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:cp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$54(t+1,n)||!0)&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new ie(i)),s})}matchArithmeticLogic8Instruction_40(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:cp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(this.matchArithmeticLogic8Instruction_$55(t+1,n)||!0)&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new ee(i,s)),r})}matchArithmeticLogic8Instruction_$0(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$0"}),i})}matchArithmeticLogic8Instruction_$1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$1"}),i})}matchArithmeticLogic8Instruction_$2(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$2_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$2_2(t+1,n)])}matchArithmeticLogic8Instruction_$2_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$2_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$3"}),i})}matchArithmeticLogic8Instruction_$4(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$4_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$4_2(t+1,n)])}matchArithmeticLogic8Instruction_$4_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$4_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$5(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$5"}),i})}matchArithmeticLogic8Instruction_$6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$6"}),i})}matchArithmeticLogic8Instruction_$7(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$7"}),i})}matchArithmeticLogic8Instruction_$8(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$8"}),i})}matchArithmeticLogic8Instruction_$9(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$9_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$9_2(t+1,n)])}matchArithmeticLogic8Instruction_$9_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$9_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$10(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$10"}),i})}matchArithmeticLogic8Instruction_$11(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$11_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$11_2(t+1,n)])}matchArithmeticLogic8Instruction_$11_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$11_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$12(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$12"}),i})}matchArithmeticLogic8Instruction_$13(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$13"}),i})}matchArithmeticLogic8Instruction_$14(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$14"}),i})}matchArithmeticLogic8Instruction_$15(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$15"}),i})}matchArithmeticLogic8Instruction_$16(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$16_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$16_2(t+1,n)])}matchArithmeticLogic8Instruction_$16_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$16_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$17(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$17"}),i})}matchArithmeticLogic8Instruction_$18(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$18_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$18_2(t+1,n)])}matchArithmeticLogic8Instruction_$18_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$18_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$19(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$19"}),i})}matchArithmeticLogic8Instruction_$20(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$20"}),i})}matchArithmeticLogic8Instruction_$21(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$21"}),i})}matchArithmeticLogic8Instruction_$22(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$22"}),i})}matchArithmeticLogic8Instruction_$23(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$23_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$23_2(t+1,n)])}matchArithmeticLogic8Instruction_$23_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$23_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$24(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$24"}),i})}matchArithmeticLogic8Instruction_$25(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$25_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$25_2(t+1,n)])}matchArithmeticLogic8Instruction_$25_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$25_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$26(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$26"}),i})}matchArithmeticLogic8Instruction_$27(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$27"}),i})}matchArithmeticLogic8Instruction_$28(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$28"}),i})}matchArithmeticLogic8Instruction_$29(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$29"}),i})}matchArithmeticLogic8Instruction_$30(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$30_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$30_2(t+1,n)])}matchArithmeticLogic8Instruction_$30_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$30_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$31(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$31"}),i})}matchArithmeticLogic8Instruction_$32(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$32_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$32_2(t+1,n)])}matchArithmeticLogic8Instruction_$32_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$32_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$33(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$33"}),i})}matchArithmeticLogic8Instruction_$34(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$34"}),i})}matchArithmeticLogic8Instruction_$35(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$35"}),i})}matchArithmeticLogic8Instruction_$36(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$36"}),i})}matchArithmeticLogic8Instruction_$37(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$37_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$37_2(t+1,n)])}matchArithmeticLogic8Instruction_$37_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$37_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$38(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$38"}),i})}matchArithmeticLogic8Instruction_$39(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$39_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$39_2(t+1,n)])}matchArithmeticLogic8Instruction_$39_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$39_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$40(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$40"}),i})}matchArithmeticLogic8Instruction_$41(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$41"}),i})}matchArithmeticLogic8Instruction_$42(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$42"}),i})}matchArithmeticLogic8Instruction_$43(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$43"}),i})}matchArithmeticLogic8Instruction_$44(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$44_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$44_2(t+1,n)])}matchArithmeticLogic8Instruction_$44_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$44_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$45(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$45"}),i})}matchArithmeticLogic8Instruction_$46(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$46_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$46_2(t+1,n)])}matchArithmeticLogic8Instruction_$46_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$46_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$47(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$47"}),i})}matchArithmeticLogic8Instruction_$48(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$48"}),i})}matchArithmeticLogic8Instruction_$49(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$49"}),i})}matchArithmeticLogic8Instruction_$50(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$50"}),i})}matchArithmeticLogic8Instruction_$51(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$51_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$51_2(t+1,n)])}matchArithmeticLogic8Instruction_$51_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$51_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$52(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$52"}),i})}matchArithmeticLogic8Instruction_$53(t,n){return this.choice([()=>this.matchArithmeticLogic8Instruction_$53_1(t+1,n),()=>this.matchArithmeticLogic8Instruction_$53_2(t+1,n)])}matchArithmeticLogic8Instruction_$53_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchArithmeticLogic8Instruction_$53_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchArithmeticLogic8Instruction_$54(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$54"}),i})}matchArithmeticLogic8Instruction_$55(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i={kind:"ArithmeticLogic8Instruction_$55"}),i})}matchIncrementDecrement8Instruction(t,n){return this.choice([()=>this.matchIncrementDecrement8Instruction_1(t+1,n),()=>this.matchIncrementDecrement8Instruction_2(t+1,n),()=>this.matchIncrementDecrement8Instruction_3(t+1,n),()=>this.matchIncrementDecrement8Instruction_4(t+1,n),()=>this.matchIncrementDecrement8Instruction_5(t+1,n),()=>this.matchIncrementDecrement8Instruction_6(t+1,n),()=>this.matchIncrementDecrement8Instruction_7(t+1,n),()=>this.matchIncrementDecrement8Instruction_8(t+1,n)])}matchIncrementDecrement8Instruction_1(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new se(i)),s})}matchIncrementDecrement8Instruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new re),i})}matchIncrementDecrement8Instruction_3(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchIncrementDecrement8Instruction_$0(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ce(i,s,r)),c})}matchIncrementDecrement8Instruction_4(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchIncrementDecrement8Instruction_$1(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ue(i,s,r)),c})}matchIncrementDecrement8Instruction_5(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new le(i)),s})}matchIncrementDecrement8Instruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new oe),i})}matchIncrementDecrement8Instruction_7(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchIncrementDecrement8Instruction_$2(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ae(i,s,r)),c})}matchIncrementDecrement8Instruction_8(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchIncrementDecrement8Instruction_$3(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new he(i,s,r)),c})}matchIncrementDecrement8Instruction_$0(t,n){return this.choice([()=>this.matchIncrementDecrement8Instruction_$0_1(t+1,n),()=>this.matchIncrementDecrement8Instruction_$0_2(t+1,n)])}matchIncrementDecrement8Instruction_$0_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchIncrementDecrement8Instruction_$0_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchIncrementDecrement8Instruction_$1(t,n){return this.choice([()=>this.matchIncrementDecrement8Instruction_$1_1(t+1,n),()=>this.matchIncrementDecrement8Instruction_$1_2(t+1,n)])}matchIncrementDecrement8Instruction_$1_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchIncrementDecrement8Instruction_$1_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchIncrementDecrement8Instruction_$2(t,n){return this.choice([()=>this.matchIncrementDecrement8Instruction_$2_1(t+1,n),()=>this.matchIncrementDecrement8Instruction_$2_2(t+1,n)])}matchIncrementDecrement8Instruction_$2_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchIncrementDecrement8Instruction_$2_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchIncrementDecrement8Instruction_$3(t,n){return this.choice([()=>this.matchIncrementDecrement8Instruction_$3_1(t+1,n),()=>this.matchIncrementDecrement8Instruction_$3_2(t+1,n)])}matchIncrementDecrement8Instruction_$3_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchIncrementDecrement8Instruction_$3_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchGeneralPurposeArithmeticInstruction(t,n){return this.choice([()=>this.matchGeneralPurposeArithmeticInstruction_1(t+1,n),()=>this.matchGeneralPurposeArithmeticInstruction_2(t+1,n),()=>this.matchGeneralPurposeArithmeticInstruction_3(t+1,n),()=>this.matchGeneralPurposeArithmeticInstruction_4(t+1,n),()=>this.matchGeneralPurposeArithmeticInstruction_5(t+1,n)])}matchGeneralPurposeArithmeticInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:daa)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new me),i})}matchGeneralPurposeArithmeticInstruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:cpl)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new _e),i})}matchGeneralPurposeArithmeticInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:neg)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ge),i})}matchGeneralPurposeArithmeticInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ccf)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ie),i})}matchGeneralPurposeArithmeticInstruction_5(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:scf)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new we),i})}matchCpuControlGroupInstruction(t,n){return this.choice([()=>this.matchCpuControlGroupInstruction_1(t+1,n),()=>this.matchCpuControlGroupInstruction_2(t+1,n),()=>this.matchCpuControlGroupInstruction_3(t+1,n),()=>this.matchCpuControlGroupInstruction_4(t+1,n),()=>this.matchCpuControlGroupInstruction_5(t+1,n)])}matchCpuControlGroupInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:nop)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new xe),i})}matchCpuControlGroupInstruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:halt)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ae),i})}matchCpuControlGroupInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:di)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Le),i})}matchCpuControlGroupInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ei)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new fe),i})}matchCpuControlGroupInstruction_5(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:im)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.regexAccept(String.raw`(?:[012])`,t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Se(i)),s})}matchArithmeticLogic16Instruction(t,n){return this.choice([()=>this.matchArithmeticLogic16Instruction_1(t+1,n),()=>this.matchArithmeticLogic16Instruction_2(t+1,n),()=>this.matchArithmeticLogic16Instruction_3(t+1,n),()=>this.matchArithmeticLogic16Instruction_4(t+1,n),()=>this.matchArithmeticLogic16Instruction_5(t+1,n),()=>this.matchArithmeticLogic16Instruction_6(t+1,n),()=>this.matchArithmeticLogic16Instruction_7(t+1,n),()=>this.matchArithmeticLogic16Instruction_8(t+1,n),()=>this.matchArithmeticLogic16Instruction_9(t+1,n),()=>this.matchArithmeticLogic16Instruction_10(t+1,n),()=>this.matchArithmeticLogic16Instruction_11(t+1,n)])}matchArithmeticLogic16Instruction_1(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchss(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new ke(i)),s})}matchArithmeticLogic16Instruction_2(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:adc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchss(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Re(i)),s})}matchArithmeticLogic16Instruction_3(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:sbc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchss(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ee(i)),s})}matchArithmeticLogic16Instruction_4(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchpp(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new ve(i)),s})}matchArithmeticLogic16Instruction_5(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:add)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchrr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ce(i)),s})}matchArithmeticLogic16Instruction_6(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchss(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new be(i)),s})}matchArithmeticLogic16Instruction_7(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new De),i})}matchArithmeticLogic16Instruction_8(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:inc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Be),i})}matchArithmeticLogic16Instruction_9(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchss(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new qe(i)),s})}matchArithmeticLogic16Instruction_10(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ye),i})}matchArithmeticLogic16Instruction_11(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:dec)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new pe),i})}matchRotateShiftInstruction(t,n){return this.choice([()=>this.matchRotateShiftInstruction_1(t+1,n),()=>this.matchRotateShiftInstruction_2(t+1,n),()=>this.matchRotateShiftInstruction_3(t+1,n),()=>this.matchRotateShiftInstruction_4(t+1,n),()=>this.matchRotateShiftInstruction_5(t+1,n),()=>this.matchRotateShiftInstruction_6(t+1,n),()=>this.matchRotateShiftInstruction_7(t+1,n),()=>this.matchRotateShiftInstruction_8(t+1,n),()=>this.matchRotateShiftInstruction_9(t+1,n),()=>this.matchRotateShiftInstruction_10(t+1,n),()=>this.matchRotateShiftInstruction_11(t+1,n),()=>this.matchRotateShiftInstruction_12(t+1,n),()=>this.matchRotateShiftInstruction_13(t+1,n),()=>this.matchRotateShiftInstruction_14(t+1,n),()=>this.matchRotateShiftInstruction_15(t+1,n),()=>this.matchRotateShiftInstruction_16(t+1,n),()=>this.matchRotateShiftInstruction_17(t+1,n),()=>this.matchRotateShiftInstruction_18(t+1,n),()=>this.matchRotateShiftInstruction_19(t+1,n),()=>this.matchRotateShiftInstruction_20(t+1,n),()=>this.matchRotateShiftInstruction_21(t+1,n),()=>this.matchRotateShiftInstruction_22(t+1,n),()=>this.matchRotateShiftInstruction_23(t+1,n),()=>this.matchRotateShiftInstruction_24(t+1,n),()=>this.matchRotateShiftInstruction_25(t+1,n),()=>this.matchRotateShiftInstruction_26(t+1,n),()=>this.matchRotateShiftInstruction_27(t+1,n),()=>this.matchRotateShiftInstruction_28(t+1,n),()=>this.matchRotateShiftInstruction_29(t+1,n),()=>this.matchRotateShiftInstruction_30(t+1,n),()=>this.matchRotateShiftInstruction_31(t+1,n),()=>this.matchRotateShiftInstruction_32(t+1,n),()=>this.matchRotateShiftInstruction_33(t+1,n),()=>this.matchRotateShiftInstruction_34(t+1,n)])}matchRotateShiftInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rlca)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Me),i})}matchRotateShiftInstruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rla)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Oe),i})}matchRotateShiftInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rrca)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Pe),i})}matchRotateShiftInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rra)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ne),i})}matchRotateShiftInstruction_5(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ve(i)),s})}matchRotateShiftInstruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Je),i})}matchRotateShiftInstruction_7(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$0(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Ge(i,s,r)),c})}matchRotateShiftInstruction_8(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rlc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$1(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Fe(i,s,r)),c})}matchRotateShiftInstruction_9(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:rl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new je(i)),s})}matchRotateShiftInstruction_10(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ue),i})}matchRotateShiftInstruction_11(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$2(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ze(i,s,r)),c})}matchRotateShiftInstruction_12(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$3(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new We(i,s,r)),c})}matchRotateShiftInstruction_13(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Xe(i)),s})}matchRotateShiftInstruction_14(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new He),i})}matchRotateShiftInstruction_15(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$4(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Qe(i,s,r)),c})}matchRotateShiftInstruction_16(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rrc)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$5(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Ze(i,s,r)),c})}matchRotateShiftInstruction_17(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:rr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ye(i)),s})}matchRotateShiftInstruction_18(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Te),i})}matchRotateShiftInstruction_19(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$6(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Ke(i,s,r)),c})}matchRotateShiftInstruction_20(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:rr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$7(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new de(i,s,r)),c})}matchRotateShiftInstruction_21(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:sla)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new $e(i)),s})}matchRotateShiftInstruction_22(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:sla)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ts),i})}matchRotateShiftInstruction_23(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sla)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$8(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ns(i,s,r)),c})}matchRotateShiftInstruction_24(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sla)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$9(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new is(i,s,r)),c})}matchRotateShiftInstruction_25(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:sra)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new es(i)),s})}matchRotateShiftInstruction_26(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:sra)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ss),i})}matchRotateShiftInstruction_27(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sra)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$10(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new rs(i,s,r)),c})}matchRotateShiftInstruction_28(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:sra)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$11(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new cs(i,s,r)),c})}matchRotateShiftInstruction_29(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:srl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new us(i)),s})}matchRotateShiftInstruction_30(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:srl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ls),i})}matchRotateShiftInstruction_31(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:srl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$12(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new os(i,s,r)),c})}matchRotateShiftInstruction_32(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:srl)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchRotateShiftInstruction_$13(t+1,n))!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new as(i,s,r)),c})}matchRotateShiftInstruction_33(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rld)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new hs),i})}matchRotateShiftInstruction_34(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:rrd)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ms),i})}matchRotateShiftInstruction_$0(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$0_1(t+1,n),()=>this.matchRotateShiftInstruction_$0_2(t+1,n)])}matchRotateShiftInstruction_$0_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$0_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$1(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$1_1(t+1,n),()=>this.matchRotateShiftInstruction_$1_2(t+1,n)])}matchRotateShiftInstruction_$1_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$1_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$2(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$2_1(t+1,n),()=>this.matchRotateShiftInstruction_$2_2(t+1,n)])}matchRotateShiftInstruction_$2_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$2_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$3(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$3_1(t+1,n),()=>this.matchRotateShiftInstruction_$3_2(t+1,n)])}matchRotateShiftInstruction_$3_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$3_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$4(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$4_1(t+1,n),()=>this.matchRotateShiftInstruction_$4_2(t+1,n)])}matchRotateShiftInstruction_$4_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$4_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$5(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$5_1(t+1,n),()=>this.matchRotateShiftInstruction_$5_2(t+1,n)])}matchRotateShiftInstruction_$5_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$5_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$6(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$6_1(t+1,n),()=>this.matchRotateShiftInstruction_$6_2(t+1,n)])}matchRotateShiftInstruction_$6_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$6_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$7(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$7_1(t+1,n),()=>this.matchRotateShiftInstruction_$7_2(t+1,n)])}matchRotateShiftInstruction_$7_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$7_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$8(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$8_1(t+1,n),()=>this.matchRotateShiftInstruction_$8_2(t+1,n)])}matchRotateShiftInstruction_$8_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$8_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$9(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$9_1(t+1,n),()=>this.matchRotateShiftInstruction_$9_2(t+1,n)])}matchRotateShiftInstruction_$9_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$9_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$10(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$10_1(t+1,n),()=>this.matchRotateShiftInstruction_$10_2(t+1,n)])}matchRotateShiftInstruction_$10_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$10_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$11(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$11_1(t+1,n),()=>this.matchRotateShiftInstruction_$11_2(t+1,n)])}matchRotateShiftInstruction_$11_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$11_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$12(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$12_1(t+1,n),()=>this.matchRotateShiftInstruction_$12_2(t+1,n)])}matchRotateShiftInstruction_$12_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$12_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchRotateShiftInstruction_$13(t,n){return this.choice([()=>this.matchRotateShiftInstruction_$13_1(t+1,n),()=>this.matchRotateShiftInstruction_$13_2(t+1,n)])}matchRotateShiftInstruction_$13_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchRotateShiftInstruction_$13_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchBitManipulationInstruction(t,n){return this.choice([()=>this.matchBitManipulationInstruction_1(t+1,n),()=>this.matchBitManipulationInstruction_2(t+1,n),()=>this.matchBitManipulationInstruction_3(t+1,n),()=>this.matchBitManipulationInstruction_4(t+1,n),()=>this.matchBitManipulationInstruction_5(t+1,n),()=>this.matchBitManipulationInstruction_6(t+1,n),()=>this.matchBitManipulationInstruction_7(t+1,n),()=>this.matchBitManipulationInstruction_8(t+1,n),()=>this.matchBitManipulationInstruction_9(t+1,n),()=>this.matchBitManipulationInstruction_10(t+1,n),()=>this.matchBitManipulationInstruction_11(t+1,n),()=>this.matchBitManipulationInstruction_12(t+1,n)])}matchBitManipulationInstruction_1(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:bit)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new _s(i,s)),r})}matchBitManipulationInstruction_2(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:bit)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new gs(i)),s})}matchBitManipulationInstruction_3(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:bit)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchBitManipulationInstruction_$0(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new Is(i,s,r,c)),u})}matchBitManipulationInstruction_4(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:bit)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchBitManipulationInstruction_$1(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new ws(i,s,r,c)),u})}matchBitManipulationInstruction_5(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:set)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new xs(i,s)),r})}matchBitManipulationInstruction_6(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:set)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new As(i)),s})}matchBitManipulationInstruction_7(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:set)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchBitManipulationInstruction_$2(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new Ls(i,s,r,c)),u})}matchBitManipulationInstruction_8(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:set)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchBitManipulationInstruction_$3(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new fs(i,s,r,c)),u})}matchBitManipulationInstruction_9(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:res)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Ss(i,s)),r})}matchBitManipulationInstruction_10(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:res)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new ks(i)),s})}matchBitManipulationInstruction_11(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:res)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchBitManipulationInstruction_$4(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new Rs(i,s,r,c)),u})}matchBitManipulationInstruction_12(t,n){return this.run(t,()=>{let i,s,r,c,u=null;return this.regexAccept(String.raw`(?:res)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchb(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.matchBitManipulationInstruction_$5(t+1,n))!==null&&this.match_(t+1,n)!==null&&(r=this.mark())!==null&&(c=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(u=new Es(i,s,r,c)),u})}matchBitManipulationInstruction_$0(t,n){return this.choice([()=>this.matchBitManipulationInstruction_$0_1(t+1,n),()=>this.matchBitManipulationInstruction_$0_2(t+1,n)])}matchBitManipulationInstruction_$0_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchBitManipulationInstruction_$0_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchBitManipulationInstruction_$1(t,n){return this.choice([()=>this.matchBitManipulationInstruction_$1_1(t+1,n),()=>this.matchBitManipulationInstruction_$1_2(t+1,n)])}matchBitManipulationInstruction_$1_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchBitManipulationInstruction_$1_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchBitManipulationInstruction_$2(t,n){return this.choice([()=>this.matchBitManipulationInstruction_$2_1(t+1,n),()=>this.matchBitManipulationInstruction_$2_2(t+1,n)])}matchBitManipulationInstruction_$2_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchBitManipulationInstruction_$2_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchBitManipulationInstruction_$3(t,n){return this.choice([()=>this.matchBitManipulationInstruction_$3_1(t+1,n),()=>this.matchBitManipulationInstruction_$3_2(t+1,n)])}matchBitManipulationInstruction_$3_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchBitManipulationInstruction_$3_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchBitManipulationInstruction_$4(t,n){return this.choice([()=>this.matchBitManipulationInstruction_$4_1(t+1,n),()=>this.matchBitManipulationInstruction_$4_2(t+1,n)])}matchBitManipulationInstruction_$4_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchBitManipulationInstruction_$4_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchBitManipulationInstruction_$5(t,n){return this.choice([()=>this.matchBitManipulationInstruction_$5_1(t+1,n),()=>this.matchBitManipulationInstruction_$5_2(t+1,n)])}matchBitManipulationInstruction_$5_1(t,n){return this.regexAccept(String.raw`(?:\+)`,t+1,n)}matchBitManipulationInstruction_$5_2(t,n){return this.regexAccept(String.raw`(?:\-)`,t+1,n)}matchOffset(t,n){return this.choice([()=>this.matchOffset_1(t+1,n),()=>this.matchOffset_2(t+1,n)])}matchOffset_1(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchLabel(t+1,n))!==null&&(r=new vs(i,s)),r})}matchOffset_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchExpression(t+1,n))!==null&&(s=new Cs(i)),s})}matchJumpInstruction(t,n){return this.choice([()=>this.matchJumpInstruction_1(t+1,n),()=>this.matchJumpInstruction_2(t+1,n),()=>this.matchJumpInstruction_3(t+1,n),()=>this.matchJumpInstruction_4(t+1,n),()=>this.matchJumpInstruction_5(t+1,n),()=>this.matchJumpInstruction_6(t+1,n),()=>this.matchJumpInstruction_7(t+1,n),()=>this.matchJumpInstruction_8(t+1,n),()=>this.matchJumpInstruction_9(t+1,n),()=>this.matchJumpInstruction_10(t+1,n),()=>this.matchJumpInstruction_11(t+1,n)])}matchJumpInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:jp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:hl)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new bs),i})}matchJumpInstruction_2(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:jp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:ix)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ds),i})}matchJumpInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:jp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:iy)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Bs),i})}matchJumpInstruction_4(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:jp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new qs(i,s)),r})}matchJumpInstruction_5(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:jp)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchcc(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ys(i,s,r)),c})}matchJumpInstruction_6(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:jr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchLabel(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new ps(i,s)),r})}matchJumpInstruction_7(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:jr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Ms(i,s)),r})}matchJumpInstruction_8(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:jr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchjj(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchLabel(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Os(i,s,r)),c})}matchJumpInstruction_9(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:jr)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchjj(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Ps(i,s,r)),c})}matchJumpInstruction_10(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:djnz)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchLabel(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Ns(i,s)),r})}matchJumpInstruction_11(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:djnz)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Vs(i,s)),r})}matchCallInstruction(t,n){return this.choice([()=>this.matchCallInstruction_1(t+1,n),()=>this.matchCallInstruction_2(t+1,n)])}matchCallInstruction_1(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:call)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Js(i,s)),r})}matchCallInstruction_2(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.regexAccept(String.raw`(?:call)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchcc(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(s=this.mark())!==null&&(r=this.matchExpression(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new Gs(i,s,r)),c})}matchReturnInstruction(t,n){return this.choice([()=>this.matchReturnInstruction_1(t+1,n),()=>this.matchReturnInstruction_2(t+1,n),()=>this.matchReturnInstruction_3(t+1,n),()=>this.matchReturnInstruction_4(t+1,n),()=>this.matchReturnInstruction_5(t+1,n)])}matchReturnInstruction_1(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ret)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Fs),i})}matchReturnInstruction_2(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:ret)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchcc(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new js(i)),s})}matchReturnInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:reti)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Us),i})}matchReturnInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:retn)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new zs),i})}matchReturnInstruction_5(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:rst)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchp(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ws(i)),s})}matchInputInstruction(t,n){return this.choice([()=>this.matchInputInstruction_1(t+1,n),()=>this.matchInputInstruction_2(t+1,n),()=>this.matchInputInstruction_3(t+1,n),()=>this.matchInputInstruction_4(t+1,n),()=>this.matchInputInstruction_5(t+1,n),()=>this.matchInputInstruction_6(t+1,n)])}matchInputInstruction_1(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:in)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:c)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Xs(i)),s})}matchInputInstruction_2(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:in)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Hs(i,s)),r})}matchInputInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ini)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Qs),i})}matchInputInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:inir)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Zs),i})}matchInputInstruction_5(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:ind)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ys),i})}matchInputInstruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:indr)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new Ts),i})}matchOutputInstruction(t,n){return this.choice([()=>this.matchOutputInstruction_1(t+1,n),()=>this.matchOutputInstruction_2(t+1,n),()=>this.matchOutputInstruction_3(t+1,n),()=>this.matchOutputInstruction_4(t+1,n),()=>this.matchOutputInstruction_5(t+1,n),()=>this.matchOutputInstruction_6(t+1,n)])}matchOutputInstruction_1(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:out)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.regexAccept(String.raw`(?:c)`,t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchr(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Ks(i)),s})}matchOutputInstruction_2(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:out)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&this.regexAccept(String.raw`(?:\()`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:\))`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:a)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new ds(i,s)),r})}matchOutputInstruction_3(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:outi)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new $s),i})}matchOutputInstruction_4(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:otir)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new tr),i})}matchOutputInstruction_5(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:outd)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new nr),i})}matchOutputInstruction_6(t,n){return this.run(t,()=>{let i=null;return this.regexAccept(String.raw`(?:otdr)`,t+1,n)!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(i=new ir),i})}matchByteDirective(t,n){return this.choice([()=>this.matchByteDirective_1(t+1,n),()=>this.matchByteDirective_2(t+1,n),()=>this.matchByteDirective_3(t+1,n),()=>this.matchByteDirective_4(t+1,n),()=>this.matchByteDirective_5(t+1,n)])}matchByteDirective_1(t,n){return this.regexAccept(String.raw`(?:db)`,t+1,n)}matchByteDirective_2(t,n){return this.regexAccept(String.raw`(?:dm)`,t+1,n)}matchByteDirective_3(t,n){return this.regexAccept(String.raw`(?:byte)`,t+1,n)}matchByteDirective_4(t,n){return this.regexAccept(String.raw`(?:defb)`,t+1,n)}matchByteDirective_5(t,n){return this.regexAccept(String.raw`(?:defm)`,t+1,n)}matchWordDirective(t,n){return this.choice([()=>this.matchWordDirective_1(t+1,n),()=>this.matchWordDirective_2(t+1,n),()=>this.matchWordDirective_3(t+1,n)])}matchWordDirective_1(t,n){return this.regexAccept(String.raw`(?:dw)`,t+1,n)}matchWordDirective_2(t,n){return this.regexAccept(String.raw`(?:word)`,t+1,n)}matchWordDirective_3(t,n){return this.regexAccept(String.raw`(?:defw)`,t+1,n)}matchBlockDirective(t,n){return this.choice([()=>this.matchBlockDirective_1(t+1,n),()=>this.matchBlockDirective_2(t+1,n),()=>this.matchBlockDirective_3(t+1,n)])}matchBlockDirective_1(t,n){return this.regexAccept(String.raw`(?:block)`,t+1,n)}matchBlockDirective_2(t,n){return this.regexAccept(String.raw`(?:defs)`,t+1,n)}matchBlockDirective_3(t,n){return this.regexAccept(String.raw`(?:ds)`,t+1,n)}matchByteValue(t,n){return this.choice([()=>this.matchByteValue_1(t+1,n),()=>this.matchByteValue_2(t+1,n),()=>this.matchByteValue_3(t+1,n)])}matchByteValue_1(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchChar(t+1,n))!==null&&(s=new er(i)),s})}matchByteValue_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.matchStr(t+1,n))!==null&&(s=new sr(i)),s})}matchByteValue_3(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&(r=new rr(i,s)),r})}matchWordValue(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&(r=new cr(i,s)),r})}matchDataDirective(t,n){return this.choice([()=>this.matchDataDirective_1(t+1,n),()=>this.matchDataDirective_2(t+1,n),()=>this.matchDataDirective_3(t+1,n)])}matchDataDirective_1(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.matchByteDirective(t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchByteValue(t+1,n))!==null&&(r=this.loop(()=>this.matchDataDirective_$0(t+1,n),!0))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new ur(i,s,r)),c})}matchDataDirective_2(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.matchWordDirective(t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchWordValue(t+1,n))!==null&&(r=this.loop(()=>this.matchDataDirective_$1(t+1,n),!0))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new lr(i,s,r)),c})}matchDataDirective_3(t,n){return this.run(t,()=>{let i,s,r,c=null;return this.matchBlockDirective(t+1,n)!==null&&this.match__(t+1,n)!==null&&this.mark()!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&((r=this.matchDataDirective_$2(t+1,n))||!0)&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(c=new or(i,s,r)),c})}matchDataDirective_$0(t,n){return this.run(t,()=>{let i,s=null;return this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchByteValue(t+1,n))!==null&&(s={kind:"DataDirective_$0",inner:i}),s})}matchDataDirective_$1(t,n){return this.run(t,()=>{let i,s=null;return this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.matchWordValue(t+1,n))!==null&&(s={kind:"DataDirective_$1",inner:i}),s})}matchDataDirective_$2(t,n){return this.run(t,()=>{let i,s,r=null;return this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&(i=this.mark())!==null&&(s=this.matchExpression(t+1,n))!==null&&(r={kind:"DataDirective_$2",pos1:i,b:s}),r})}matchEscapeSequence(t,n){return this.choice([()=>this.matchEscapeSequence_1(t+1,n),()=>this.matchEscapeSequence_2(t+1,n),()=>this.matchEscapeSequence_3(t+1,n)])}matchEscapeSequence_1(t,n){return this.matchSimpleEscapeSequence(t+1,n)}matchEscapeSequence_2(t,n){return this.matchOctalEscapeSequence(t+1,n)}matchEscapeSequence_3(t,n){return this.matchHexadecimalEscapeSequence(t+1,n)}matchSimpleEscapeSequence(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&this.regexAccept(String.raw`(?:\\)`,t+1,n)!==null&&(s=this.matchSimpleEscapeSequence_$0(t+1,n))!==null&&(r=new ar(i,s)),r})}matchSimpleEscapeSequence_$0(t,n){return this.choice([()=>this.matchSimpleEscapeSequence_$0_1(t+1,n),()=>this.matchSimpleEscapeSequence_$0_2(t+1,n)])}matchSimpleEscapeSequence_$0_1(t,n){return this.regexAccept(String.raw`(?:")`,t+1,n)}matchSimpleEscapeSequence_$0_2(t,n){return this.regexAccept(String.raw`(?:n)`,t+1,n)}matchOctalEscapeSequence(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:\\)`,t+1,n)!==null&&(i=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[0-7]{1,3})`,t+1,n))!==null&&(r=new hr(i,s)),r})}matchHexadecimalEscapeSequence(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:\\x)`,t+1,n)!==null&&(i=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[0-9a-f]{1,2})`,t+1,n))!==null&&(r=new mr(i,s)),r})}matchSimpleChar(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[^\'\\\n])`,t+1,n))!==null&&(r=new _r(i,s)),r})}matchStringChar(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&(s=this.regexAccept(String.raw`(?:[^\"\\\n])`,t+1,n))!==null&&(r=new gr(i,s)),r})}matchChar(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:\')`,t+1,n)!==null&&(i=this.matchChar_$0(t+1,n))!==null&&this.regexAccept(String.raw`(?:\')`,t+1,n)!==null&&(s=new Ir(i)),s})}matchChar_$0(t,n){return this.choice([()=>this.matchChar_$0_1(t+1,n),()=>this.matchChar_$0_2(t+1,n)])}matchChar_$0_1(t,n){return this.matchSimpleChar(t+1,n)}matchChar_$0_2(t,n){return this.matchEscapeSequence(t+1,n)}matchStr(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:\")`,t+1,n)!==null&&(i=this.mark())!==null&&(s=this.loop(()=>this.matchStr_$0(t+1,n),!0))!==null&&this.regexAccept(String.raw`(?:\")`,t+1,n)!==null&&(r=new wr(i,s)),r})}matchStr_$0(t,n){return this.choice([()=>this.matchStr_$0_1(t+1,n),()=>this.matchStr_$0_2(t+1,n)])}matchStr_$0_1(t,n){return this.matchStringChar(t+1,n)}matchStr_$0_2(t,n){return this.matchEscapeSequence(t+1,n)}matchComment(t,n){return this.regexAccept(String.raw`(?:(//|;)[^\r\n]*)`,t+1,n)}matchOriginDirective(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:\.?org)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchnn(t+1,n))!==null&&(s={kind:"OriginDirective",address:i}),s})}matchFilename(t,n){return this.choice([()=>this.matchFilename_1(t+1,n),()=>this.matchFilename_2(t+1,n)])}matchFilename_1(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:")`,t+1,n)!==null&&(i=this.regexAccept(String.raw`(?:[^"\\:\*\?<>\|%#\$,]+)`,t+1,n))!==null&&this.regexAccept(String.raw`(?:")`,t+1,n)!==null&&(s={kind:"Filename_1",raw:i}),s})}matchFilename_2(t,n){return this.run(t,()=>{let i,s=null;return(i=this.regexAccept(String.raw`(?:[^ \t\r\n"\\:\*\?<>\|%#\$,]+)`,t+1,n))!==null&&(s={kind:"Filename_2",raw:i}),s})}matchIncludeDirective(t,n){return this.run(t,()=>{let i,s,r=null;return(i=this.mark())!==null&&this.regexAccept(String.raw`(?:\.?include)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(s=this.matchFilename(t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new xr(i,s)),r})}matchOutputDirective(t,n){return this.run(t,()=>{let i,s,r=null;return this.regexAccept(String.raw`(?:\.?output)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchFilename(t+1,n))!==null&&((s=this.matchOutputDirective_$0(t+1,n))||!0)&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(r=new Ar(i,s)),r})}matchOutputDirective_$0(t,n){return this.run(t,()=>{let i,s=null;return this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:,)`,t+1,n)!==null&&this.match_(t+1,n)!==null&&this.regexAccept(String.raw`(?:sld)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.matchFilename(t+1,n))!==null&&(s={kind:"OutputDirective_$0",name:i}),s})}matchDeviceDirective(t,n){return this.run(t,()=>{let i,s=null;return this.regexAccept(String.raw`(?:\.?device)`,t+1,n)!==null&&this.match__(t+1,n)!==null&&(i=this.regexAccept(String.raw`(?:[a-zA-Z][0-9a-zA-Z]*)`,t+1,n))!==null&&this.noConsume(()=>this.matcheos(t+1,n))!==null&&(s=new Lr(i)),s})}test(){const t=this.mark(),i=this.matchstart(0)!==null;return this.reset(t),i}parse(){const t=this.mark(),n=this.matchstart(0);if(n)return{ast:n,errs:[]};this.reset(t);const i=new Sr;this.clearMemos(),this.matchstart(0,i);const s=i.getErr();return{ast:n,errs:s!==null?[s]:[]}}mark(){return this.pos}loop(t,n=!1){const i=this.mark(),s=[];for(;;){const r=t();if(r===null)break;s.push(r)}return n||s.length>0?s:(this.reset(i),null)}run(t,n){const i=this.mark(),s=n();return s!==null?s:(this.reset(i),null)}choice(t){for(const n of t){const i=n();if(i!==null)return i}return null}regexAccept(t,n,i){return this.run(n,()=>{const s=new RegExp(t,"yi"),r=this.mark();s.lastIndex=r.overallPos;const c=this.tryConsume(s);return i&&i.record(r,c,{kind:"RegexMatch",literal:t.substring(3,t.length-1),negated:this.negating}),c})}tryConsume(t){const n=t.exec(this.input);if(n){let i=0,s=-1;for(let r=0;r<n[0].length;++r)n[0][r]===`
|
|
249
|
+
`&&(++i,s=r);return this.pos={overallPos:t.lastIndex,line:this.pos.line+i,offset:s===-1?this.pos.offset+n[0].length:n[0].length-s-1},n[0]}return null}noConsume(t){const n=this.mark(),i=t();return this.reset(n),i}negate(t){const n=this.mark(),i=this.negating;this.negating=!i;const s=t();return this.negating=i,this.reset(n),s===null?!0:null}memoise(t,n){const i=this.mark(),s=n.get(i.overallPos);if(this.memoSafe&&s!==void 0)return this.reset(s[1]),s[0];const r=t();return this.memoSafe&&n.set(i.overallPos,[r,this.mark()]),r}match$EOF(t){const n=this.finished()?{kind:"$EOF"}:null;return t&&t.record(this.mark(),n,{kind:"EOF",negated:this.negating}),n}}class Q{constructor(t,n){this.pos=t,this.expmatches=[...n]}toString(){return`Syntax Error at line ${this.pos.line}:${this.pos.offset}. Expected one of ${this.expmatches.map(t=>t.kind==="EOF"?" EOF":` ${t.negated?"not ":""}'${t.literal}'`)}`}}class Sr{constructor(){this.mxpos={overallPos:-1,line:-1,offset:-1},this.regexset=new Set,this.pmatches=[]}record(t,n,i){n===null!==i.negated&&(t.overallPos>this.mxpos.overallPos&&(this.mxpos=t,this.pmatches=[],this.regexset.clear()),this.mxpos.overallPos===t.overallPos&&(i.kind==="RegexMatch"?(this.regexset.has(i.literal)||this.pmatches.push(i),this.regexset.add(i.literal)):this.pmatches.push(i)))}getErr(){return this.mxpos.overallPos!==-1?new Q(this.mxpos,this.pmatches):null}}class m extends Error{constructor(t,n,i){super(i),this.filename=t,this.pos=n}toString(){return`File '${this.filename}', Line ${this.pos.line}:${this.pos.offset+1} - ${this.message}`}static formatMatch(t){if(t.kind==="EOF")return" end of code";const n=t.negated?"not ":"",i=t.literal.replace(/\\([^\\])/g,"$1").replace(/\\\\/g,"\\");return` ${n}${i}`}static formatError(t){if(t.expmatches.length===1){const n=t.expmatches[0],i=n.kind==="EOF"?"the end of the code":n.literal;return`${n.negated?"Does not expect ":"Expect "}${i}`}return`Syntax error, expected one of: ${t.expmatches.map(n=>m.formatMatch(n))}`}static fromSyntaxErr(t,n){return new m(t,n.pos,this.formatError(n))}static fromAny(t,n){return n instanceof m?n:n instanceof Q?this.fromSyntaxErr(t,n):new m(t,{line:1,offset:0,overallPos:0},n.toString())}static is(t){return t.filename!==void 0}static isArray(t){const n=t;return n.length!==void 0&&(n.length===0||n[0].filename!==void 0)}}function kr(e,t){let n=[],i=0;for(;i<e.length;){const s=e.slice(i,i+t);n=n.concat({address:i.toString(16).padStart(4,"0"),bytes:s.map(r=>r.toString(16).padStart(2,"0")).join(" ")}),i+=t}return n}exports.CompilationError=m;exports.compile=Vt;exports.computeLabels=y;exports.formatBytes=kr;exports.generate=j;exports.includeFile=X;exports.parseData=h;exports.setDevice=W;exports.setOutputName=z;
|