diff --git a/src/main/java/dk/camelot64/kickc/KickC.java b/src/main/java/dk/camelot64/kickc/KickC.java index 3a636e136..1258e0957 100644 --- a/src/main/java/dk/camelot64/kickc/KickC.java +++ b/src/main/java/dk/camelot64/kickc/KickC.java @@ -45,16 +45,19 @@ public class KickC implements Callable { @CommandLine.Option(names = {"-odir"}, description = "Path to the output folder, where the compiler places all generated files. By default the folder of the output file is used.") private Path outputDir = null; - @CommandLine.Option(names = {"-a"}, description = "Assemble the output file using KickAssembler. Produces a .prg file.") + @CommandLine.Option(names = {"-oext"}, description = "Override the output file extension. The default is specified in the target platform / linker configuration.") + private String outputExtension = null; + + @CommandLine.Option(names = {"-a"}, description = "Assemble the output file using KickAssembler. Produces a binary file.") private boolean assemble = false; - @CommandLine.Option(names = {"-e"}, description = "Execute the assembled prg file using VICE. Implicitly assembles the output.") + @CommandLine.Option(names = {"-e"}, description = "Execute the assembled binary file using an appropriate emulator. The emulator chosen depends on the target platform.") private boolean execute = false; @CommandLine.Option(names = {"-emu"}, description = "Execute the assembled program file by passing it to the named emulator. Implicitly assembles the output.") private String emulator = null; - @CommandLine.Option(names = {"-d"}, description = "Debug the assembled prg file using C64Debugger. Implicitly assembles the output.") + @CommandLine.Option(names = {"-d"}, description = "Debug the assembled binary file using C64Debugger. Implicitly assembles the output.") private boolean debug = false; @CommandLine.Option(names = {"-D"}, parameterConsumer = DefineConsumer.class, description = "Define macro to value (1 if no value given).") @@ -243,6 +246,11 @@ public class KickC implements Callable { program.getTargetPlatform().setLinkScriptFile(SourceLoader.loadFile(linkScript, currentPath, program.getTargetPlatformPaths())); } + // Update output file extension + if(outputExtension != null) { + program.getTargetPlatform().setOutFileExtension(outputExtension); + } + // Update CPU if(cpu != null) { TargetCpu targetCpu = TargetCpu.getTargetCpu(cpu, false); @@ -400,8 +408,8 @@ public class KickC implements Callable { } // Assemble the asm-file if instructed - String prgFileName = outputFileNameBase + ".prg"; - Path prgPath = outputDir.resolve(prgFileName); + String outputBinaryFileName = outputFileNameBase + "." + program.getTargetPlatform().getOutFileExtension(); + Path outputBinaryFilePath = outputDir.resolve(outputBinaryFileName); // Find emulator - if set by #pragma if(emulator == null) { @@ -415,10 +423,21 @@ public class KickC implements Callable { if(assemble || emulator != null) { Path kasmLogPath = outputDir.resolve(outputFileNameBase + ".klog"); - System.out.println("Assembling to " + prgPath.toString()); - String[] assembleCommand = {asmPath.toString(), "-log", kasmLogPath.toString(), "-o", prgPath.toString(), "-vicesymbols", "-showmem", "-debugdump"}; + System.out.println("Assembling to " + outputBinaryFilePath.toString()); + List assembleCommand = new ArrayList<>(); + assembleCommand.add(asmPath.toString()); + assembleCommand.add("-log"); + assembleCommand.add(kasmLogPath.toString()); + final String linkScriptBody = program.getTargetPlatform().getLinkScriptBody(); + if(!linkScriptBody.contains(".file") && !linkScriptBody.contains(".disk")) { + assembleCommand.add("-o"); + assembleCommand.add(outputBinaryFilePath.toString()); + } + assembleCommand.add("-vicesymbols"); + assembleCommand.add("-showmem"); + assembleCommand.add("-debugdump"); if(verbose) { - System.out.print("Assembling command: java -jar kickassembler-5.9.jar "); + System.out.print("Assembling command: java -jar KickAss.jar "); for(String cmd : assembleCommand) { System.out.print(cmd + " "); } @@ -431,7 +450,7 @@ public class KickC implements Callable { int kasmResult = -1; try { CharToPetsciiConverter.setCurrentEncoding("screencode_mixed"); - kasmResult = KickAssembler.main2(assembleCommand); + kasmResult = KickAssembler.main2(assembleCommand.toArray(new String[0])); } catch(Throwable e) { throw new CompileError("KickAssembling file failed! ", e); } finally { @@ -442,7 +461,7 @@ public class KickC implements Callable { } } - // Execute the prg-file if instructed + // Execute the binary file if instructed if(emulator != null) { // Find commandline options for the emulator @@ -458,8 +477,8 @@ public class KickC implements Callable { emuOptions = "-moncommands " + viceSymbolsPath.toAbsolutePath().toString() + " "; } - System.out.println("Executing " + prgPath + " using " + emulator); - String executeCommand = emulator + " " + emuOptions + prgPath.toAbsolutePath().toString(); + System.out.println("Executing " + outputBinaryFilePath + " using " + emulator); + String executeCommand = emulator + " " + emuOptions + outputBinaryFilePath.toAbsolutePath().toString(); if(verbose) { System.out.println("Executing command: " + executeCommand); } diff --git a/src/main/java/dk/camelot64/kickc/model/TargetPlatform.java b/src/main/java/dk/camelot64/kickc/model/TargetPlatform.java index 1e679159c..1c06c5b90 100644 --- a/src/main/java/dk/camelot64/kickc/model/TargetPlatform.java +++ b/src/main/java/dk/camelot64/kickc/model/TargetPlatform.java @@ -1,6 +1,8 @@ package dk.camelot64.kickc.model; import java.io.File; +import java.io.IOException; +import java.nio.file.Files; import java.util.Map; /** @@ -26,6 +28,9 @@ public class TargetPlatform { /** The command to use for starting an emulator. */ private String emulatorCommand; + /** The output file extension. */ + private String outFileExtension; + /** A number of preprocessor macro defines. */ private Map defines = null; @@ -57,6 +62,19 @@ public class TargetPlatform { this.linkScriptFile = linkScriptFile; } + public String getLinkScriptBody() { + final File linkScriptFile = getLinkScriptFile(); + if(linkScriptFile == null) + throw new InternalError("No link script found! Cannot link program."); + String linkScriptBody = null; + try { + linkScriptBody = new String(Files.readAllBytes(linkScriptFile.toPath())); + } catch(IOException e) { + throw new CompileError("Cannot read link script file " + linkScriptFile.getAbsolutePath(), e); + } + return linkScriptBody; + } + public String getEmulatorCommand() { return emulatorCommand; } @@ -65,6 +83,14 @@ public class TargetPlatform { this.emulatorCommand = emulatorCommand; } + public String getOutFileExtension() { + return outFileExtension; + } + + public void setOutFileExtension(String outFileExtension) { + this.outFileExtension = outFileExtension; + } + public Map getDefines() { return defines; } diff --git a/src/main/java/dk/camelot64/kickc/parser/CTargetPlatformParser.java b/src/main/java/dk/camelot64/kickc/parser/CTargetPlatformParser.java index 9a5cc337c..3306b0276 100644 --- a/src/main/java/dk/camelot64/kickc/parser/CTargetPlatformParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/CTargetPlatformParser.java @@ -34,25 +34,38 @@ public class CTargetPlatformParser { final JsonReader jsonReader = Json.createReader(new BufferedInputStream(new FileInputStream(platformFile))); final JsonObject platformJson = jsonReader.readObject(); TargetPlatform targetPlatform = new TargetPlatform(platformName); - final String cpuName = platformJson.getString("cpu", null); - if(cpuName != null) - targetPlatform.setCpu(TargetCpu.getTargetCpu(cpuName, false)); - final String linkScriptName = platformJson.getString("link", null); - if(linkScriptName != null) - targetPlatform.setLinkScriptFile(SourceLoader.loadFile(linkScriptName, currentFolder, platformSearchPaths)); - final String emulatorCommand = platformJson.getString("emulator", null); - if(emulatorCommand != null) - targetPlatform.setEmulatorCommand(emulatorCommand); - final JsonObject defines = platformJson.getJsonObject("defines"); - if(defines != null) { - final Set macroNames = defines.keySet(); - final LinkedHashMap macros = new LinkedHashMap<>(); - for(String macroName : macroNames) { - final JsonValue jsonValue = defines.get(macroName); - final String macroBody = jsonValue.toString(); - macros.put(macroName, macroBody); + { + final String cpuName = platformJson.getString("cpu", null); + if(cpuName != null) + targetPlatform.setCpu(TargetCpu.getTargetCpu(cpuName, false)); + } + { + final String linkScriptName = platformJson.getString("link", null); + if(linkScriptName != null) + targetPlatform.setLinkScriptFile(SourceLoader.loadFile(linkScriptName, currentFolder, platformSearchPaths)); + } + { + final String emulatorCommand = platformJson.getString("emulator", null); + if(emulatorCommand != null) + targetPlatform.setEmulatorCommand(emulatorCommand); + } + { + final String outExtension = platformJson.getString("extension", null); + if(outExtension != null) + targetPlatform.setOutFileExtension(outExtension); + } + { + final JsonObject defines = platformJson.getJsonObject("defines"); + if(defines != null) { + final Set macroNames = defines.keySet(); + final LinkedHashMap macros = new LinkedHashMap<>(); + for(String macroName : macroNames) { + final JsonValue jsonValue = defines.get(macroName); + final String macroBody = jsonValue.toString(); + macros.put(macroName, macroBody); + } + targetPlatform.setDefines(macros); } - targetPlatform.setDefines(macros); } return targetPlatform; } catch(CompileError | IOException | JsonParsingException e) { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 index 9ea1d1726..8816c34ee 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.g4 @@ -66,6 +66,7 @@ RESERVE:'reserve' ; PC:'pc'; TARGET:'target'; LINK:'link'; +EXTENSION:'extension'; EMULATOR:'emulator'; CPU:'cpu'; CODESEG:'code_seg'; diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp index e598d6c80..cbfb34610 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.interp @@ -43,6 +43,7 @@ null 'pc' 'target' 'link' +'extension' 'emulator' 'cpu' 'code_seg' @@ -208,6 +209,7 @@ RESERVE PC TARGET LINK +EXTENSION EMULATOR CPU CODESEG @@ -371,6 +373,7 @@ RESERVE PC TARGET LINK +EXTENSION EMULATOR CPU CODESEG @@ -511,4 +514,4 @@ ASM_MODE IMPORT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 164, 1646, 8, 1, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 457, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 5, 65, 670, 10, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 5, 91, 845, 10, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 5, 92, 884, 10, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 5, 93, 895, 10, 93, 3, 94, 3, 94, 3, 94, 3, 94, 7, 94, 901, 10, 94, 12, 94, 14, 94, 904, 11, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 951, 10, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 5, 107, 1000, 10, 107, 3, 108, 3, 108, 3, 108, 5, 108, 1005, 10, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 5, 109, 1012, 10, 109, 3, 109, 7, 109, 1015, 10, 109, 12, 109, 14, 109, 1018, 11, 109, 3, 109, 3, 109, 6, 109, 1022, 10, 109, 13, 109, 14, 109, 1023, 3, 110, 7, 110, 1027, 10, 110, 12, 110, 14, 110, 1030, 11, 110, 3, 110, 3, 110, 6, 110, 1034, 10, 110, 13, 110, 14, 110, 1035, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 5, 111, 1043, 10, 111, 3, 111, 7, 111, 1046, 10, 111, 12, 111, 14, 111, 1049, 11, 111, 3, 111, 3, 111, 6, 111, 1053, 10, 111, 13, 111, 14, 111, 1054, 3, 112, 3, 112, 3, 112, 5, 112, 1060, 10, 112, 3, 112, 3, 112, 3, 112, 5, 112, 1065, 10, 112, 3, 113, 3, 113, 3, 113, 6, 113, 1070, 10, 113, 13, 113, 14, 113, 1071, 3, 113, 3, 113, 6, 113, 1076, 10, 113, 13, 113, 14, 113, 1077, 5, 113, 1080, 10, 113, 3, 114, 6, 114, 1083, 10, 114, 13, 114, 14, 114, 1084, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 5, 115, 1092, 10, 115, 3, 115, 6, 115, 1095, 10, 115, 13, 115, 14, 115, 1096, 3, 116, 3, 116, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 7, 119, 1107, 10, 119, 12, 119, 14, 119, 1110, 11, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 7, 122, 1122, 10, 122, 12, 122, 14, 122, 1125, 11, 122, 3, 122, 3, 122, 5, 122, 1129, 10, 122, 3, 122, 3, 122, 5, 122, 1133, 10, 122, 5, 122, 1135, 10, 122, 3, 122, 5, 122, 1138, 10, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 5, 123, 1146, 10, 123, 3, 123, 5, 123, 1149, 10, 123, 3, 123, 3, 123, 3, 124, 6, 124, 1154, 10, 124, 13, 124, 14, 124, 1155, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 7, 125, 1164, 10, 125, 12, 125, 14, 125, 1167, 11, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 7, 126, 1175, 10, 126, 12, 126, 14, 126, 1178, 11, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 5, 128, 1413, 10, 128, 3, 129, 3, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 142, 3, 142, 3, 143, 3, 143, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 5, 147, 1457, 10, 147, 3, 148, 3, 148, 3, 148, 5, 148, 1462, 10, 148, 3, 149, 3, 149, 7, 149, 1466, 10, 149, 12, 149, 14, 149, 1469, 11, 149, 3, 149, 3, 149, 6, 149, 1473, 10, 149, 13, 149, 14, 149, 1474, 3, 150, 7, 150, 1478, 10, 150, 12, 150, 14, 150, 1481, 11, 150, 3, 150, 3, 150, 6, 150, 1485, 10, 150, 13, 150, 14, 150, 1486, 3, 151, 3, 151, 7, 151, 1491, 10, 151, 12, 151, 14, 151, 1494, 11, 151, 3, 151, 3, 151, 6, 151, 1498, 10, 151, 13, 151, 14, 151, 1499, 3, 152, 3, 152, 3, 152, 5, 152, 1505, 10, 152, 3, 153, 3, 153, 6, 153, 1509, 10, 153, 13, 153, 14, 153, 1510, 3, 154, 6, 154, 1514, 10, 154, 13, 154, 14, 154, 1515, 3, 155, 3, 155, 6, 155, 1520, 10, 155, 13, 155, 14, 155, 1521, 3, 156, 3, 156, 3, 157, 3, 157, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 5, 159, 1534, 10, 159, 3, 159, 3, 159, 3, 160, 3, 160, 6, 160, 1540, 10, 160, 13, 160, 14, 160, 1541, 3, 161, 3, 161, 7, 161, 1546, 10, 161, 12, 161, 14, 161, 1549, 11, 161, 3, 162, 3, 162, 7, 162, 1553, 10, 162, 12, 162, 14, 162, 1556, 11, 162, 3, 163, 3, 163, 3, 164, 3, 164, 3, 165, 6, 165, 1563, 10, 165, 13, 165, 14, 165, 1564, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 7, 166, 1573, 10, 166, 12, 166, 14, 166, 1576, 11, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 7, 167, 1584, 10, 167, 12, 167, 14, 167, 1587, 11, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 6, 168, 1596, 10, 168, 13, 168, 14, 168, 1597, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 7, 169, 1607, 10, 169, 12, 169, 14, 169, 1610, 11, 169, 3, 169, 3, 169, 3, 169, 3, 170, 6, 170, 1616, 10, 170, 13, 170, 14, 170, 1617, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 7, 171, 1626, 10, 171, 12, 171, 14, 171, 1629, 11, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 7, 172, 1637, 10, 172, 12, 172, 14, 172, 1640, 11, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 6, 902, 1176, 1585, 1638, 2, 173, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 2, 235, 2, 237, 2, 239, 118, 241, 2, 243, 2, 245, 119, 247, 120, 249, 121, 251, 122, 253, 123, 255, 124, 257, 125, 259, 126, 261, 127, 263, 128, 265, 129, 267, 130, 269, 131, 271, 132, 273, 133, 275, 134, 277, 135, 279, 136, 281, 137, 283, 138, 285, 139, 287, 140, 289, 141, 291, 142, 293, 143, 295, 144, 297, 145, 299, 146, 301, 147, 303, 148, 305, 149, 307, 150, 309, 151, 311, 152, 313, 2, 315, 2, 317, 2, 319, 153, 321, 154, 323, 155, 325, 156, 327, 2, 329, 2, 331, 157, 333, 158, 335, 159, 337, 160, 339, 161, 341, 162, 343, 163, 345, 164, 5, 2, 3, 4, 21, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 4, 2, 50, 59, 99, 104, 3, 2, 41, 41, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 7, 2, 47, 59, 67, 92, 94, 94, 97, 97, 99, 124, 2, 1791, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 3, 255, 3, 2, 2, 2, 3, 257, 3, 2, 2, 2, 3, 259, 3, 2, 2, 2, 3, 261, 3, 2, 2, 2, 3, 263, 3, 2, 2, 2, 3, 265, 3, 2, 2, 2, 3, 267, 3, 2, 2, 2, 3, 269, 3, 2, 2, 2, 3, 271, 3, 2, 2, 2, 3, 273, 3, 2, 2, 2, 3, 275, 3, 2, 2, 2, 3, 277, 3, 2, 2, 2, 3, 279, 3, 2, 2, 2, 3, 281, 3, 2, 2, 2, 3, 283, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 3, 287, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 3, 291, 3, 2, 2, 2, 3, 293, 3, 2, 2, 2, 3, 295, 3, 2, 2, 2, 3, 297, 3, 2, 2, 2, 3, 299, 3, 2, 2, 2, 3, 301, 3, 2, 2, 2, 3, 303, 3, 2, 2, 2, 3, 305, 3, 2, 2, 2, 3, 307, 3, 2, 2, 2, 3, 309, 3, 2, 2, 2, 3, 311, 3, 2, 2, 2, 3, 319, 3, 2, 2, 2, 3, 321, 3, 2, 2, 2, 3, 323, 3, 2, 2, 2, 3, 325, 3, 2, 2, 2, 3, 331, 3, 2, 2, 2, 3, 333, 3, 2, 2, 2, 3, 335, 3, 2, 2, 2, 4, 337, 3, 2, 2, 2, 4, 339, 3, 2, 2, 2, 4, 341, 3, 2, 2, 2, 4, 343, 3, 2, 2, 2, 4, 345, 3, 2, 2, 2, 5, 347, 3, 2, 2, 2, 7, 350, 3, 2, 2, 2, 9, 352, 3, 2, 2, 2, 11, 354, 3, 2, 2, 2, 13, 356, 3, 2, 2, 2, 15, 358, 3, 2, 2, 2, 17, 360, 3, 2, 2, 2, 19, 362, 3, 2, 2, 2, 21, 364, 3, 2, 2, 2, 23, 366, 3, 2, 2, 2, 25, 369, 3, 2, 2, 2, 27, 373, 3, 2, 2, 2, 29, 375, 3, 2, 2, 2, 31, 377, 3, 2, 2, 2, 33, 380, 3, 2, 2, 2, 35, 382, 3, 2, 2, 2, 37, 384, 3, 2, 2, 2, 39, 386, 3, 2, 2, 2, 41, 388, 3, 2, 2, 2, 43, 390, 3, 2, 2, 2, 45, 393, 3, 2, 2, 2, 47, 396, 3, 2, 2, 2, 49, 398, 3, 2, 2, 2, 51, 400, 3, 2, 2, 2, 53, 402, 3, 2, 2, 2, 55, 404, 3, 2, 2, 2, 57, 407, 3, 2, 2, 2, 59, 410, 3, 2, 2, 2, 61, 413, 3, 2, 2, 2, 63, 416, 3, 2, 2, 2, 65, 418, 3, 2, 2, 2, 67, 421, 3, 2, 2, 2, 69, 424, 3, 2, 2, 2, 71, 426, 3, 2, 2, 2, 73, 429, 3, 2, 2, 2, 75, 432, 3, 2, 2, 2, 77, 456, 3, 2, 2, 2, 79, 458, 3, 2, 2, 2, 81, 466, 3, 2, 2, 2, 83, 474, 3, 2, 2, 2, 85, 477, 3, 2, 2, 2, 87, 484, 3, 2, 2, 2, 89, 489, 3, 2, 2, 2, 91, 498, 3, 2, 2, 2, 93, 502, 3, 2, 2, 2, 95, 511, 3, 2, 2, 2, 97, 520, 3, 2, 2, 2, 99, 529, 3, 2, 2, 2, 101, 535, 3, 2, 2, 2, 103, 542, 3, 2, 2, 2, 105, 549, 3, 2, 2, 2, 107, 555, 3, 2, 2, 2, 109, 562, 3, 2, 2, 2, 111, 571, 3, 2, 2, 2, 113, 578, 3, 2, 2, 2, 115, 588, 3, 2, 2, 2, 117, 597, 3, 2, 2, 2, 119, 607, 3, 2, 2, 2, 121, 612, 3, 2, 2, 2, 123, 618, 3, 2, 2, 2, 125, 624, 3, 2, 2, 2, 127, 629, 3, 2, 2, 2, 129, 641, 3, 2, 2, 2, 131, 669, 3, 2, 2, 2, 133, 671, 3, 2, 2, 2, 135, 681, 3, 2, 2, 2, 137, 684, 3, 2, 2, 2, 139, 689, 3, 2, 2, 2, 141, 695, 3, 2, 2, 2, 143, 698, 3, 2, 2, 2, 145, 702, 3, 2, 2, 2, 147, 709, 3, 2, 2, 2, 149, 716, 3, 2, 2, 2, 151, 722, 3, 2, 2, 2, 153, 731, 3, 2, 2, 2, 155, 737, 3, 2, 2, 2, 157, 745, 3, 2, 2, 2, 159, 750, 3, 2, 2, 2, 161, 757, 3, 2, 2, 2, 163, 762, 3, 2, 2, 2, 165, 769, 3, 2, 2, 2, 167, 776, 3, 2, 2, 2, 169, 784, 3, 2, 2, 2, 171, 792, 3, 2, 2, 2, 173, 801, 3, 2, 2, 2, 175, 806, 3, 2, 2, 2, 177, 815, 3, 2, 2, 2, 179, 821, 3, 2, 2, 2, 181, 828, 3, 2, 2, 2, 183, 844, 3, 2, 2, 2, 185, 883, 3, 2, 2, 2, 187, 894, 3, 2, 2, 2, 189, 896, 3, 2, 2, 2, 191, 908, 3, 2, 2, 2, 193, 918, 3, 2, 2, 2, 195, 929, 3, 2, 2, 2, 197, 937, 3, 2, 2, 2, 199, 950, 3, 2, 2, 2, 201, 952, 3, 2, 2, 2, 203, 959, 3, 2, 2, 2, 205, 966, 3, 2, 2, 2, 207, 974, 3, 2, 2, 2, 209, 978, 3, 2, 2, 2, 211, 984, 3, 2, 2, 2, 213, 990, 3, 2, 2, 2, 215, 999, 3, 2, 2, 2, 217, 1004, 3, 2, 2, 2, 219, 1011, 3, 2, 2, 2, 221, 1028, 3, 2, 2, 2, 223, 1042, 3, 2, 2, 2, 225, 1059, 3, 2, 2, 2, 227, 1079, 3, 2, 2, 2, 229, 1082, 3, 2, 2, 2, 231, 1091, 3, 2, 2, 2, 233, 1098, 3, 2, 2, 2, 235, 1100, 3, 2, 2, 2, 237, 1102, 3, 2, 2, 2, 239, 1104, 3, 2, 2, 2, 241, 1113, 3, 2, 2, 2, 243, 1115, 3, 2, 2, 2, 245, 1117, 3, 2, 2, 2, 247, 1139, 3, 2, 2, 2, 249, 1153, 3, 2, 2, 2, 251, 1159, 3, 2, 2, 2, 253, 1170, 3, 2, 2, 2, 255, 1184, 3, 2, 2, 2, 257, 1412, 3, 2, 2, 2, 259, 1414, 3, 2, 2, 2, 261, 1416, 3, 2, 2, 2, 263, 1418, 3, 2, 2, 2, 265, 1420, 3, 2, 2, 2, 267, 1422, 3, 2, 2, 2, 269, 1424, 3, 2, 2, 2, 271, 1426, 3, 2, 2, 2, 273, 1428, 3, 2, 2, 2, 275, 1430, 3, 2, 2, 2, 277, 1433, 3, 2, 2, 2, 279, 1436, 3, 2, 2, 2, 281, 1438, 3, 2, 2, 2, 283, 1440, 3, 2, 2, 2, 285, 1442, 3, 2, 2, 2, 287, 1444, 3, 2, 2, 2, 289, 1446, 3, 2, 2, 2, 291, 1448, 3, 2, 2, 2, 293, 1451, 3, 2, 2, 2, 295, 1456, 3, 2, 2, 2, 297, 1461, 3, 2, 2, 2, 299, 1463, 3, 2, 2, 2, 301, 1479, 3, 2, 2, 2, 303, 1488, 3, 2, 2, 2, 305, 1504, 3, 2, 2, 2, 307, 1506, 3, 2, 2, 2, 309, 1513, 3, 2, 2, 2, 311, 1517, 3, 2, 2, 2, 313, 1523, 3, 2, 2, 2, 315, 1525, 3, 2, 2, 2, 317, 1527, 3, 2, 2, 2, 319, 1529, 3, 2, 2, 2, 321, 1537, 3, 2, 2, 2, 323, 1543, 3, 2, 2, 2, 325, 1550, 3, 2, 2, 2, 327, 1557, 3, 2, 2, 2, 329, 1559, 3, 2, 2, 2, 331, 1562, 3, 2, 2, 2, 333, 1568, 3, 2, 2, 2, 335, 1579, 3, 2, 2, 2, 337, 1593, 3, 2, 2, 2, 339, 1602, 3, 2, 2, 2, 341, 1615, 3, 2, 2, 2, 343, 1621, 3, 2, 2, 2, 345, 1632, 3, 2, 2, 2, 347, 348, 7, 125, 2, 2, 348, 349, 8, 2, 2, 2, 349, 6, 3, 2, 2, 2, 350, 351, 7, 127, 2, 2, 351, 8, 3, 2, 2, 2, 352, 353, 7, 93, 2, 2, 353, 10, 3, 2, 2, 2, 354, 355, 7, 95, 2, 2, 355, 12, 3, 2, 2, 2, 356, 357, 7, 42, 2, 2, 357, 14, 3, 2, 2, 2, 358, 359, 7, 43, 2, 2, 359, 16, 3, 2, 2, 2, 360, 361, 7, 61, 2, 2, 361, 18, 3, 2, 2, 2, 362, 363, 7, 60, 2, 2, 363, 20, 3, 2, 2, 2, 364, 365, 7, 46, 2, 2, 365, 22, 3, 2, 2, 2, 366, 367, 7, 48, 2, 2, 367, 368, 7, 48, 2, 2, 368, 24, 3, 2, 2, 2, 369, 370, 7, 48, 2, 2, 370, 371, 7, 48, 2, 2, 371, 372, 7, 48, 2, 2, 372, 26, 3, 2, 2, 2, 373, 374, 7, 65, 2, 2, 374, 28, 3, 2, 2, 2, 375, 376, 7, 48, 2, 2, 376, 30, 3, 2, 2, 2, 377, 378, 7, 47, 2, 2, 378, 379, 7, 64, 2, 2, 379, 32, 3, 2, 2, 2, 380, 381, 7, 45, 2, 2, 381, 34, 3, 2, 2, 2, 382, 383, 7, 47, 2, 2, 383, 36, 3, 2, 2, 2, 384, 385, 7, 44, 2, 2, 385, 38, 3, 2, 2, 2, 386, 387, 7, 49, 2, 2, 387, 40, 3, 2, 2, 2, 388, 389, 7, 39, 2, 2, 389, 42, 3, 2, 2, 2, 390, 391, 7, 45, 2, 2, 391, 392, 7, 45, 2, 2, 392, 44, 3, 2, 2, 2, 393, 394, 7, 47, 2, 2, 394, 395, 7, 47, 2, 2, 395, 46, 3, 2, 2, 2, 396, 397, 7, 40, 2, 2, 397, 48, 3, 2, 2, 2, 398, 399, 7, 128, 2, 2, 399, 50, 3, 2, 2, 2, 400, 401, 7, 96, 2, 2, 401, 52, 3, 2, 2, 2, 402, 403, 7, 126, 2, 2, 403, 54, 3, 2, 2, 2, 404, 405, 7, 62, 2, 2, 405, 406, 7, 62, 2, 2, 406, 56, 3, 2, 2, 2, 407, 408, 7, 64, 2, 2, 408, 409, 7, 64, 2, 2, 409, 58, 3, 2, 2, 2, 410, 411, 7, 63, 2, 2, 411, 412, 7, 63, 2, 2, 412, 60, 3, 2, 2, 2, 413, 414, 7, 35, 2, 2, 414, 415, 7, 63, 2, 2, 415, 62, 3, 2, 2, 2, 416, 417, 7, 62, 2, 2, 417, 64, 3, 2, 2, 2, 418, 419, 7, 62, 2, 2, 419, 420, 7, 63, 2, 2, 420, 66, 3, 2, 2, 2, 421, 422, 7, 64, 2, 2, 422, 423, 7, 63, 2, 2, 423, 68, 3, 2, 2, 2, 424, 425, 7, 64, 2, 2, 425, 70, 3, 2, 2, 2, 426, 427, 7, 40, 2, 2, 427, 428, 7, 40, 2, 2, 428, 72, 3, 2, 2, 2, 429, 430, 7, 126, 2, 2, 430, 431, 7, 126, 2, 2, 431, 74, 3, 2, 2, 2, 432, 433, 7, 63, 2, 2, 433, 76, 3, 2, 2, 2, 434, 435, 7, 45, 2, 2, 435, 457, 7, 63, 2, 2, 436, 437, 7, 47, 2, 2, 437, 457, 7, 63, 2, 2, 438, 439, 7, 44, 2, 2, 439, 457, 7, 63, 2, 2, 440, 441, 7, 49, 2, 2, 441, 457, 7, 63, 2, 2, 442, 443, 7, 39, 2, 2, 443, 457, 7, 63, 2, 2, 444, 445, 7, 62, 2, 2, 445, 446, 7, 62, 2, 2, 446, 457, 7, 63, 2, 2, 447, 448, 7, 64, 2, 2, 448, 449, 7, 64, 2, 2, 449, 457, 7, 63, 2, 2, 450, 451, 7, 40, 2, 2, 451, 457, 7, 63, 2, 2, 452, 453, 7, 126, 2, 2, 453, 457, 7, 63, 2, 2, 454, 455, 7, 96, 2, 2, 455, 457, 7, 63, 2, 2, 456, 434, 3, 2, 2, 2, 456, 436, 3, 2, 2, 2, 456, 438, 3, 2, 2, 2, 456, 440, 3, 2, 2, 2, 456, 442, 3, 2, 2, 2, 456, 444, 3, 2, 2, 2, 456, 447, 3, 2, 2, 2, 456, 450, 3, 2, 2, 2, 456, 452, 3, 2, 2, 2, 456, 454, 3, 2, 2, 2, 457, 78, 3, 2, 2, 2, 458, 459, 7, 118, 2, 2, 459, 460, 7, 123, 2, 2, 460, 461, 7, 114, 2, 2, 461, 462, 7, 103, 2, 2, 462, 463, 7, 102, 2, 2, 463, 464, 7, 103, 2, 2, 464, 465, 7, 104, 2, 2, 465, 80, 3, 2, 2, 2, 466, 467, 7, 116, 2, 2, 467, 468, 7, 103, 2, 2, 468, 469, 7, 117, 2, 2, 469, 470, 7, 103, 2, 2, 470, 471, 7, 116, 2, 2, 471, 472, 7, 120, 2, 2, 472, 473, 7, 103, 2, 2, 473, 82, 3, 2, 2, 2, 474, 475, 7, 114, 2, 2, 475, 476, 7, 101, 2, 2, 476, 84, 3, 2, 2, 2, 477, 478, 7, 118, 2, 2, 478, 479, 7, 99, 2, 2, 479, 480, 7, 116, 2, 2, 480, 481, 7, 105, 2, 2, 481, 482, 7, 103, 2, 2, 482, 483, 7, 118, 2, 2, 483, 86, 3, 2, 2, 2, 484, 485, 7, 110, 2, 2, 485, 486, 7, 107, 2, 2, 486, 487, 7, 112, 2, 2, 487, 488, 7, 109, 2, 2, 488, 88, 3, 2, 2, 2, 489, 490, 7, 103, 2, 2, 490, 491, 7, 111, 2, 2, 491, 492, 7, 119, 2, 2, 492, 493, 7, 110, 2, 2, 493, 494, 7, 99, 2, 2, 494, 495, 7, 118, 2, 2, 495, 496, 7, 113, 2, 2, 496, 497, 7, 116, 2, 2, 497, 90, 3, 2, 2, 2, 498, 499, 7, 101, 2, 2, 499, 500, 7, 114, 2, 2, 500, 501, 7, 119, 2, 2, 501, 92, 3, 2, 2, 2, 502, 503, 7, 101, 2, 2, 503, 504, 7, 113, 2, 2, 504, 505, 7, 102, 2, 2, 505, 506, 7, 103, 2, 2, 506, 507, 7, 97, 2, 2, 507, 508, 7, 117, 2, 2, 508, 509, 7, 103, 2, 2, 509, 510, 7, 105, 2, 2, 510, 94, 3, 2, 2, 2, 511, 512, 7, 102, 2, 2, 512, 513, 7, 99, 2, 2, 513, 514, 7, 118, 2, 2, 514, 515, 7, 99, 2, 2, 515, 516, 7, 97, 2, 2, 516, 517, 7, 117, 2, 2, 517, 518, 7, 103, 2, 2, 518, 519, 7, 105, 2, 2, 519, 96, 3, 2, 2, 2, 520, 521, 7, 103, 2, 2, 521, 522, 7, 112, 2, 2, 522, 523, 7, 101, 2, 2, 523, 524, 7, 113, 2, 2, 524, 525, 7, 102, 2, 2, 525, 526, 7, 107, 2, 2, 526, 527, 7, 112, 2, 2, 527, 528, 7, 105, 2, 2, 528, 98, 3, 2, 2, 2, 529, 530, 7, 101, 2, 2, 530, 531, 7, 113, 2, 2, 531, 532, 7, 112, 2, 2, 532, 533, 7, 117, 2, 2, 533, 534, 7, 118, 2, 2, 534, 100, 3, 2, 2, 2, 535, 536, 7, 103, 2, 2, 536, 537, 7, 122, 2, 2, 537, 538, 7, 118, 2, 2, 538, 539, 7, 103, 2, 2, 539, 540, 7, 116, 2, 2, 540, 541, 7, 112, 2, 2, 541, 102, 3, 2, 2, 2, 542, 543, 7, 103, 2, 2, 543, 544, 7, 122, 2, 2, 544, 545, 7, 114, 2, 2, 545, 546, 7, 113, 2, 2, 546, 547, 7, 116, 2, 2, 547, 548, 7, 118, 2, 2, 548, 104, 3, 2, 2, 2, 549, 550, 7, 99, 2, 2, 550, 551, 7, 110, 2, 2, 551, 552, 7, 107, 2, 2, 552, 553, 7, 105, 2, 2, 553, 554, 7, 112, 2, 2, 554, 106, 3, 2, 2, 2, 555, 556, 7, 107, 2, 2, 556, 557, 7, 112, 2, 2, 557, 558, 7, 110, 2, 2, 558, 559, 7, 107, 2, 2, 559, 560, 7, 112, 2, 2, 560, 561, 7, 103, 2, 2, 561, 108, 3, 2, 2, 2, 562, 563, 7, 120, 2, 2, 563, 564, 7, 113, 2, 2, 564, 565, 7, 110, 2, 2, 565, 566, 7, 99, 2, 2, 566, 567, 7, 118, 2, 2, 567, 568, 7, 107, 2, 2, 568, 569, 7, 110, 2, 2, 569, 570, 7, 103, 2, 2, 570, 110, 3, 2, 2, 2, 571, 572, 7, 117, 2, 2, 572, 573, 7, 118, 2, 2, 573, 574, 7, 99, 2, 2, 574, 575, 7, 118, 2, 2, 575, 576, 7, 107, 2, 2, 576, 577, 7, 101, 2, 2, 577, 112, 3, 2, 2, 2, 578, 579, 7, 107, 2, 2, 579, 580, 7, 112, 2, 2, 580, 581, 7, 118, 2, 2, 581, 582, 7, 103, 2, 2, 582, 583, 7, 116, 2, 2, 583, 584, 7, 116, 2, 2, 584, 585, 7, 119, 2, 2, 585, 586, 7, 114, 2, 2, 586, 587, 7, 118, 2, 2, 587, 114, 3, 2, 2, 2, 588, 589, 7, 116, 2, 2, 589, 590, 7, 103, 2, 2, 590, 591, 7, 105, 2, 2, 591, 592, 7, 107, 2, 2, 592, 593, 7, 117, 2, 2, 593, 594, 7, 118, 2, 2, 594, 595, 7, 103, 2, 2, 595, 596, 7, 116, 2, 2, 596, 116, 3, 2, 2, 2, 597, 598, 7, 97, 2, 2, 598, 599, 7, 97, 2, 2, 599, 600, 7, 99, 2, 2, 600, 601, 7, 102, 2, 2, 601, 602, 7, 102, 2, 2, 602, 603, 7, 116, 2, 2, 603, 604, 7, 103, 2, 2, 604, 605, 7, 117, 2, 2, 605, 606, 7, 117, 2, 2, 606, 118, 3, 2, 2, 2, 607, 608, 7, 97, 2, 2, 608, 609, 7, 97, 2, 2, 609, 610, 7, 124, 2, 2, 610, 611, 7, 114, 2, 2, 611, 120, 3, 2, 2, 2, 612, 613, 7, 97, 2, 2, 613, 614, 7, 97, 2, 2, 614, 615, 7, 111, 2, 2, 615, 616, 7, 103, 2, 2, 616, 617, 7, 111, 2, 2, 617, 122, 3, 2, 2, 2, 618, 619, 7, 97, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 117, 2, 2, 621, 622, 7, 117, 2, 2, 622, 623, 7, 99, 2, 2, 623, 124, 3, 2, 2, 2, 624, 625, 7, 97, 2, 2, 625, 626, 7, 97, 2, 2, 626, 627, 7, 111, 2, 2, 627, 628, 7, 99, 2, 2, 628, 126, 3, 2, 2, 2, 629, 630, 7, 97, 2, 2, 630, 631, 7, 97, 2, 2, 631, 632, 7, 107, 2, 2, 632, 633, 7, 112, 2, 2, 633, 634, 7, 118, 2, 2, 634, 635, 7, 116, 2, 2, 635, 636, 7, 107, 2, 2, 636, 637, 7, 112, 2, 2, 637, 638, 7, 117, 2, 2, 638, 639, 7, 107, 2, 2, 639, 640, 7, 101, 2, 2, 640, 128, 3, 2, 2, 2, 641, 642, 7, 101, 2, 2, 642, 643, 7, 99, 2, 2, 643, 644, 7, 110, 2, 2, 644, 645, 7, 110, 2, 2, 645, 646, 7, 107, 2, 2, 646, 647, 7, 112, 2, 2, 647, 648, 7, 105, 2, 2, 648, 130, 3, 2, 2, 2, 649, 650, 7, 97, 2, 2, 650, 651, 7, 97, 2, 2, 651, 652, 7, 117, 2, 2, 652, 653, 7, 118, 2, 2, 653, 654, 7, 99, 2, 2, 654, 655, 7, 101, 2, 2, 655, 656, 7, 109, 2, 2, 656, 657, 7, 101, 2, 2, 657, 658, 7, 99, 2, 2, 658, 659, 7, 110, 2, 2, 659, 670, 7, 110, 2, 2, 660, 661, 7, 97, 2, 2, 661, 662, 7, 97, 2, 2, 662, 663, 7, 114, 2, 2, 663, 664, 7, 106, 2, 2, 664, 665, 7, 107, 2, 2, 665, 666, 7, 101, 2, 2, 666, 667, 7, 99, 2, 2, 667, 668, 7, 110, 2, 2, 668, 670, 7, 110, 2, 2, 669, 649, 3, 2, 2, 2, 669, 660, 3, 2, 2, 2, 670, 132, 3, 2, 2, 2, 671, 672, 7, 120, 2, 2, 672, 673, 7, 99, 2, 2, 673, 674, 7, 116, 2, 2, 674, 675, 7, 97, 2, 2, 675, 676, 7, 111, 2, 2, 676, 677, 7, 113, 2, 2, 677, 678, 7, 102, 2, 2, 678, 679, 7, 103, 2, 2, 679, 680, 7, 110, 2, 2, 680, 134, 3, 2, 2, 2, 681, 682, 7, 107, 2, 2, 682, 683, 7, 104, 2, 2, 683, 136, 3, 2, 2, 2, 684, 685, 7, 103, 2, 2, 685, 686, 7, 110, 2, 2, 686, 687, 7, 117, 2, 2, 687, 688, 7, 103, 2, 2, 688, 138, 3, 2, 2, 2, 689, 690, 7, 121, 2, 2, 690, 691, 7, 106, 2, 2, 691, 692, 7, 107, 2, 2, 692, 693, 7, 110, 2, 2, 693, 694, 7, 103, 2, 2, 694, 140, 3, 2, 2, 2, 695, 696, 7, 102, 2, 2, 696, 697, 7, 113, 2, 2, 697, 142, 3, 2, 2, 2, 698, 699, 7, 104, 2, 2, 699, 700, 7, 113, 2, 2, 700, 701, 7, 116, 2, 2, 701, 144, 3, 2, 2, 2, 702, 703, 7, 117, 2, 2, 703, 704, 7, 121, 2, 2, 704, 705, 7, 107, 2, 2, 705, 706, 7, 118, 2, 2, 706, 707, 7, 101, 2, 2, 707, 708, 7, 106, 2, 2, 708, 146, 3, 2, 2, 2, 709, 710, 7, 116, 2, 2, 710, 711, 7, 103, 2, 2, 711, 712, 7, 118, 2, 2, 712, 713, 7, 119, 2, 2, 713, 714, 7, 116, 2, 2, 714, 715, 7, 112, 2, 2, 715, 148, 3, 2, 2, 2, 716, 717, 7, 100, 2, 2, 717, 718, 7, 116, 2, 2, 718, 719, 7, 103, 2, 2, 719, 720, 7, 99, 2, 2, 720, 721, 7, 109, 2, 2, 721, 150, 3, 2, 2, 2, 722, 723, 7, 101, 2, 2, 723, 724, 7, 113, 2, 2, 724, 725, 7, 112, 2, 2, 725, 726, 7, 118, 2, 2, 726, 727, 7, 107, 2, 2, 727, 728, 7, 112, 2, 2, 728, 729, 7, 119, 2, 2, 729, 730, 7, 103, 2, 2, 730, 152, 3, 2, 2, 2, 731, 732, 7, 99, 2, 2, 732, 733, 7, 117, 2, 2, 733, 734, 7, 111, 2, 2, 734, 735, 3, 2, 2, 2, 735, 736, 8, 76, 3, 2, 736, 154, 3, 2, 2, 2, 737, 738, 7, 102, 2, 2, 738, 739, 7, 103, 2, 2, 739, 740, 7, 104, 2, 2, 740, 741, 7, 99, 2, 2, 741, 742, 7, 119, 2, 2, 742, 743, 7, 110, 2, 2, 743, 744, 7, 118, 2, 2, 744, 156, 3, 2, 2, 2, 745, 746, 7, 101, 2, 2, 746, 747, 7, 99, 2, 2, 747, 748, 7, 117, 2, 2, 748, 749, 7, 103, 2, 2, 749, 158, 3, 2, 2, 2, 750, 751, 7, 117, 2, 2, 751, 752, 7, 118, 2, 2, 752, 753, 7, 116, 2, 2, 753, 754, 7, 119, 2, 2, 754, 755, 7, 101, 2, 2, 755, 756, 7, 118, 2, 2, 756, 160, 3, 2, 2, 2, 757, 758, 7, 103, 2, 2, 758, 759, 7, 112, 2, 2, 759, 760, 7, 119, 2, 2, 760, 761, 7, 111, 2, 2, 761, 162, 3, 2, 2, 2, 762, 763, 7, 117, 2, 2, 763, 764, 7, 107, 2, 2, 764, 765, 7, 124, 2, 2, 765, 766, 7, 103, 2, 2, 766, 767, 7, 113, 2, 2, 767, 768, 7, 104, 2, 2, 768, 164, 3, 2, 2, 2, 769, 770, 7, 118, 2, 2, 770, 771, 7, 123, 2, 2, 771, 772, 7, 114, 2, 2, 772, 773, 7, 103, 2, 2, 773, 774, 7, 107, 2, 2, 774, 775, 7, 102, 2, 2, 775, 166, 3, 2, 2, 2, 776, 777, 7, 102, 2, 2, 777, 778, 7, 103, 2, 2, 778, 779, 7, 104, 2, 2, 779, 780, 7, 107, 2, 2, 780, 781, 7, 112, 2, 2, 781, 782, 7, 103, 2, 2, 782, 783, 7, 102, 2, 2, 783, 168, 3, 2, 2, 2, 784, 785, 7, 109, 2, 2, 785, 786, 7, 107, 2, 2, 786, 787, 7, 101, 2, 2, 787, 788, 7, 109, 2, 2, 788, 789, 7, 99, 2, 2, 789, 790, 7, 117, 2, 2, 790, 791, 7, 111, 2, 2, 791, 170, 3, 2, 2, 2, 792, 793, 7, 116, 2, 2, 793, 794, 7, 103, 2, 2, 794, 795, 7, 117, 2, 2, 795, 796, 7, 113, 2, 2, 796, 797, 7, 119, 2, 2, 797, 798, 7, 116, 2, 2, 798, 799, 7, 101, 2, 2, 799, 800, 7, 103, 2, 2, 800, 172, 3, 2, 2, 2, 801, 802, 7, 119, 2, 2, 802, 803, 7, 117, 2, 2, 803, 804, 7, 103, 2, 2, 804, 805, 7, 117, 2, 2, 805, 174, 3, 2, 2, 2, 806, 807, 7, 101, 2, 2, 807, 808, 7, 110, 2, 2, 808, 809, 7, 113, 2, 2, 809, 810, 7, 100, 2, 2, 810, 811, 7, 100, 2, 2, 811, 812, 7, 103, 2, 2, 812, 813, 7, 116, 2, 2, 813, 814, 7, 117, 2, 2, 814, 176, 3, 2, 2, 2, 815, 816, 7, 100, 2, 2, 816, 817, 7, 123, 2, 2, 817, 818, 7, 118, 2, 2, 818, 819, 7, 103, 2, 2, 819, 820, 7, 117, 2, 2, 820, 178, 3, 2, 2, 2, 821, 822, 7, 101, 2, 2, 822, 823, 7, 123, 2, 2, 823, 824, 7, 101, 2, 2, 824, 825, 7, 110, 2, 2, 825, 826, 7, 103, 2, 2, 826, 827, 7, 117, 2, 2, 827, 180, 3, 2, 2, 2, 828, 829, 7, 35, 2, 2, 829, 182, 3, 2, 2, 2, 830, 831, 7, 117, 2, 2, 831, 832, 7, 107, 2, 2, 832, 833, 7, 105, 2, 2, 833, 834, 7, 112, 2, 2, 834, 835, 7, 103, 2, 2, 835, 845, 7, 102, 2, 2, 836, 837, 7, 119, 2, 2, 837, 838, 7, 112, 2, 2, 838, 839, 7, 117, 2, 2, 839, 840, 7, 107, 2, 2, 840, 841, 7, 105, 2, 2, 841, 842, 7, 112, 2, 2, 842, 843, 7, 103, 2, 2, 843, 845, 7, 102, 2, 2, 844, 830, 3, 2, 2, 2, 844, 836, 3, 2, 2, 2, 845, 184, 3, 2, 2, 2, 846, 847, 7, 100, 2, 2, 847, 848, 7, 123, 2, 2, 848, 849, 7, 118, 2, 2, 849, 884, 7, 103, 2, 2, 850, 851, 7, 121, 2, 2, 851, 852, 7, 113, 2, 2, 852, 853, 7, 116, 2, 2, 853, 884, 7, 102, 2, 2, 854, 855, 7, 102, 2, 2, 855, 856, 7, 121, 2, 2, 856, 857, 7, 113, 2, 2, 857, 858, 7, 116, 2, 2, 858, 884, 7, 102, 2, 2, 859, 860, 7, 100, 2, 2, 860, 861, 7, 113, 2, 2, 861, 862, 7, 113, 2, 2, 862, 884, 7, 110, 2, 2, 863, 864, 7, 101, 2, 2, 864, 865, 7, 106, 2, 2, 865, 866, 7, 99, 2, 2, 866, 884, 7, 116, 2, 2, 867, 868, 7, 117, 2, 2, 868, 869, 7, 106, 2, 2, 869, 870, 7, 113, 2, 2, 870, 871, 7, 116, 2, 2, 871, 884, 7, 118, 2, 2, 872, 873, 7, 107, 2, 2, 873, 874, 7, 112, 2, 2, 874, 884, 7, 118, 2, 2, 875, 876, 7, 110, 2, 2, 876, 877, 7, 113, 2, 2, 877, 878, 7, 112, 2, 2, 878, 884, 7, 105, 2, 2, 879, 880, 7, 120, 2, 2, 880, 881, 7, 113, 2, 2, 881, 882, 7, 107, 2, 2, 882, 884, 7, 102, 2, 2, 883, 846, 3, 2, 2, 2, 883, 850, 3, 2, 2, 2, 883, 854, 3, 2, 2, 2, 883, 859, 3, 2, 2, 2, 883, 863, 3, 2, 2, 2, 883, 867, 3, 2, 2, 2, 883, 872, 3, 2, 2, 2, 883, 875, 3, 2, 2, 2, 883, 879, 3, 2, 2, 2, 884, 186, 3, 2, 2, 2, 885, 886, 7, 118, 2, 2, 886, 887, 7, 116, 2, 2, 887, 888, 7, 119, 2, 2, 888, 895, 7, 103, 2, 2, 889, 890, 7, 104, 2, 2, 890, 891, 7, 99, 2, 2, 891, 892, 7, 110, 2, 2, 892, 893, 7, 117, 2, 2, 893, 895, 7, 103, 2, 2, 894, 885, 3, 2, 2, 2, 894, 889, 3, 2, 2, 2, 895, 188, 3, 2, 2, 2, 896, 897, 7, 125, 2, 2, 897, 898, 7, 125, 2, 2, 898, 902, 3, 2, 2, 2, 899, 901, 11, 2, 2, 2, 900, 899, 3, 2, 2, 2, 901, 904, 3, 2, 2, 2, 902, 903, 3, 2, 2, 2, 902, 900, 3, 2, 2, 2, 903, 905, 3, 2, 2, 2, 904, 902, 3, 2, 2, 2, 905, 906, 7, 127, 2, 2, 906, 907, 7, 127, 2, 2, 907, 190, 3, 2, 2, 2, 908, 909, 7, 37, 2, 2, 909, 910, 7, 107, 2, 2, 910, 911, 7, 111, 2, 2, 911, 912, 7, 114, 2, 2, 912, 913, 7, 113, 2, 2, 913, 914, 7, 116, 2, 2, 914, 915, 7, 118, 2, 2, 915, 916, 3, 2, 2, 2, 916, 917, 8, 95, 4, 2, 917, 192, 3, 2, 2, 2, 918, 919, 7, 37, 2, 2, 919, 920, 7, 107, 2, 2, 920, 921, 7, 112, 2, 2, 921, 922, 7, 101, 2, 2, 922, 923, 7, 110, 2, 2, 923, 924, 7, 119, 2, 2, 924, 925, 7, 102, 2, 2, 925, 926, 7, 103, 2, 2, 926, 927, 3, 2, 2, 2, 927, 928, 8, 96, 5, 2, 928, 194, 3, 2, 2, 2, 929, 930, 7, 37, 2, 2, 930, 931, 7, 114, 2, 2, 931, 932, 7, 116, 2, 2, 932, 933, 7, 99, 2, 2, 933, 934, 7, 105, 2, 2, 934, 935, 7, 111, 2, 2, 935, 936, 7, 99, 2, 2, 936, 196, 3, 2, 2, 2, 937, 938, 7, 37, 2, 2, 938, 939, 7, 102, 2, 2, 939, 940, 7, 103, 2, 2, 940, 941, 7, 104, 2, 2, 941, 942, 7, 107, 2, 2, 942, 943, 7, 112, 2, 2, 943, 944, 7, 103, 2, 2, 944, 198, 3, 2, 2, 2, 945, 946, 7, 94, 2, 2, 946, 951, 7, 12, 2, 2, 947, 948, 7, 94, 2, 2, 948, 949, 7, 15, 2, 2, 949, 951, 7, 12, 2, 2, 950, 945, 3, 2, 2, 2, 950, 947, 3, 2, 2, 2, 951, 200, 3, 2, 2, 2, 952, 953, 7, 37, 2, 2, 953, 954, 7, 119, 2, 2, 954, 955, 7, 112, 2, 2, 955, 956, 7, 102, 2, 2, 956, 957, 7, 103, 2, 2, 957, 958, 7, 104, 2, 2, 958, 202, 3, 2, 2, 2, 959, 960, 7, 37, 2, 2, 960, 961, 7, 107, 2, 2, 961, 962, 7, 104, 2, 2, 962, 963, 7, 102, 2, 2, 963, 964, 7, 103, 2, 2, 964, 965, 7, 104, 2, 2, 965, 204, 3, 2, 2, 2, 966, 967, 7, 37, 2, 2, 967, 968, 7, 107, 2, 2, 968, 969, 7, 104, 2, 2, 969, 970, 7, 112, 2, 2, 970, 971, 7, 102, 2, 2, 971, 972, 7, 103, 2, 2, 972, 973, 7, 104, 2, 2, 973, 206, 3, 2, 2, 2, 974, 975, 7, 37, 2, 2, 975, 976, 7, 107, 2, 2, 976, 977, 7, 104, 2, 2, 977, 208, 3, 2, 2, 2, 978, 979, 7, 37, 2, 2, 979, 980, 7, 103, 2, 2, 980, 981, 7, 110, 2, 2, 981, 982, 7, 107, 2, 2, 982, 983, 7, 104, 2, 2, 983, 210, 3, 2, 2, 2, 984, 985, 7, 37, 2, 2, 985, 986, 7, 103, 2, 2, 986, 987, 7, 110, 2, 2, 987, 988, 7, 117, 2, 2, 988, 989, 7, 103, 2, 2, 989, 212, 3, 2, 2, 2, 990, 991, 7, 37, 2, 2, 991, 992, 7, 103, 2, 2, 992, 993, 7, 112, 2, 2, 993, 994, 7, 102, 2, 2, 994, 995, 7, 107, 2, 2, 995, 996, 7, 104, 2, 2, 996, 214, 3, 2, 2, 2, 997, 1000, 5, 217, 108, 2, 998, 1000, 5, 225, 112, 2, 999, 997, 3, 2, 2, 2, 999, 998, 3, 2, 2, 2, 1000, 216, 3, 2, 2, 2, 1001, 1005, 5, 219, 109, 2, 1002, 1005, 5, 221, 110, 2, 1003, 1005, 5, 223, 111, 2, 1004, 1001, 3, 2, 2, 2, 1004, 1002, 3, 2, 2, 2, 1004, 1003, 3, 2, 2, 2, 1005, 218, 3, 2, 2, 2, 1006, 1012, 7, 39, 2, 2, 1007, 1008, 7, 50, 2, 2, 1008, 1012, 7, 100, 2, 2, 1009, 1010, 7, 50, 2, 2, 1010, 1012, 7, 68, 2, 2, 1011, 1006, 3, 2, 2, 2, 1011, 1007, 3, 2, 2, 2, 1011, 1009, 3, 2, 2, 2, 1012, 1016, 3, 2, 2, 2, 1013, 1015, 5, 233, 116, 2, 1014, 1013, 3, 2, 2, 2, 1015, 1018, 3, 2, 2, 2, 1016, 1014, 3, 2, 2, 2, 1016, 1017, 3, 2, 2, 2, 1017, 1019, 3, 2, 2, 2, 1018, 1016, 3, 2, 2, 2, 1019, 1021, 7, 48, 2, 2, 1020, 1022, 5, 233, 116, 2, 1021, 1020, 3, 2, 2, 2, 1022, 1023, 3, 2, 2, 2, 1023, 1021, 3, 2, 2, 2, 1023, 1024, 3, 2, 2, 2, 1024, 220, 3, 2, 2, 2, 1025, 1027, 5, 235, 117, 2, 1026, 1025, 3, 2, 2, 2, 1027, 1030, 3, 2, 2, 2, 1028, 1026, 3, 2, 2, 2, 1028, 1029, 3, 2, 2, 2, 1029, 1031, 3, 2, 2, 2, 1030, 1028, 3, 2, 2, 2, 1031, 1033, 7, 48, 2, 2, 1032, 1034, 5, 235, 117, 2, 1033, 1032, 3, 2, 2, 2, 1034, 1035, 3, 2, 2, 2, 1035, 1033, 3, 2, 2, 2, 1035, 1036, 3, 2, 2, 2, 1036, 222, 3, 2, 2, 2, 1037, 1043, 7, 38, 2, 2, 1038, 1039, 7, 50, 2, 2, 1039, 1043, 7, 122, 2, 2, 1040, 1041, 7, 50, 2, 2, 1041, 1043, 7, 90, 2, 2, 1042, 1037, 3, 2, 2, 2, 1042, 1038, 3, 2, 2, 2, 1042, 1040, 3, 2, 2, 2, 1043, 1047, 3, 2, 2, 2, 1044, 1046, 5, 237, 118, 2, 1045, 1044, 3, 2, 2, 2, 1046, 1049, 3, 2, 2, 2, 1047, 1045, 3, 2, 2, 2, 1047, 1048, 3, 2, 2, 2, 1048, 1050, 3, 2, 2, 2, 1049, 1047, 3, 2, 2, 2, 1050, 1052, 7, 48, 2, 2, 1051, 1053, 5, 237, 118, 2, 1052, 1051, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 1052, 3, 2, 2, 2, 1054, 1055, 3, 2, 2, 2, 1055, 224, 3, 2, 2, 2, 1056, 1060, 5, 229, 114, 2, 1057, 1060, 5, 231, 115, 2, 1058, 1060, 5, 227, 113, 2, 1059, 1056, 3, 2, 2, 2, 1059, 1057, 3, 2, 2, 2, 1059, 1058, 3, 2, 2, 2, 1060, 1064, 3, 2, 2, 2, 1061, 1062, 9, 2, 2, 2, 1062, 1065, 9, 3, 2, 2, 1063, 1065, 7, 110, 2, 2, 1064, 1061, 3, 2, 2, 2, 1064, 1063, 3, 2, 2, 2, 1064, 1065, 3, 2, 2, 2, 1065, 226, 3, 2, 2, 2, 1066, 1067, 7, 50, 2, 2, 1067, 1069, 9, 4, 2, 2, 1068, 1070, 5, 233, 116, 2, 1069, 1068, 3, 2, 2, 2, 1070, 1071, 3, 2, 2, 2, 1071, 1069, 3, 2, 2, 2, 1071, 1072, 3, 2, 2, 2, 1072, 1080, 3, 2, 2, 2, 1073, 1075, 7, 39, 2, 2, 1074, 1076, 5, 233, 116, 2, 1075, 1074, 3, 2, 2, 2, 1076, 1077, 3, 2, 2, 2, 1077, 1075, 3, 2, 2, 2, 1077, 1078, 3, 2, 2, 2, 1078, 1080, 3, 2, 2, 2, 1079, 1066, 3, 2, 2, 2, 1079, 1073, 3, 2, 2, 2, 1080, 228, 3, 2, 2, 2, 1081, 1083, 5, 235, 117, 2, 1082, 1081, 3, 2, 2, 2, 1083, 1084, 3, 2, 2, 2, 1084, 1082, 3, 2, 2, 2, 1084, 1085, 3, 2, 2, 2, 1085, 230, 3, 2, 2, 2, 1086, 1092, 7, 38, 2, 2, 1087, 1088, 7, 50, 2, 2, 1088, 1092, 7, 122, 2, 2, 1089, 1090, 7, 50, 2, 2, 1090, 1092, 7, 90, 2, 2, 1091, 1086, 3, 2, 2, 2, 1091, 1087, 3, 2, 2, 2, 1091, 1089, 3, 2, 2, 2, 1092, 1094, 3, 2, 2, 2, 1093, 1095, 5, 237, 118, 2, 1094, 1093, 3, 2, 2, 2, 1095, 1096, 3, 2, 2, 2, 1096, 1094, 3, 2, 2, 2, 1096, 1097, 3, 2, 2, 2, 1097, 232, 3, 2, 2, 2, 1098, 1099, 9, 5, 2, 2, 1099, 234, 3, 2, 2, 2, 1100, 1101, 9, 6, 2, 2, 1101, 236, 3, 2, 2, 2, 1102, 1103, 9, 7, 2, 2, 1103, 238, 3, 2, 2, 2, 1104, 1108, 5, 241, 120, 2, 1105, 1107, 5, 243, 121, 2, 1106, 1105, 3, 2, 2, 2, 1107, 1110, 3, 2, 2, 2, 1108, 1106, 3, 2, 2, 2, 1108, 1109, 3, 2, 2, 2, 1109, 1111, 3, 2, 2, 2, 1110, 1108, 3, 2, 2, 2, 1111, 1112, 8, 119, 6, 2, 1112, 240, 3, 2, 2, 2, 1113, 1114, 9, 8, 2, 2, 1114, 242, 3, 2, 2, 2, 1115, 1116, 9, 9, 2, 2, 1116, 244, 3, 2, 2, 2, 1117, 1123, 7, 36, 2, 2, 1118, 1119, 7, 94, 2, 2, 1119, 1122, 7, 36, 2, 2, 1120, 1122, 10, 10, 2, 2, 1121, 1118, 3, 2, 2, 2, 1121, 1120, 3, 2, 2, 2, 1122, 1125, 3, 2, 2, 2, 1123, 1121, 3, 2, 2, 2, 1123, 1124, 3, 2, 2, 2, 1124, 1126, 3, 2, 2, 2, 1125, 1123, 3, 2, 2, 2, 1126, 1128, 7, 36, 2, 2, 1127, 1129, 9, 11, 2, 2, 1128, 1127, 3, 2, 2, 2, 1128, 1129, 3, 2, 2, 2, 1129, 1134, 3, 2, 2, 2, 1130, 1132, 9, 12, 2, 2, 1131, 1133, 9, 13, 2, 2, 1132, 1131, 3, 2, 2, 2, 1132, 1133, 3, 2, 2, 2, 1133, 1135, 3, 2, 2, 2, 1134, 1130, 3, 2, 2, 2, 1134, 1135, 3, 2, 2, 2, 1135, 1137, 3, 2, 2, 2, 1136, 1138, 9, 11, 2, 2, 1137, 1136, 3, 2, 2, 2, 1137, 1138, 3, 2, 2, 2, 1138, 246, 3, 2, 2, 2, 1139, 1148, 7, 41, 2, 2, 1140, 1145, 7, 94, 2, 2, 1141, 1146, 9, 14, 2, 2, 1142, 1143, 7, 122, 2, 2, 1143, 1144, 9, 15, 2, 2, 1144, 1146, 9, 15, 2, 2, 1145, 1141, 3, 2, 2, 2, 1145, 1142, 3, 2, 2, 2, 1146, 1149, 3, 2, 2, 2, 1147, 1149, 10, 16, 2, 2, 1148, 1140, 3, 2, 2, 2, 1148, 1147, 3, 2, 2, 2, 1149, 1150, 3, 2, 2, 2, 1150, 1151, 7, 41, 2, 2, 1151, 248, 3, 2, 2, 2, 1152, 1154, 9, 17, 2, 2, 1153, 1152, 3, 2, 2, 2, 1154, 1155, 3, 2, 2, 2, 1155, 1153, 3, 2, 2, 2, 1155, 1156, 3, 2, 2, 2, 1156, 1157, 3, 2, 2, 2, 1157, 1158, 8, 124, 7, 2, 1158, 250, 3, 2, 2, 2, 1159, 1160, 7, 49, 2, 2, 1160, 1161, 7, 49, 2, 2, 1161, 1165, 3, 2, 2, 2, 1162, 1164, 10, 18, 2, 2, 1163, 1162, 3, 2, 2, 2, 1164, 1167, 3, 2, 2, 2, 1165, 1163, 3, 2, 2, 2, 1165, 1166, 3, 2, 2, 2, 1166, 1168, 3, 2, 2, 2, 1167, 1165, 3, 2, 2, 2, 1168, 1169, 8, 125, 8, 2, 1169, 252, 3, 2, 2, 2, 1170, 1171, 7, 49, 2, 2, 1171, 1172, 7, 44, 2, 2, 1172, 1176, 3, 2, 2, 2, 1173, 1175, 11, 2, 2, 2, 1174, 1173, 3, 2, 2, 2, 1175, 1178, 3, 2, 2, 2, 1176, 1177, 3, 2, 2, 2, 1176, 1174, 3, 2, 2, 2, 1177, 1179, 3, 2, 2, 2, 1178, 1176, 3, 2, 2, 2, 1179, 1180, 7, 44, 2, 2, 1180, 1181, 7, 49, 2, 2, 1181, 1182, 3, 2, 2, 2, 1182, 1183, 8, 126, 8, 2, 1183, 254, 3, 2, 2, 2, 1184, 1185, 7, 48, 2, 2, 1185, 1186, 7, 100, 2, 2, 1186, 1187, 7, 123, 2, 2, 1187, 1188, 7, 118, 2, 2, 1188, 1189, 7, 103, 2, 2, 1189, 256, 3, 2, 2, 2, 1190, 1191, 7, 100, 2, 2, 1191, 1192, 7, 116, 2, 2, 1192, 1413, 7, 109, 2, 2, 1193, 1194, 7, 113, 2, 2, 1194, 1195, 7, 116, 2, 2, 1195, 1413, 7, 99, 2, 2, 1196, 1197, 7, 109, 2, 2, 1197, 1198, 7, 107, 2, 2, 1198, 1413, 7, 110, 2, 2, 1199, 1200, 7, 117, 2, 2, 1200, 1201, 7, 110, 2, 2, 1201, 1413, 7, 113, 2, 2, 1202, 1203, 7, 112, 2, 2, 1203, 1204, 7, 113, 2, 2, 1204, 1413, 7, 114, 2, 2, 1205, 1206, 7, 99, 2, 2, 1206, 1207, 7, 117, 2, 2, 1207, 1413, 7, 110, 2, 2, 1208, 1209, 7, 114, 2, 2, 1209, 1210, 7, 106, 2, 2, 1210, 1413, 7, 114, 2, 2, 1211, 1212, 7, 99, 2, 2, 1212, 1213, 7, 112, 2, 2, 1213, 1413, 7, 101, 2, 2, 1214, 1215, 7, 100, 2, 2, 1215, 1216, 7, 114, 2, 2, 1216, 1413, 7, 110, 2, 2, 1217, 1218, 7, 101, 2, 2, 1218, 1219, 7, 110, 2, 2, 1219, 1413, 7, 101, 2, 2, 1220, 1221, 7, 108, 2, 2, 1221, 1222, 7, 117, 2, 2, 1222, 1413, 7, 116, 2, 2, 1223, 1224, 7, 99, 2, 2, 1224, 1225, 7, 112, 2, 2, 1225, 1413, 7, 102, 2, 2, 1226, 1227, 7, 116, 2, 2, 1227, 1228, 7, 110, 2, 2, 1228, 1413, 7, 99, 2, 2, 1229, 1230, 7, 100, 2, 2, 1230, 1231, 7, 107, 2, 2, 1231, 1413, 7, 118, 2, 2, 1232, 1233, 7, 116, 2, 2, 1233, 1234, 7, 113, 2, 2, 1234, 1413, 7, 110, 2, 2, 1235, 1236, 7, 114, 2, 2, 1236, 1237, 7, 110, 2, 2, 1237, 1413, 7, 99, 2, 2, 1238, 1239, 7, 114, 2, 2, 1239, 1240, 7, 110, 2, 2, 1240, 1413, 7, 114, 2, 2, 1241, 1242, 7, 100, 2, 2, 1242, 1243, 7, 111, 2, 2, 1243, 1413, 7, 107, 2, 2, 1244, 1245, 7, 117, 2, 2, 1245, 1246, 7, 103, 2, 2, 1246, 1413, 7, 101, 2, 2, 1247, 1248, 7, 116, 2, 2, 1248, 1249, 7, 118, 2, 2, 1249, 1413, 7, 107, 2, 2, 1250, 1251, 7, 103, 2, 2, 1251, 1252, 7, 113, 2, 2, 1252, 1413, 7, 116, 2, 2, 1253, 1254, 7, 117, 2, 2, 1254, 1255, 7, 116, 2, 2, 1255, 1413, 7, 103, 2, 2, 1256, 1257, 7, 110, 2, 2, 1257, 1258, 7, 117, 2, 2, 1258, 1413, 7, 116, 2, 2, 1259, 1260, 7, 114, 2, 2, 1260, 1261, 7, 106, 2, 2, 1261, 1413, 7, 99, 2, 2, 1262, 1263, 7, 99, 2, 2, 1263, 1264, 7, 110, 2, 2, 1264, 1413, 7, 116, 2, 2, 1265, 1266, 7, 108, 2, 2, 1266, 1267, 7, 111, 2, 2, 1267, 1413, 7, 114, 2, 2, 1268, 1269, 7, 100, 2, 2, 1269, 1270, 7, 120, 2, 2, 1270, 1413, 7, 101, 2, 2, 1271, 1272, 7, 101, 2, 2, 1272, 1273, 7, 110, 2, 2, 1273, 1413, 7, 107, 2, 2, 1274, 1275, 7, 116, 2, 2, 1275, 1276, 7, 118, 2, 2, 1276, 1413, 7, 117, 2, 2, 1277, 1278, 7, 99, 2, 2, 1278, 1279, 7, 102, 2, 2, 1279, 1413, 7, 101, 2, 2, 1280, 1281, 7, 116, 2, 2, 1281, 1282, 7, 116, 2, 2, 1282, 1413, 7, 99, 2, 2, 1283, 1284, 7, 100, 2, 2, 1284, 1285, 7, 120, 2, 2, 1285, 1413, 7, 117, 2, 2, 1286, 1287, 7, 117, 2, 2, 1287, 1288, 7, 103, 2, 2, 1288, 1413, 7, 107, 2, 2, 1289, 1290, 7, 117, 2, 2, 1290, 1291, 7, 99, 2, 2, 1291, 1413, 7, 122, 2, 2, 1292, 1293, 7, 117, 2, 2, 1293, 1294, 7, 118, 2, 2, 1294, 1413, 7, 123, 2, 2, 1295, 1296, 7, 117, 2, 2, 1296, 1297, 7, 118, 2, 2, 1297, 1413, 7, 99, 2, 2, 1298, 1299, 7, 117, 2, 2, 1299, 1300, 7, 118, 2, 2, 1300, 1413, 7, 122, 2, 2, 1301, 1302, 7, 102, 2, 2, 1302, 1303, 7, 103, 2, 2, 1303, 1413, 7, 123, 2, 2, 1304, 1305, 7, 118, 2, 2, 1305, 1306, 7, 122, 2, 2, 1306, 1413, 7, 99, 2, 2, 1307, 1308, 7, 122, 2, 2, 1308, 1309, 7, 99, 2, 2, 1309, 1413, 7, 99, 2, 2, 1310, 1311, 7, 100, 2, 2, 1311, 1312, 7, 101, 2, 2, 1312, 1413, 7, 101, 2, 2, 1313, 1314, 7, 99, 2, 2, 1314, 1315, 7, 106, 2, 2, 1315, 1413, 7, 122, 2, 2, 1316, 1317, 7, 118, 2, 2, 1317, 1318, 7, 123, 2, 2, 1318, 1413, 7, 99, 2, 2, 1319, 1320, 7, 118, 2, 2, 1320, 1321, 7, 122, 2, 2, 1321, 1413, 7, 117, 2, 2, 1322, 1323, 7, 118, 2, 2, 1323, 1324, 7, 99, 2, 2, 1324, 1413, 7, 117, 2, 2, 1325, 1326, 7, 117, 2, 2, 1326, 1327, 7, 106, 2, 2, 1327, 1413, 7, 123, 2, 2, 1328, 1329, 7, 117, 2, 2, 1329, 1330, 7, 106, 2, 2, 1330, 1413, 7, 122, 2, 2, 1331, 1332, 7, 110, 2, 2, 1332, 1333, 7, 102, 2, 2, 1333, 1413, 7, 123, 2, 2, 1334, 1335, 7, 110, 2, 2, 1335, 1336, 7, 102, 2, 2, 1336, 1413, 7, 99, 2, 2, 1337, 1338, 7, 110, 2, 2, 1338, 1339, 7, 102, 2, 2, 1339, 1413, 7, 122, 2, 2, 1340, 1341, 7, 110, 2, 2, 1341, 1342, 7, 99, 2, 2, 1342, 1413, 7, 122, 2, 2, 1343, 1344, 7, 118, 2, 2, 1344, 1345, 7, 99, 2, 2, 1345, 1413, 7, 123, 2, 2, 1346, 1347, 7, 118, 2, 2, 1347, 1348, 7, 99, 2, 2, 1348, 1413, 7, 122, 2, 2, 1349, 1350, 7, 100, 2, 2, 1350, 1351, 7, 101, 2, 2, 1351, 1413, 7, 117, 2, 2, 1352, 1353, 7, 101, 2, 2, 1353, 1354, 7, 110, 2, 2, 1354, 1413, 7, 120, 2, 2, 1355, 1356, 7, 118, 2, 2, 1356, 1357, 7, 117, 2, 2, 1357, 1413, 7, 122, 2, 2, 1358, 1359, 7, 110, 2, 2, 1359, 1360, 7, 99, 2, 2, 1360, 1413, 7, 117, 2, 2, 1361, 1362, 7, 101, 2, 2, 1362, 1363, 7, 114, 2, 2, 1363, 1413, 7, 123, 2, 2, 1364, 1365, 7, 101, 2, 2, 1365, 1366, 7, 111, 2, 2, 1366, 1413, 7, 114, 2, 2, 1367, 1368, 7, 101, 2, 2, 1368, 1369, 7, 114, 2, 2, 1369, 1413, 7, 122, 2, 2, 1370, 1371, 7, 102, 2, 2, 1371, 1372, 7, 101, 2, 2, 1372, 1413, 7, 114, 2, 2, 1373, 1374, 7, 102, 2, 2, 1374, 1375, 7, 103, 2, 2, 1375, 1413, 7, 101, 2, 2, 1376, 1377, 7, 107, 2, 2, 1377, 1378, 7, 112, 2, 2, 1378, 1413, 7, 101, 2, 2, 1379, 1380, 7, 99, 2, 2, 1380, 1381, 7, 122, 2, 2, 1381, 1413, 7, 117, 2, 2, 1382, 1383, 7, 100, 2, 2, 1383, 1384, 7, 112, 2, 2, 1384, 1413, 7, 103, 2, 2, 1385, 1386, 7, 101, 2, 2, 1386, 1387, 7, 110, 2, 2, 1387, 1413, 7, 102, 2, 2, 1388, 1389, 7, 117, 2, 2, 1389, 1390, 7, 100, 2, 2, 1390, 1413, 7, 101, 2, 2, 1391, 1392, 7, 107, 2, 2, 1392, 1393, 7, 117, 2, 2, 1393, 1413, 7, 101, 2, 2, 1394, 1395, 7, 107, 2, 2, 1395, 1396, 7, 112, 2, 2, 1396, 1413, 7, 122, 2, 2, 1397, 1398, 7, 100, 2, 2, 1398, 1399, 7, 103, 2, 2, 1399, 1413, 7, 115, 2, 2, 1400, 1401, 7, 117, 2, 2, 1401, 1402, 7, 103, 2, 2, 1402, 1413, 7, 102, 2, 2, 1403, 1404, 7, 102, 2, 2, 1404, 1405, 7, 103, 2, 2, 1405, 1413, 7, 122, 2, 2, 1406, 1407, 7, 107, 2, 2, 1407, 1408, 7, 112, 2, 2, 1408, 1413, 7, 123, 2, 2, 1409, 1410, 7, 116, 2, 2, 1410, 1411, 7, 113, 2, 2, 1411, 1413, 7, 116, 2, 2, 1412, 1190, 3, 2, 2, 2, 1412, 1193, 3, 2, 2, 2, 1412, 1196, 3, 2, 2, 2, 1412, 1199, 3, 2, 2, 2, 1412, 1202, 3, 2, 2, 2, 1412, 1205, 3, 2, 2, 2, 1412, 1208, 3, 2, 2, 2, 1412, 1211, 3, 2, 2, 2, 1412, 1214, 3, 2, 2, 2, 1412, 1217, 3, 2, 2, 2, 1412, 1220, 3, 2, 2, 2, 1412, 1223, 3, 2, 2, 2, 1412, 1226, 3, 2, 2, 2, 1412, 1229, 3, 2, 2, 2, 1412, 1232, 3, 2, 2, 2, 1412, 1235, 3, 2, 2, 2, 1412, 1238, 3, 2, 2, 2, 1412, 1241, 3, 2, 2, 2, 1412, 1244, 3, 2, 2, 2, 1412, 1247, 3, 2, 2, 2, 1412, 1250, 3, 2, 2, 2, 1412, 1253, 3, 2, 2, 2, 1412, 1256, 3, 2, 2, 2, 1412, 1259, 3, 2, 2, 2, 1412, 1262, 3, 2, 2, 2, 1412, 1265, 3, 2, 2, 2, 1412, 1268, 3, 2, 2, 2, 1412, 1271, 3, 2, 2, 2, 1412, 1274, 3, 2, 2, 2, 1412, 1277, 3, 2, 2, 2, 1412, 1280, 3, 2, 2, 2, 1412, 1283, 3, 2, 2, 2, 1412, 1286, 3, 2, 2, 2, 1412, 1289, 3, 2, 2, 2, 1412, 1292, 3, 2, 2, 2, 1412, 1295, 3, 2, 2, 2, 1412, 1298, 3, 2, 2, 2, 1412, 1301, 3, 2, 2, 2, 1412, 1304, 3, 2, 2, 2, 1412, 1307, 3, 2, 2, 2, 1412, 1310, 3, 2, 2, 2, 1412, 1313, 3, 2, 2, 2, 1412, 1316, 3, 2, 2, 2, 1412, 1319, 3, 2, 2, 2, 1412, 1322, 3, 2, 2, 2, 1412, 1325, 3, 2, 2, 2, 1412, 1328, 3, 2, 2, 2, 1412, 1331, 3, 2, 2, 2, 1412, 1334, 3, 2, 2, 2, 1412, 1337, 3, 2, 2, 2, 1412, 1340, 3, 2, 2, 2, 1412, 1343, 3, 2, 2, 2, 1412, 1346, 3, 2, 2, 2, 1412, 1349, 3, 2, 2, 2, 1412, 1352, 3, 2, 2, 2, 1412, 1355, 3, 2, 2, 2, 1412, 1358, 3, 2, 2, 2, 1412, 1361, 3, 2, 2, 2, 1412, 1364, 3, 2, 2, 2, 1412, 1367, 3, 2, 2, 2, 1412, 1370, 3, 2, 2, 2, 1412, 1373, 3, 2, 2, 2, 1412, 1376, 3, 2, 2, 2, 1412, 1379, 3, 2, 2, 2, 1412, 1382, 3, 2, 2, 2, 1412, 1385, 3, 2, 2, 2, 1412, 1388, 3, 2, 2, 2, 1412, 1391, 3, 2, 2, 2, 1412, 1394, 3, 2, 2, 2, 1412, 1397, 3, 2, 2, 2, 1412, 1400, 3, 2, 2, 2, 1412, 1403, 3, 2, 2, 2, 1412, 1406, 3, 2, 2, 2, 1412, 1409, 3, 2, 2, 2, 1413, 258, 3, 2, 2, 2, 1414, 1415, 7, 37, 2, 2, 1415, 260, 3, 2, 2, 2, 1416, 1417, 7, 60, 2, 2, 1417, 262, 3, 2, 2, 2, 1418, 1419, 7, 46, 2, 2, 1419, 264, 3, 2, 2, 2, 1420, 1421, 7, 42, 2, 2, 1421, 266, 3, 2, 2, 2, 1422, 1423, 7, 43, 2, 2, 1423, 268, 3, 2, 2, 2, 1424, 1425, 7, 93, 2, 2, 1425, 270, 3, 2, 2, 2, 1426, 1427, 7, 95, 2, 2, 1427, 272, 3, 2, 2, 2, 1428, 1429, 7, 48, 2, 2, 1429, 274, 3, 2, 2, 2, 1430, 1431, 7, 62, 2, 2, 1431, 1432, 7, 62, 2, 2, 1432, 276, 3, 2, 2, 2, 1433, 1434, 7, 64, 2, 2, 1434, 1435, 7, 64, 2, 2, 1435, 278, 3, 2, 2, 2, 1436, 1437, 7, 45, 2, 2, 1437, 280, 3, 2, 2, 2, 1438, 1439, 7, 47, 2, 2, 1439, 282, 3, 2, 2, 2, 1440, 1441, 7, 62, 2, 2, 1441, 284, 3, 2, 2, 2, 1442, 1443, 7, 64, 2, 2, 1443, 286, 3, 2, 2, 2, 1444, 1445, 7, 44, 2, 2, 1445, 288, 3, 2, 2, 2, 1446, 1447, 7, 49, 2, 2, 1447, 290, 3, 2, 2, 2, 1448, 1449, 7, 125, 2, 2, 1449, 1450, 8, 145, 9, 2, 1450, 292, 3, 2, 2, 2, 1451, 1452, 7, 127, 2, 2, 1452, 1453, 8, 146, 10, 2, 1453, 294, 3, 2, 2, 2, 1454, 1457, 5, 297, 148, 2, 1455, 1457, 5, 305, 152, 2, 1456, 1454, 3, 2, 2, 2, 1456, 1455, 3, 2, 2, 2, 1457, 296, 3, 2, 2, 2, 1458, 1462, 5, 299, 149, 2, 1459, 1462, 5, 301, 150, 2, 1460, 1462, 5, 303, 151, 2, 1461, 1458, 3, 2, 2, 2, 1461, 1459, 3, 2, 2, 2, 1461, 1460, 3, 2, 2, 2, 1462, 298, 3, 2, 2, 2, 1463, 1467, 7, 39, 2, 2, 1464, 1466, 5, 313, 156, 2, 1465, 1464, 3, 2, 2, 2, 1466, 1469, 3, 2, 2, 2, 1467, 1465, 3, 2, 2, 2, 1467, 1468, 3, 2, 2, 2, 1468, 1470, 3, 2, 2, 2, 1469, 1467, 3, 2, 2, 2, 1470, 1472, 7, 48, 2, 2, 1471, 1473, 5, 313, 156, 2, 1472, 1471, 3, 2, 2, 2, 1473, 1474, 3, 2, 2, 2, 1474, 1472, 3, 2, 2, 2, 1474, 1475, 3, 2, 2, 2, 1475, 300, 3, 2, 2, 2, 1476, 1478, 5, 315, 157, 2, 1477, 1476, 3, 2, 2, 2, 1478, 1481, 3, 2, 2, 2, 1479, 1477, 3, 2, 2, 2, 1479, 1480, 3, 2, 2, 2, 1480, 1482, 3, 2, 2, 2, 1481, 1479, 3, 2, 2, 2, 1482, 1484, 7, 48, 2, 2, 1483, 1485, 5, 315, 157, 2, 1484, 1483, 3, 2, 2, 2, 1485, 1486, 3, 2, 2, 2, 1486, 1484, 3, 2, 2, 2, 1486, 1487, 3, 2, 2, 2, 1487, 302, 3, 2, 2, 2, 1488, 1492, 7, 38, 2, 2, 1489, 1491, 5, 317, 158, 2, 1490, 1489, 3, 2, 2, 2, 1491, 1494, 3, 2, 2, 2, 1492, 1490, 3, 2, 2, 2, 1492, 1493, 3, 2, 2, 2, 1493, 1495, 3, 2, 2, 2, 1494, 1492, 3, 2, 2, 2, 1495, 1497, 7, 48, 2, 2, 1496, 1498, 5, 317, 158, 2, 1497, 1496, 3, 2, 2, 2, 1498, 1499, 3, 2, 2, 2, 1499, 1497, 3, 2, 2, 2, 1499, 1500, 3, 2, 2, 2, 1500, 304, 3, 2, 2, 2, 1501, 1505, 5, 309, 154, 2, 1502, 1505, 5, 311, 155, 2, 1503, 1505, 5, 307, 153, 2, 1504, 1501, 3, 2, 2, 2, 1504, 1502, 3, 2, 2, 2, 1504, 1503, 3, 2, 2, 2, 1505, 306, 3, 2, 2, 2, 1506, 1508, 7, 39, 2, 2, 1507, 1509, 5, 313, 156, 2, 1508, 1507, 3, 2, 2, 2, 1509, 1510, 3, 2, 2, 2, 1510, 1508, 3, 2, 2, 2, 1510, 1511, 3, 2, 2, 2, 1511, 308, 3, 2, 2, 2, 1512, 1514, 5, 315, 157, 2, 1513, 1512, 3, 2, 2, 2, 1514, 1515, 3, 2, 2, 2, 1515, 1513, 3, 2, 2, 2, 1515, 1516, 3, 2, 2, 2, 1516, 310, 3, 2, 2, 2, 1517, 1519, 7, 38, 2, 2, 1518, 1520, 5, 317, 158, 2, 1519, 1518, 3, 2, 2, 2, 1520, 1521, 3, 2, 2, 2, 1521, 1519, 3, 2, 2, 2, 1521, 1522, 3, 2, 2, 2, 1522, 312, 3, 2, 2, 2, 1523, 1524, 9, 5, 2, 2, 1524, 314, 3, 2, 2, 2, 1525, 1526, 9, 6, 2, 2, 1526, 316, 3, 2, 2, 2, 1527, 1528, 9, 7, 2, 2, 1528, 318, 3, 2, 2, 2, 1529, 1533, 7, 41, 2, 2, 1530, 1531, 7, 94, 2, 2, 1531, 1534, 9, 14, 2, 2, 1532, 1534, 10, 16, 2, 2, 1533, 1530, 3, 2, 2, 2, 1533, 1532, 3, 2, 2, 2, 1534, 1535, 3, 2, 2, 2, 1535, 1536, 7, 41, 2, 2, 1536, 320, 3, 2, 2, 2, 1537, 1539, 5, 323, 161, 2, 1538, 1540, 9, 19, 2, 2, 1539, 1538, 3, 2, 2, 2, 1540, 1541, 3, 2, 2, 2, 1541, 1539, 3, 2, 2, 2, 1541, 1542, 3, 2, 2, 2, 1542, 322, 3, 2, 2, 2, 1543, 1547, 7, 35, 2, 2, 1544, 1546, 5, 329, 164, 2, 1545, 1544, 3, 2, 2, 2, 1546, 1549, 3, 2, 2, 2, 1547, 1545, 3, 2, 2, 2, 1547, 1548, 3, 2, 2, 2, 1548, 324, 3, 2, 2, 2, 1549, 1547, 3, 2, 2, 2, 1550, 1554, 5, 327, 163, 2, 1551, 1553, 5, 329, 164, 2, 1552, 1551, 3, 2, 2, 2, 1553, 1556, 3, 2, 2, 2, 1554, 1552, 3, 2, 2, 2, 1554, 1555, 3, 2, 2, 2, 1555, 326, 3, 2, 2, 2, 1556, 1554, 3, 2, 2, 2, 1557, 1558, 9, 8, 2, 2, 1558, 328, 3, 2, 2, 2, 1559, 1560, 9, 9, 2, 2, 1560, 330, 3, 2, 2, 2, 1561, 1563, 9, 17, 2, 2, 1562, 1561, 3, 2, 2, 2, 1563, 1564, 3, 2, 2, 2, 1564, 1562, 3, 2, 2, 2, 1564, 1565, 3, 2, 2, 2, 1565, 1566, 3, 2, 2, 2, 1566, 1567, 8, 165, 7, 2, 1567, 332, 3, 2, 2, 2, 1568, 1569, 7, 49, 2, 2, 1569, 1570, 7, 49, 2, 2, 1570, 1574, 3, 2, 2, 2, 1571, 1573, 10, 18, 2, 2, 1572, 1571, 3, 2, 2, 2, 1573, 1576, 3, 2, 2, 2, 1574, 1572, 3, 2, 2, 2, 1574, 1575, 3, 2, 2, 2, 1575, 1577, 3, 2, 2, 2, 1576, 1574, 3, 2, 2, 2, 1577, 1578, 8, 166, 8, 2, 1578, 334, 3, 2, 2, 2, 1579, 1580, 7, 49, 2, 2, 1580, 1581, 7, 44, 2, 2, 1581, 1585, 3, 2, 2, 2, 1582, 1584, 11, 2, 2, 2, 1583, 1582, 3, 2, 2, 2, 1584, 1587, 3, 2, 2, 2, 1585, 1586, 3, 2, 2, 2, 1585, 1583, 3, 2, 2, 2, 1586, 1588, 3, 2, 2, 2, 1587, 1585, 3, 2, 2, 2, 1588, 1589, 7, 44, 2, 2, 1589, 1590, 7, 49, 2, 2, 1590, 1591, 3, 2, 2, 2, 1591, 1592, 8, 167, 8, 2, 1592, 336, 3, 2, 2, 2, 1593, 1595, 7, 62, 2, 2, 1594, 1596, 9, 20, 2, 2, 1595, 1594, 3, 2, 2, 2, 1596, 1597, 3, 2, 2, 2, 1597, 1595, 3, 2, 2, 2, 1597, 1598, 3, 2, 2, 2, 1598, 1599, 3, 2, 2, 2, 1599, 1600, 7, 64, 2, 2, 1600, 1601, 8, 168, 11, 2, 1601, 338, 3, 2, 2, 2, 1602, 1608, 7, 36, 2, 2, 1603, 1604, 7, 94, 2, 2, 1604, 1607, 7, 36, 2, 2, 1605, 1607, 10, 10, 2, 2, 1606, 1603, 3, 2, 2, 2, 1606, 1605, 3, 2, 2, 2, 1607, 1610, 3, 2, 2, 2, 1608, 1606, 3, 2, 2, 2, 1608, 1609, 3, 2, 2, 2, 1609, 1611, 3, 2, 2, 2, 1610, 1608, 3, 2, 2, 2, 1611, 1612, 7, 36, 2, 2, 1612, 1613, 8, 169, 12, 2, 1613, 340, 3, 2, 2, 2, 1614, 1616, 9, 17, 2, 2, 1615, 1614, 3, 2, 2, 2, 1616, 1617, 3, 2, 2, 2, 1617, 1615, 3, 2, 2, 2, 1617, 1618, 3, 2, 2, 2, 1618, 1619, 3, 2, 2, 2, 1619, 1620, 8, 170, 7, 2, 1620, 342, 3, 2, 2, 2, 1621, 1622, 7, 49, 2, 2, 1622, 1623, 7, 49, 2, 2, 1623, 1627, 3, 2, 2, 2, 1624, 1626, 10, 18, 2, 2, 1625, 1624, 3, 2, 2, 2, 1626, 1629, 3, 2, 2, 2, 1627, 1625, 3, 2, 2, 2, 1627, 1628, 3, 2, 2, 2, 1628, 1630, 3, 2, 2, 2, 1629, 1627, 3, 2, 2, 2, 1630, 1631, 8, 171, 8, 2, 1631, 344, 3, 2, 2, 2, 1632, 1633, 7, 49, 2, 2, 1633, 1634, 7, 44, 2, 2, 1634, 1638, 3, 2, 2, 2, 1635, 1637, 11, 2, 2, 2, 1636, 1635, 3, 2, 2, 2, 1637, 1640, 3, 2, 2, 2, 1638, 1639, 3, 2, 2, 2, 1638, 1636, 3, 2, 2, 2, 1639, 1641, 3, 2, 2, 2, 1640, 1638, 3, 2, 2, 2, 1641, 1642, 7, 44, 2, 2, 1642, 1643, 7, 49, 2, 2, 1643, 1644, 3, 2, 2, 2, 1644, 1645, 8, 172, 8, 2, 1645, 346, 3, 2, 2, 2, 68, 2, 3, 4, 456, 669, 844, 883, 894, 902, 950, 999, 1004, 1011, 1016, 1023, 1028, 1035, 1042, 1047, 1054, 1059, 1064, 1071, 1077, 1079, 1084, 1091, 1096, 1108, 1121, 1123, 1128, 1132, 1134, 1137, 1145, 1148, 1155, 1165, 1176, 1412, 1456, 1461, 1467, 1474, 1479, 1486, 1492, 1499, 1504, 1510, 1515, 1521, 1533, 1541, 1547, 1554, 1564, 1574, 1585, 1597, 1606, 1608, 1617, 1627, 1638, 13, 3, 2, 2, 3, 76, 3, 3, 95, 4, 3, 96, 5, 3, 119, 6, 2, 3, 2, 2, 4, 2, 3, 145, 7, 3, 146, 8, 3, 168, 9, 3, 169, 10] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 165, 1658, 8, 1, 8, 1, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 25, 3, 25, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 459, 10, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 5, 66, 682, 10, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 5, 92, 857, 10, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 5, 93, 896, 10, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 5, 94, 907, 10, 94, 3, 95, 3, 95, 3, 95, 3, 95, 7, 95, 913, 10, 95, 12, 95, 14, 95, 916, 11, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 963, 10, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 5, 108, 1012, 10, 108, 3, 109, 3, 109, 3, 109, 5, 109, 1017, 10, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1024, 10, 110, 3, 110, 7, 110, 1027, 10, 110, 12, 110, 14, 110, 1030, 11, 110, 3, 110, 3, 110, 6, 110, 1034, 10, 110, 13, 110, 14, 110, 1035, 3, 111, 7, 111, 1039, 10, 111, 12, 111, 14, 111, 1042, 11, 111, 3, 111, 3, 111, 6, 111, 1046, 10, 111, 13, 111, 14, 111, 1047, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 5, 112, 1055, 10, 112, 3, 112, 7, 112, 1058, 10, 112, 12, 112, 14, 112, 1061, 11, 112, 3, 112, 3, 112, 6, 112, 1065, 10, 112, 13, 112, 14, 112, 1066, 3, 113, 3, 113, 3, 113, 5, 113, 1072, 10, 113, 3, 113, 3, 113, 3, 113, 5, 113, 1077, 10, 113, 3, 114, 3, 114, 3, 114, 6, 114, 1082, 10, 114, 13, 114, 14, 114, 1083, 3, 114, 3, 114, 6, 114, 1088, 10, 114, 13, 114, 14, 114, 1089, 5, 114, 1092, 10, 114, 3, 115, 6, 115, 1095, 10, 115, 13, 115, 14, 115, 1096, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 5, 116, 1104, 10, 116, 3, 116, 6, 116, 1107, 10, 116, 13, 116, 14, 116, 1108, 3, 117, 3, 117, 3, 118, 3, 118, 3, 119, 3, 119, 3, 120, 3, 120, 7, 120, 1119, 10, 120, 12, 120, 14, 120, 1122, 11, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 7, 123, 1134, 10, 123, 12, 123, 14, 123, 1137, 11, 123, 3, 123, 3, 123, 5, 123, 1141, 10, 123, 3, 123, 3, 123, 5, 123, 1145, 10, 123, 5, 123, 1147, 10, 123, 3, 123, 5, 123, 1150, 10, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 5, 124, 1158, 10, 124, 3, 124, 5, 124, 1161, 10, 124, 3, 124, 3, 124, 3, 125, 6, 125, 1166, 10, 125, 13, 125, 14, 125, 1167, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 7, 126, 1176, 10, 126, 12, 126, 14, 126, 1179, 11, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 7, 127, 1187, 10, 127, 12, 127, 14, 127, 1190, 11, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 5, 129, 1425, 10, 129, 3, 130, 3, 130, 3, 131, 3, 131, 3, 132, 3, 132, 3, 133, 3, 133, 3, 134, 3, 134, 3, 135, 3, 135, 3, 136, 3, 136, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 141, 3, 141, 3, 142, 3, 142, 3, 143, 3, 143, 3, 144, 3, 144, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 5, 148, 1469, 10, 148, 3, 149, 3, 149, 3, 149, 5, 149, 1474, 10, 149, 3, 150, 3, 150, 7, 150, 1478, 10, 150, 12, 150, 14, 150, 1481, 11, 150, 3, 150, 3, 150, 6, 150, 1485, 10, 150, 13, 150, 14, 150, 1486, 3, 151, 7, 151, 1490, 10, 151, 12, 151, 14, 151, 1493, 11, 151, 3, 151, 3, 151, 6, 151, 1497, 10, 151, 13, 151, 14, 151, 1498, 3, 152, 3, 152, 7, 152, 1503, 10, 152, 12, 152, 14, 152, 1506, 11, 152, 3, 152, 3, 152, 6, 152, 1510, 10, 152, 13, 152, 14, 152, 1511, 3, 153, 3, 153, 3, 153, 5, 153, 1517, 10, 153, 3, 154, 3, 154, 6, 154, 1521, 10, 154, 13, 154, 14, 154, 1522, 3, 155, 6, 155, 1526, 10, 155, 13, 155, 14, 155, 1527, 3, 156, 3, 156, 6, 156, 1532, 10, 156, 13, 156, 14, 156, 1533, 3, 157, 3, 157, 3, 158, 3, 158, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 5, 160, 1546, 10, 160, 3, 160, 3, 160, 3, 161, 3, 161, 6, 161, 1552, 10, 161, 13, 161, 14, 161, 1553, 3, 162, 3, 162, 7, 162, 1558, 10, 162, 12, 162, 14, 162, 1561, 11, 162, 3, 163, 3, 163, 7, 163, 1565, 10, 163, 12, 163, 14, 163, 1568, 11, 163, 3, 164, 3, 164, 3, 165, 3, 165, 3, 166, 6, 166, 1575, 10, 166, 13, 166, 14, 166, 1576, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 7, 167, 1585, 10, 167, 12, 167, 14, 167, 1588, 11, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 7, 168, 1596, 10, 168, 12, 168, 14, 168, 1599, 11, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 6, 169, 1608, 10, 169, 13, 169, 14, 169, 1609, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 7, 170, 1619, 10, 170, 12, 170, 14, 170, 1622, 11, 170, 3, 170, 3, 170, 3, 170, 3, 171, 6, 171, 1628, 10, 171, 13, 171, 14, 171, 1629, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 7, 172, 1638, 10, 172, 12, 172, 14, 172, 1641, 11, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 7, 173, 1649, 10, 173, 12, 173, 14, 173, 1652, 11, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 6, 914, 1188, 1597, 1650, 2, 174, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 2, 237, 2, 239, 2, 241, 119, 243, 2, 245, 2, 247, 120, 249, 121, 251, 122, 253, 123, 255, 124, 257, 125, 259, 126, 261, 127, 263, 128, 265, 129, 267, 130, 269, 131, 271, 132, 273, 133, 275, 134, 277, 135, 279, 136, 281, 137, 283, 138, 285, 139, 287, 140, 289, 141, 291, 142, 293, 143, 295, 144, 297, 145, 299, 146, 301, 147, 303, 148, 305, 149, 307, 150, 309, 151, 311, 152, 313, 153, 315, 2, 317, 2, 319, 2, 321, 154, 323, 155, 325, 156, 327, 157, 329, 2, 331, 2, 333, 158, 335, 159, 337, 160, 339, 161, 341, 162, 343, 163, 345, 164, 347, 165, 5, 2, 3, 4, 21, 4, 2, 117, 117, 119, 119, 7, 2, 100, 102, 107, 107, 110, 110, 117, 117, 121, 121, 4, 2, 68, 68, 100, 100, 3, 2, 50, 51, 3, 2, 50, 59, 5, 2, 50, 59, 67, 72, 99, 104, 5, 2, 67, 92, 97, 97, 99, 124, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 3, 2, 36, 36, 3, 2, 124, 124, 4, 2, 114, 114, 117, 117, 4, 2, 111, 111, 119, 119, 7, 2, 36, 36, 41, 41, 104, 104, 112, 112, 116, 116, 4, 2, 50, 59, 99, 104, 3, 2, 41, 41, 6, 2, 11, 12, 15, 15, 34, 34, 162, 162, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 7, 2, 47, 59, 67, 92, 94, 94, 97, 97, 99, 124, 2, 1803, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 3, 257, 3, 2, 2, 2, 3, 259, 3, 2, 2, 2, 3, 261, 3, 2, 2, 2, 3, 263, 3, 2, 2, 2, 3, 265, 3, 2, 2, 2, 3, 267, 3, 2, 2, 2, 3, 269, 3, 2, 2, 2, 3, 271, 3, 2, 2, 2, 3, 273, 3, 2, 2, 2, 3, 275, 3, 2, 2, 2, 3, 277, 3, 2, 2, 2, 3, 279, 3, 2, 2, 2, 3, 281, 3, 2, 2, 2, 3, 283, 3, 2, 2, 2, 3, 285, 3, 2, 2, 2, 3, 287, 3, 2, 2, 2, 3, 289, 3, 2, 2, 2, 3, 291, 3, 2, 2, 2, 3, 293, 3, 2, 2, 2, 3, 295, 3, 2, 2, 2, 3, 297, 3, 2, 2, 2, 3, 299, 3, 2, 2, 2, 3, 301, 3, 2, 2, 2, 3, 303, 3, 2, 2, 2, 3, 305, 3, 2, 2, 2, 3, 307, 3, 2, 2, 2, 3, 309, 3, 2, 2, 2, 3, 311, 3, 2, 2, 2, 3, 313, 3, 2, 2, 2, 3, 321, 3, 2, 2, 2, 3, 323, 3, 2, 2, 2, 3, 325, 3, 2, 2, 2, 3, 327, 3, 2, 2, 2, 3, 333, 3, 2, 2, 2, 3, 335, 3, 2, 2, 2, 3, 337, 3, 2, 2, 2, 4, 339, 3, 2, 2, 2, 4, 341, 3, 2, 2, 2, 4, 343, 3, 2, 2, 2, 4, 345, 3, 2, 2, 2, 4, 347, 3, 2, 2, 2, 5, 349, 3, 2, 2, 2, 7, 352, 3, 2, 2, 2, 9, 354, 3, 2, 2, 2, 11, 356, 3, 2, 2, 2, 13, 358, 3, 2, 2, 2, 15, 360, 3, 2, 2, 2, 17, 362, 3, 2, 2, 2, 19, 364, 3, 2, 2, 2, 21, 366, 3, 2, 2, 2, 23, 368, 3, 2, 2, 2, 25, 371, 3, 2, 2, 2, 27, 375, 3, 2, 2, 2, 29, 377, 3, 2, 2, 2, 31, 379, 3, 2, 2, 2, 33, 382, 3, 2, 2, 2, 35, 384, 3, 2, 2, 2, 37, 386, 3, 2, 2, 2, 39, 388, 3, 2, 2, 2, 41, 390, 3, 2, 2, 2, 43, 392, 3, 2, 2, 2, 45, 395, 3, 2, 2, 2, 47, 398, 3, 2, 2, 2, 49, 400, 3, 2, 2, 2, 51, 402, 3, 2, 2, 2, 53, 404, 3, 2, 2, 2, 55, 406, 3, 2, 2, 2, 57, 409, 3, 2, 2, 2, 59, 412, 3, 2, 2, 2, 61, 415, 3, 2, 2, 2, 63, 418, 3, 2, 2, 2, 65, 420, 3, 2, 2, 2, 67, 423, 3, 2, 2, 2, 69, 426, 3, 2, 2, 2, 71, 428, 3, 2, 2, 2, 73, 431, 3, 2, 2, 2, 75, 434, 3, 2, 2, 2, 77, 458, 3, 2, 2, 2, 79, 460, 3, 2, 2, 2, 81, 468, 3, 2, 2, 2, 83, 476, 3, 2, 2, 2, 85, 479, 3, 2, 2, 2, 87, 486, 3, 2, 2, 2, 89, 491, 3, 2, 2, 2, 91, 501, 3, 2, 2, 2, 93, 510, 3, 2, 2, 2, 95, 514, 3, 2, 2, 2, 97, 523, 3, 2, 2, 2, 99, 532, 3, 2, 2, 2, 101, 541, 3, 2, 2, 2, 103, 547, 3, 2, 2, 2, 105, 554, 3, 2, 2, 2, 107, 561, 3, 2, 2, 2, 109, 567, 3, 2, 2, 2, 111, 574, 3, 2, 2, 2, 113, 583, 3, 2, 2, 2, 115, 590, 3, 2, 2, 2, 117, 600, 3, 2, 2, 2, 119, 609, 3, 2, 2, 2, 121, 619, 3, 2, 2, 2, 123, 624, 3, 2, 2, 2, 125, 630, 3, 2, 2, 2, 127, 636, 3, 2, 2, 2, 129, 641, 3, 2, 2, 2, 131, 653, 3, 2, 2, 2, 133, 681, 3, 2, 2, 2, 135, 683, 3, 2, 2, 2, 137, 693, 3, 2, 2, 2, 139, 696, 3, 2, 2, 2, 141, 701, 3, 2, 2, 2, 143, 707, 3, 2, 2, 2, 145, 710, 3, 2, 2, 2, 147, 714, 3, 2, 2, 2, 149, 721, 3, 2, 2, 2, 151, 728, 3, 2, 2, 2, 153, 734, 3, 2, 2, 2, 155, 743, 3, 2, 2, 2, 157, 749, 3, 2, 2, 2, 159, 757, 3, 2, 2, 2, 161, 762, 3, 2, 2, 2, 163, 769, 3, 2, 2, 2, 165, 774, 3, 2, 2, 2, 167, 781, 3, 2, 2, 2, 169, 788, 3, 2, 2, 2, 171, 796, 3, 2, 2, 2, 173, 804, 3, 2, 2, 2, 175, 813, 3, 2, 2, 2, 177, 818, 3, 2, 2, 2, 179, 827, 3, 2, 2, 2, 181, 833, 3, 2, 2, 2, 183, 840, 3, 2, 2, 2, 185, 856, 3, 2, 2, 2, 187, 895, 3, 2, 2, 2, 189, 906, 3, 2, 2, 2, 191, 908, 3, 2, 2, 2, 193, 920, 3, 2, 2, 2, 195, 930, 3, 2, 2, 2, 197, 941, 3, 2, 2, 2, 199, 949, 3, 2, 2, 2, 201, 962, 3, 2, 2, 2, 203, 964, 3, 2, 2, 2, 205, 971, 3, 2, 2, 2, 207, 978, 3, 2, 2, 2, 209, 986, 3, 2, 2, 2, 211, 990, 3, 2, 2, 2, 213, 996, 3, 2, 2, 2, 215, 1002, 3, 2, 2, 2, 217, 1011, 3, 2, 2, 2, 219, 1016, 3, 2, 2, 2, 221, 1023, 3, 2, 2, 2, 223, 1040, 3, 2, 2, 2, 225, 1054, 3, 2, 2, 2, 227, 1071, 3, 2, 2, 2, 229, 1091, 3, 2, 2, 2, 231, 1094, 3, 2, 2, 2, 233, 1103, 3, 2, 2, 2, 235, 1110, 3, 2, 2, 2, 237, 1112, 3, 2, 2, 2, 239, 1114, 3, 2, 2, 2, 241, 1116, 3, 2, 2, 2, 243, 1125, 3, 2, 2, 2, 245, 1127, 3, 2, 2, 2, 247, 1129, 3, 2, 2, 2, 249, 1151, 3, 2, 2, 2, 251, 1165, 3, 2, 2, 2, 253, 1171, 3, 2, 2, 2, 255, 1182, 3, 2, 2, 2, 257, 1196, 3, 2, 2, 2, 259, 1424, 3, 2, 2, 2, 261, 1426, 3, 2, 2, 2, 263, 1428, 3, 2, 2, 2, 265, 1430, 3, 2, 2, 2, 267, 1432, 3, 2, 2, 2, 269, 1434, 3, 2, 2, 2, 271, 1436, 3, 2, 2, 2, 273, 1438, 3, 2, 2, 2, 275, 1440, 3, 2, 2, 2, 277, 1442, 3, 2, 2, 2, 279, 1445, 3, 2, 2, 2, 281, 1448, 3, 2, 2, 2, 283, 1450, 3, 2, 2, 2, 285, 1452, 3, 2, 2, 2, 287, 1454, 3, 2, 2, 2, 289, 1456, 3, 2, 2, 2, 291, 1458, 3, 2, 2, 2, 293, 1460, 3, 2, 2, 2, 295, 1463, 3, 2, 2, 2, 297, 1468, 3, 2, 2, 2, 299, 1473, 3, 2, 2, 2, 301, 1475, 3, 2, 2, 2, 303, 1491, 3, 2, 2, 2, 305, 1500, 3, 2, 2, 2, 307, 1516, 3, 2, 2, 2, 309, 1518, 3, 2, 2, 2, 311, 1525, 3, 2, 2, 2, 313, 1529, 3, 2, 2, 2, 315, 1535, 3, 2, 2, 2, 317, 1537, 3, 2, 2, 2, 319, 1539, 3, 2, 2, 2, 321, 1541, 3, 2, 2, 2, 323, 1549, 3, 2, 2, 2, 325, 1555, 3, 2, 2, 2, 327, 1562, 3, 2, 2, 2, 329, 1569, 3, 2, 2, 2, 331, 1571, 3, 2, 2, 2, 333, 1574, 3, 2, 2, 2, 335, 1580, 3, 2, 2, 2, 337, 1591, 3, 2, 2, 2, 339, 1605, 3, 2, 2, 2, 341, 1614, 3, 2, 2, 2, 343, 1627, 3, 2, 2, 2, 345, 1633, 3, 2, 2, 2, 347, 1644, 3, 2, 2, 2, 349, 350, 7, 125, 2, 2, 350, 351, 8, 2, 2, 2, 351, 6, 3, 2, 2, 2, 352, 353, 7, 127, 2, 2, 353, 8, 3, 2, 2, 2, 354, 355, 7, 93, 2, 2, 355, 10, 3, 2, 2, 2, 356, 357, 7, 95, 2, 2, 357, 12, 3, 2, 2, 2, 358, 359, 7, 42, 2, 2, 359, 14, 3, 2, 2, 2, 360, 361, 7, 43, 2, 2, 361, 16, 3, 2, 2, 2, 362, 363, 7, 61, 2, 2, 363, 18, 3, 2, 2, 2, 364, 365, 7, 60, 2, 2, 365, 20, 3, 2, 2, 2, 366, 367, 7, 46, 2, 2, 367, 22, 3, 2, 2, 2, 368, 369, 7, 48, 2, 2, 369, 370, 7, 48, 2, 2, 370, 24, 3, 2, 2, 2, 371, 372, 7, 48, 2, 2, 372, 373, 7, 48, 2, 2, 373, 374, 7, 48, 2, 2, 374, 26, 3, 2, 2, 2, 375, 376, 7, 65, 2, 2, 376, 28, 3, 2, 2, 2, 377, 378, 7, 48, 2, 2, 378, 30, 3, 2, 2, 2, 379, 380, 7, 47, 2, 2, 380, 381, 7, 64, 2, 2, 381, 32, 3, 2, 2, 2, 382, 383, 7, 45, 2, 2, 383, 34, 3, 2, 2, 2, 384, 385, 7, 47, 2, 2, 385, 36, 3, 2, 2, 2, 386, 387, 7, 44, 2, 2, 387, 38, 3, 2, 2, 2, 388, 389, 7, 49, 2, 2, 389, 40, 3, 2, 2, 2, 390, 391, 7, 39, 2, 2, 391, 42, 3, 2, 2, 2, 392, 393, 7, 45, 2, 2, 393, 394, 7, 45, 2, 2, 394, 44, 3, 2, 2, 2, 395, 396, 7, 47, 2, 2, 396, 397, 7, 47, 2, 2, 397, 46, 3, 2, 2, 2, 398, 399, 7, 40, 2, 2, 399, 48, 3, 2, 2, 2, 400, 401, 7, 128, 2, 2, 401, 50, 3, 2, 2, 2, 402, 403, 7, 96, 2, 2, 403, 52, 3, 2, 2, 2, 404, 405, 7, 126, 2, 2, 405, 54, 3, 2, 2, 2, 406, 407, 7, 62, 2, 2, 407, 408, 7, 62, 2, 2, 408, 56, 3, 2, 2, 2, 409, 410, 7, 64, 2, 2, 410, 411, 7, 64, 2, 2, 411, 58, 3, 2, 2, 2, 412, 413, 7, 63, 2, 2, 413, 414, 7, 63, 2, 2, 414, 60, 3, 2, 2, 2, 415, 416, 7, 35, 2, 2, 416, 417, 7, 63, 2, 2, 417, 62, 3, 2, 2, 2, 418, 419, 7, 62, 2, 2, 419, 64, 3, 2, 2, 2, 420, 421, 7, 62, 2, 2, 421, 422, 7, 63, 2, 2, 422, 66, 3, 2, 2, 2, 423, 424, 7, 64, 2, 2, 424, 425, 7, 63, 2, 2, 425, 68, 3, 2, 2, 2, 426, 427, 7, 64, 2, 2, 427, 70, 3, 2, 2, 2, 428, 429, 7, 40, 2, 2, 429, 430, 7, 40, 2, 2, 430, 72, 3, 2, 2, 2, 431, 432, 7, 126, 2, 2, 432, 433, 7, 126, 2, 2, 433, 74, 3, 2, 2, 2, 434, 435, 7, 63, 2, 2, 435, 76, 3, 2, 2, 2, 436, 437, 7, 45, 2, 2, 437, 459, 7, 63, 2, 2, 438, 439, 7, 47, 2, 2, 439, 459, 7, 63, 2, 2, 440, 441, 7, 44, 2, 2, 441, 459, 7, 63, 2, 2, 442, 443, 7, 49, 2, 2, 443, 459, 7, 63, 2, 2, 444, 445, 7, 39, 2, 2, 445, 459, 7, 63, 2, 2, 446, 447, 7, 62, 2, 2, 447, 448, 7, 62, 2, 2, 448, 459, 7, 63, 2, 2, 449, 450, 7, 64, 2, 2, 450, 451, 7, 64, 2, 2, 451, 459, 7, 63, 2, 2, 452, 453, 7, 40, 2, 2, 453, 459, 7, 63, 2, 2, 454, 455, 7, 126, 2, 2, 455, 459, 7, 63, 2, 2, 456, 457, 7, 96, 2, 2, 457, 459, 7, 63, 2, 2, 458, 436, 3, 2, 2, 2, 458, 438, 3, 2, 2, 2, 458, 440, 3, 2, 2, 2, 458, 442, 3, 2, 2, 2, 458, 444, 3, 2, 2, 2, 458, 446, 3, 2, 2, 2, 458, 449, 3, 2, 2, 2, 458, 452, 3, 2, 2, 2, 458, 454, 3, 2, 2, 2, 458, 456, 3, 2, 2, 2, 459, 78, 3, 2, 2, 2, 460, 461, 7, 118, 2, 2, 461, 462, 7, 123, 2, 2, 462, 463, 7, 114, 2, 2, 463, 464, 7, 103, 2, 2, 464, 465, 7, 102, 2, 2, 465, 466, 7, 103, 2, 2, 466, 467, 7, 104, 2, 2, 467, 80, 3, 2, 2, 2, 468, 469, 7, 116, 2, 2, 469, 470, 7, 103, 2, 2, 470, 471, 7, 117, 2, 2, 471, 472, 7, 103, 2, 2, 472, 473, 7, 116, 2, 2, 473, 474, 7, 120, 2, 2, 474, 475, 7, 103, 2, 2, 475, 82, 3, 2, 2, 2, 476, 477, 7, 114, 2, 2, 477, 478, 7, 101, 2, 2, 478, 84, 3, 2, 2, 2, 479, 480, 7, 118, 2, 2, 480, 481, 7, 99, 2, 2, 481, 482, 7, 116, 2, 2, 482, 483, 7, 105, 2, 2, 483, 484, 7, 103, 2, 2, 484, 485, 7, 118, 2, 2, 485, 86, 3, 2, 2, 2, 486, 487, 7, 110, 2, 2, 487, 488, 7, 107, 2, 2, 488, 489, 7, 112, 2, 2, 489, 490, 7, 109, 2, 2, 490, 88, 3, 2, 2, 2, 491, 492, 7, 103, 2, 2, 492, 493, 7, 122, 2, 2, 493, 494, 7, 118, 2, 2, 494, 495, 7, 103, 2, 2, 495, 496, 7, 112, 2, 2, 496, 497, 7, 117, 2, 2, 497, 498, 7, 107, 2, 2, 498, 499, 7, 113, 2, 2, 499, 500, 7, 112, 2, 2, 500, 90, 3, 2, 2, 2, 501, 502, 7, 103, 2, 2, 502, 503, 7, 111, 2, 2, 503, 504, 7, 119, 2, 2, 504, 505, 7, 110, 2, 2, 505, 506, 7, 99, 2, 2, 506, 507, 7, 118, 2, 2, 507, 508, 7, 113, 2, 2, 508, 509, 7, 116, 2, 2, 509, 92, 3, 2, 2, 2, 510, 511, 7, 101, 2, 2, 511, 512, 7, 114, 2, 2, 512, 513, 7, 119, 2, 2, 513, 94, 3, 2, 2, 2, 514, 515, 7, 101, 2, 2, 515, 516, 7, 113, 2, 2, 516, 517, 7, 102, 2, 2, 517, 518, 7, 103, 2, 2, 518, 519, 7, 97, 2, 2, 519, 520, 7, 117, 2, 2, 520, 521, 7, 103, 2, 2, 521, 522, 7, 105, 2, 2, 522, 96, 3, 2, 2, 2, 523, 524, 7, 102, 2, 2, 524, 525, 7, 99, 2, 2, 525, 526, 7, 118, 2, 2, 526, 527, 7, 99, 2, 2, 527, 528, 7, 97, 2, 2, 528, 529, 7, 117, 2, 2, 529, 530, 7, 103, 2, 2, 530, 531, 7, 105, 2, 2, 531, 98, 3, 2, 2, 2, 532, 533, 7, 103, 2, 2, 533, 534, 7, 112, 2, 2, 534, 535, 7, 101, 2, 2, 535, 536, 7, 113, 2, 2, 536, 537, 7, 102, 2, 2, 537, 538, 7, 107, 2, 2, 538, 539, 7, 112, 2, 2, 539, 540, 7, 105, 2, 2, 540, 100, 3, 2, 2, 2, 541, 542, 7, 101, 2, 2, 542, 543, 7, 113, 2, 2, 543, 544, 7, 112, 2, 2, 544, 545, 7, 117, 2, 2, 545, 546, 7, 118, 2, 2, 546, 102, 3, 2, 2, 2, 547, 548, 7, 103, 2, 2, 548, 549, 7, 122, 2, 2, 549, 550, 7, 118, 2, 2, 550, 551, 7, 103, 2, 2, 551, 552, 7, 116, 2, 2, 552, 553, 7, 112, 2, 2, 553, 104, 3, 2, 2, 2, 554, 555, 7, 103, 2, 2, 555, 556, 7, 122, 2, 2, 556, 557, 7, 114, 2, 2, 557, 558, 7, 113, 2, 2, 558, 559, 7, 116, 2, 2, 559, 560, 7, 118, 2, 2, 560, 106, 3, 2, 2, 2, 561, 562, 7, 99, 2, 2, 562, 563, 7, 110, 2, 2, 563, 564, 7, 107, 2, 2, 564, 565, 7, 105, 2, 2, 565, 566, 7, 112, 2, 2, 566, 108, 3, 2, 2, 2, 567, 568, 7, 107, 2, 2, 568, 569, 7, 112, 2, 2, 569, 570, 7, 110, 2, 2, 570, 571, 7, 107, 2, 2, 571, 572, 7, 112, 2, 2, 572, 573, 7, 103, 2, 2, 573, 110, 3, 2, 2, 2, 574, 575, 7, 120, 2, 2, 575, 576, 7, 113, 2, 2, 576, 577, 7, 110, 2, 2, 577, 578, 7, 99, 2, 2, 578, 579, 7, 118, 2, 2, 579, 580, 7, 107, 2, 2, 580, 581, 7, 110, 2, 2, 581, 582, 7, 103, 2, 2, 582, 112, 3, 2, 2, 2, 583, 584, 7, 117, 2, 2, 584, 585, 7, 118, 2, 2, 585, 586, 7, 99, 2, 2, 586, 587, 7, 118, 2, 2, 587, 588, 7, 107, 2, 2, 588, 589, 7, 101, 2, 2, 589, 114, 3, 2, 2, 2, 590, 591, 7, 107, 2, 2, 591, 592, 7, 112, 2, 2, 592, 593, 7, 118, 2, 2, 593, 594, 7, 103, 2, 2, 594, 595, 7, 116, 2, 2, 595, 596, 7, 116, 2, 2, 596, 597, 7, 119, 2, 2, 597, 598, 7, 114, 2, 2, 598, 599, 7, 118, 2, 2, 599, 116, 3, 2, 2, 2, 600, 601, 7, 116, 2, 2, 601, 602, 7, 103, 2, 2, 602, 603, 7, 105, 2, 2, 603, 604, 7, 107, 2, 2, 604, 605, 7, 117, 2, 2, 605, 606, 7, 118, 2, 2, 606, 607, 7, 103, 2, 2, 607, 608, 7, 116, 2, 2, 608, 118, 3, 2, 2, 2, 609, 610, 7, 97, 2, 2, 610, 611, 7, 97, 2, 2, 611, 612, 7, 99, 2, 2, 612, 613, 7, 102, 2, 2, 613, 614, 7, 102, 2, 2, 614, 615, 7, 116, 2, 2, 615, 616, 7, 103, 2, 2, 616, 617, 7, 117, 2, 2, 617, 618, 7, 117, 2, 2, 618, 120, 3, 2, 2, 2, 619, 620, 7, 97, 2, 2, 620, 621, 7, 97, 2, 2, 621, 622, 7, 124, 2, 2, 622, 623, 7, 114, 2, 2, 623, 122, 3, 2, 2, 2, 624, 625, 7, 97, 2, 2, 625, 626, 7, 97, 2, 2, 626, 627, 7, 111, 2, 2, 627, 628, 7, 103, 2, 2, 628, 629, 7, 111, 2, 2, 629, 124, 3, 2, 2, 2, 630, 631, 7, 97, 2, 2, 631, 632, 7, 97, 2, 2, 632, 633, 7, 117, 2, 2, 633, 634, 7, 117, 2, 2, 634, 635, 7, 99, 2, 2, 635, 126, 3, 2, 2, 2, 636, 637, 7, 97, 2, 2, 637, 638, 7, 97, 2, 2, 638, 639, 7, 111, 2, 2, 639, 640, 7, 99, 2, 2, 640, 128, 3, 2, 2, 2, 641, 642, 7, 97, 2, 2, 642, 643, 7, 97, 2, 2, 643, 644, 7, 107, 2, 2, 644, 645, 7, 112, 2, 2, 645, 646, 7, 118, 2, 2, 646, 647, 7, 116, 2, 2, 647, 648, 7, 107, 2, 2, 648, 649, 7, 112, 2, 2, 649, 650, 7, 117, 2, 2, 650, 651, 7, 107, 2, 2, 651, 652, 7, 101, 2, 2, 652, 130, 3, 2, 2, 2, 653, 654, 7, 101, 2, 2, 654, 655, 7, 99, 2, 2, 655, 656, 7, 110, 2, 2, 656, 657, 7, 110, 2, 2, 657, 658, 7, 107, 2, 2, 658, 659, 7, 112, 2, 2, 659, 660, 7, 105, 2, 2, 660, 132, 3, 2, 2, 2, 661, 662, 7, 97, 2, 2, 662, 663, 7, 97, 2, 2, 663, 664, 7, 117, 2, 2, 664, 665, 7, 118, 2, 2, 665, 666, 7, 99, 2, 2, 666, 667, 7, 101, 2, 2, 667, 668, 7, 109, 2, 2, 668, 669, 7, 101, 2, 2, 669, 670, 7, 99, 2, 2, 670, 671, 7, 110, 2, 2, 671, 682, 7, 110, 2, 2, 672, 673, 7, 97, 2, 2, 673, 674, 7, 97, 2, 2, 674, 675, 7, 114, 2, 2, 675, 676, 7, 106, 2, 2, 676, 677, 7, 107, 2, 2, 677, 678, 7, 101, 2, 2, 678, 679, 7, 99, 2, 2, 679, 680, 7, 110, 2, 2, 680, 682, 7, 110, 2, 2, 681, 661, 3, 2, 2, 2, 681, 672, 3, 2, 2, 2, 682, 134, 3, 2, 2, 2, 683, 684, 7, 120, 2, 2, 684, 685, 7, 99, 2, 2, 685, 686, 7, 116, 2, 2, 686, 687, 7, 97, 2, 2, 687, 688, 7, 111, 2, 2, 688, 689, 7, 113, 2, 2, 689, 690, 7, 102, 2, 2, 690, 691, 7, 103, 2, 2, 691, 692, 7, 110, 2, 2, 692, 136, 3, 2, 2, 2, 693, 694, 7, 107, 2, 2, 694, 695, 7, 104, 2, 2, 695, 138, 3, 2, 2, 2, 696, 697, 7, 103, 2, 2, 697, 698, 7, 110, 2, 2, 698, 699, 7, 117, 2, 2, 699, 700, 7, 103, 2, 2, 700, 140, 3, 2, 2, 2, 701, 702, 7, 121, 2, 2, 702, 703, 7, 106, 2, 2, 703, 704, 7, 107, 2, 2, 704, 705, 7, 110, 2, 2, 705, 706, 7, 103, 2, 2, 706, 142, 3, 2, 2, 2, 707, 708, 7, 102, 2, 2, 708, 709, 7, 113, 2, 2, 709, 144, 3, 2, 2, 2, 710, 711, 7, 104, 2, 2, 711, 712, 7, 113, 2, 2, 712, 713, 7, 116, 2, 2, 713, 146, 3, 2, 2, 2, 714, 715, 7, 117, 2, 2, 715, 716, 7, 121, 2, 2, 716, 717, 7, 107, 2, 2, 717, 718, 7, 118, 2, 2, 718, 719, 7, 101, 2, 2, 719, 720, 7, 106, 2, 2, 720, 148, 3, 2, 2, 2, 721, 722, 7, 116, 2, 2, 722, 723, 7, 103, 2, 2, 723, 724, 7, 118, 2, 2, 724, 725, 7, 119, 2, 2, 725, 726, 7, 116, 2, 2, 726, 727, 7, 112, 2, 2, 727, 150, 3, 2, 2, 2, 728, 729, 7, 100, 2, 2, 729, 730, 7, 116, 2, 2, 730, 731, 7, 103, 2, 2, 731, 732, 7, 99, 2, 2, 732, 733, 7, 109, 2, 2, 733, 152, 3, 2, 2, 2, 734, 735, 7, 101, 2, 2, 735, 736, 7, 113, 2, 2, 736, 737, 7, 112, 2, 2, 737, 738, 7, 118, 2, 2, 738, 739, 7, 107, 2, 2, 739, 740, 7, 112, 2, 2, 740, 741, 7, 119, 2, 2, 741, 742, 7, 103, 2, 2, 742, 154, 3, 2, 2, 2, 743, 744, 7, 99, 2, 2, 744, 745, 7, 117, 2, 2, 745, 746, 7, 111, 2, 2, 746, 747, 3, 2, 2, 2, 747, 748, 8, 77, 3, 2, 748, 156, 3, 2, 2, 2, 749, 750, 7, 102, 2, 2, 750, 751, 7, 103, 2, 2, 751, 752, 7, 104, 2, 2, 752, 753, 7, 99, 2, 2, 753, 754, 7, 119, 2, 2, 754, 755, 7, 110, 2, 2, 755, 756, 7, 118, 2, 2, 756, 158, 3, 2, 2, 2, 757, 758, 7, 101, 2, 2, 758, 759, 7, 99, 2, 2, 759, 760, 7, 117, 2, 2, 760, 761, 7, 103, 2, 2, 761, 160, 3, 2, 2, 2, 762, 763, 7, 117, 2, 2, 763, 764, 7, 118, 2, 2, 764, 765, 7, 116, 2, 2, 765, 766, 7, 119, 2, 2, 766, 767, 7, 101, 2, 2, 767, 768, 7, 118, 2, 2, 768, 162, 3, 2, 2, 2, 769, 770, 7, 103, 2, 2, 770, 771, 7, 112, 2, 2, 771, 772, 7, 119, 2, 2, 772, 773, 7, 111, 2, 2, 773, 164, 3, 2, 2, 2, 774, 775, 7, 117, 2, 2, 775, 776, 7, 107, 2, 2, 776, 777, 7, 124, 2, 2, 777, 778, 7, 103, 2, 2, 778, 779, 7, 113, 2, 2, 779, 780, 7, 104, 2, 2, 780, 166, 3, 2, 2, 2, 781, 782, 7, 118, 2, 2, 782, 783, 7, 123, 2, 2, 783, 784, 7, 114, 2, 2, 784, 785, 7, 103, 2, 2, 785, 786, 7, 107, 2, 2, 786, 787, 7, 102, 2, 2, 787, 168, 3, 2, 2, 2, 788, 789, 7, 102, 2, 2, 789, 790, 7, 103, 2, 2, 790, 791, 7, 104, 2, 2, 791, 792, 7, 107, 2, 2, 792, 793, 7, 112, 2, 2, 793, 794, 7, 103, 2, 2, 794, 795, 7, 102, 2, 2, 795, 170, 3, 2, 2, 2, 796, 797, 7, 109, 2, 2, 797, 798, 7, 107, 2, 2, 798, 799, 7, 101, 2, 2, 799, 800, 7, 109, 2, 2, 800, 801, 7, 99, 2, 2, 801, 802, 7, 117, 2, 2, 802, 803, 7, 111, 2, 2, 803, 172, 3, 2, 2, 2, 804, 805, 7, 116, 2, 2, 805, 806, 7, 103, 2, 2, 806, 807, 7, 117, 2, 2, 807, 808, 7, 113, 2, 2, 808, 809, 7, 119, 2, 2, 809, 810, 7, 116, 2, 2, 810, 811, 7, 101, 2, 2, 811, 812, 7, 103, 2, 2, 812, 174, 3, 2, 2, 2, 813, 814, 7, 119, 2, 2, 814, 815, 7, 117, 2, 2, 815, 816, 7, 103, 2, 2, 816, 817, 7, 117, 2, 2, 817, 176, 3, 2, 2, 2, 818, 819, 7, 101, 2, 2, 819, 820, 7, 110, 2, 2, 820, 821, 7, 113, 2, 2, 821, 822, 7, 100, 2, 2, 822, 823, 7, 100, 2, 2, 823, 824, 7, 103, 2, 2, 824, 825, 7, 116, 2, 2, 825, 826, 7, 117, 2, 2, 826, 178, 3, 2, 2, 2, 827, 828, 7, 100, 2, 2, 828, 829, 7, 123, 2, 2, 829, 830, 7, 118, 2, 2, 830, 831, 7, 103, 2, 2, 831, 832, 7, 117, 2, 2, 832, 180, 3, 2, 2, 2, 833, 834, 7, 101, 2, 2, 834, 835, 7, 123, 2, 2, 835, 836, 7, 101, 2, 2, 836, 837, 7, 110, 2, 2, 837, 838, 7, 103, 2, 2, 838, 839, 7, 117, 2, 2, 839, 182, 3, 2, 2, 2, 840, 841, 7, 35, 2, 2, 841, 184, 3, 2, 2, 2, 842, 843, 7, 117, 2, 2, 843, 844, 7, 107, 2, 2, 844, 845, 7, 105, 2, 2, 845, 846, 7, 112, 2, 2, 846, 847, 7, 103, 2, 2, 847, 857, 7, 102, 2, 2, 848, 849, 7, 119, 2, 2, 849, 850, 7, 112, 2, 2, 850, 851, 7, 117, 2, 2, 851, 852, 7, 107, 2, 2, 852, 853, 7, 105, 2, 2, 853, 854, 7, 112, 2, 2, 854, 855, 7, 103, 2, 2, 855, 857, 7, 102, 2, 2, 856, 842, 3, 2, 2, 2, 856, 848, 3, 2, 2, 2, 857, 186, 3, 2, 2, 2, 858, 859, 7, 100, 2, 2, 859, 860, 7, 123, 2, 2, 860, 861, 7, 118, 2, 2, 861, 896, 7, 103, 2, 2, 862, 863, 7, 121, 2, 2, 863, 864, 7, 113, 2, 2, 864, 865, 7, 116, 2, 2, 865, 896, 7, 102, 2, 2, 866, 867, 7, 102, 2, 2, 867, 868, 7, 121, 2, 2, 868, 869, 7, 113, 2, 2, 869, 870, 7, 116, 2, 2, 870, 896, 7, 102, 2, 2, 871, 872, 7, 100, 2, 2, 872, 873, 7, 113, 2, 2, 873, 874, 7, 113, 2, 2, 874, 896, 7, 110, 2, 2, 875, 876, 7, 101, 2, 2, 876, 877, 7, 106, 2, 2, 877, 878, 7, 99, 2, 2, 878, 896, 7, 116, 2, 2, 879, 880, 7, 117, 2, 2, 880, 881, 7, 106, 2, 2, 881, 882, 7, 113, 2, 2, 882, 883, 7, 116, 2, 2, 883, 896, 7, 118, 2, 2, 884, 885, 7, 107, 2, 2, 885, 886, 7, 112, 2, 2, 886, 896, 7, 118, 2, 2, 887, 888, 7, 110, 2, 2, 888, 889, 7, 113, 2, 2, 889, 890, 7, 112, 2, 2, 890, 896, 7, 105, 2, 2, 891, 892, 7, 120, 2, 2, 892, 893, 7, 113, 2, 2, 893, 894, 7, 107, 2, 2, 894, 896, 7, 102, 2, 2, 895, 858, 3, 2, 2, 2, 895, 862, 3, 2, 2, 2, 895, 866, 3, 2, 2, 2, 895, 871, 3, 2, 2, 2, 895, 875, 3, 2, 2, 2, 895, 879, 3, 2, 2, 2, 895, 884, 3, 2, 2, 2, 895, 887, 3, 2, 2, 2, 895, 891, 3, 2, 2, 2, 896, 188, 3, 2, 2, 2, 897, 898, 7, 118, 2, 2, 898, 899, 7, 116, 2, 2, 899, 900, 7, 119, 2, 2, 900, 907, 7, 103, 2, 2, 901, 902, 7, 104, 2, 2, 902, 903, 7, 99, 2, 2, 903, 904, 7, 110, 2, 2, 904, 905, 7, 117, 2, 2, 905, 907, 7, 103, 2, 2, 906, 897, 3, 2, 2, 2, 906, 901, 3, 2, 2, 2, 907, 190, 3, 2, 2, 2, 908, 909, 7, 125, 2, 2, 909, 910, 7, 125, 2, 2, 910, 914, 3, 2, 2, 2, 911, 913, 11, 2, 2, 2, 912, 911, 3, 2, 2, 2, 913, 916, 3, 2, 2, 2, 914, 915, 3, 2, 2, 2, 914, 912, 3, 2, 2, 2, 915, 917, 3, 2, 2, 2, 916, 914, 3, 2, 2, 2, 917, 918, 7, 127, 2, 2, 918, 919, 7, 127, 2, 2, 919, 192, 3, 2, 2, 2, 920, 921, 7, 37, 2, 2, 921, 922, 7, 107, 2, 2, 922, 923, 7, 111, 2, 2, 923, 924, 7, 114, 2, 2, 924, 925, 7, 113, 2, 2, 925, 926, 7, 116, 2, 2, 926, 927, 7, 118, 2, 2, 927, 928, 3, 2, 2, 2, 928, 929, 8, 96, 4, 2, 929, 194, 3, 2, 2, 2, 930, 931, 7, 37, 2, 2, 931, 932, 7, 107, 2, 2, 932, 933, 7, 112, 2, 2, 933, 934, 7, 101, 2, 2, 934, 935, 7, 110, 2, 2, 935, 936, 7, 119, 2, 2, 936, 937, 7, 102, 2, 2, 937, 938, 7, 103, 2, 2, 938, 939, 3, 2, 2, 2, 939, 940, 8, 97, 5, 2, 940, 196, 3, 2, 2, 2, 941, 942, 7, 37, 2, 2, 942, 943, 7, 114, 2, 2, 943, 944, 7, 116, 2, 2, 944, 945, 7, 99, 2, 2, 945, 946, 7, 105, 2, 2, 946, 947, 7, 111, 2, 2, 947, 948, 7, 99, 2, 2, 948, 198, 3, 2, 2, 2, 949, 950, 7, 37, 2, 2, 950, 951, 7, 102, 2, 2, 951, 952, 7, 103, 2, 2, 952, 953, 7, 104, 2, 2, 953, 954, 7, 107, 2, 2, 954, 955, 7, 112, 2, 2, 955, 956, 7, 103, 2, 2, 956, 200, 3, 2, 2, 2, 957, 958, 7, 94, 2, 2, 958, 963, 7, 12, 2, 2, 959, 960, 7, 94, 2, 2, 960, 961, 7, 15, 2, 2, 961, 963, 7, 12, 2, 2, 962, 957, 3, 2, 2, 2, 962, 959, 3, 2, 2, 2, 963, 202, 3, 2, 2, 2, 964, 965, 7, 37, 2, 2, 965, 966, 7, 119, 2, 2, 966, 967, 7, 112, 2, 2, 967, 968, 7, 102, 2, 2, 968, 969, 7, 103, 2, 2, 969, 970, 7, 104, 2, 2, 970, 204, 3, 2, 2, 2, 971, 972, 7, 37, 2, 2, 972, 973, 7, 107, 2, 2, 973, 974, 7, 104, 2, 2, 974, 975, 7, 102, 2, 2, 975, 976, 7, 103, 2, 2, 976, 977, 7, 104, 2, 2, 977, 206, 3, 2, 2, 2, 978, 979, 7, 37, 2, 2, 979, 980, 7, 107, 2, 2, 980, 981, 7, 104, 2, 2, 981, 982, 7, 112, 2, 2, 982, 983, 7, 102, 2, 2, 983, 984, 7, 103, 2, 2, 984, 985, 7, 104, 2, 2, 985, 208, 3, 2, 2, 2, 986, 987, 7, 37, 2, 2, 987, 988, 7, 107, 2, 2, 988, 989, 7, 104, 2, 2, 989, 210, 3, 2, 2, 2, 990, 991, 7, 37, 2, 2, 991, 992, 7, 103, 2, 2, 992, 993, 7, 110, 2, 2, 993, 994, 7, 107, 2, 2, 994, 995, 7, 104, 2, 2, 995, 212, 3, 2, 2, 2, 996, 997, 7, 37, 2, 2, 997, 998, 7, 103, 2, 2, 998, 999, 7, 110, 2, 2, 999, 1000, 7, 117, 2, 2, 1000, 1001, 7, 103, 2, 2, 1001, 214, 3, 2, 2, 2, 1002, 1003, 7, 37, 2, 2, 1003, 1004, 7, 103, 2, 2, 1004, 1005, 7, 112, 2, 2, 1005, 1006, 7, 102, 2, 2, 1006, 1007, 7, 107, 2, 2, 1007, 1008, 7, 104, 2, 2, 1008, 216, 3, 2, 2, 2, 1009, 1012, 5, 219, 109, 2, 1010, 1012, 5, 227, 113, 2, 1011, 1009, 3, 2, 2, 2, 1011, 1010, 3, 2, 2, 2, 1012, 218, 3, 2, 2, 2, 1013, 1017, 5, 221, 110, 2, 1014, 1017, 5, 223, 111, 2, 1015, 1017, 5, 225, 112, 2, 1016, 1013, 3, 2, 2, 2, 1016, 1014, 3, 2, 2, 2, 1016, 1015, 3, 2, 2, 2, 1017, 220, 3, 2, 2, 2, 1018, 1024, 7, 39, 2, 2, 1019, 1020, 7, 50, 2, 2, 1020, 1024, 7, 100, 2, 2, 1021, 1022, 7, 50, 2, 2, 1022, 1024, 7, 68, 2, 2, 1023, 1018, 3, 2, 2, 2, 1023, 1019, 3, 2, 2, 2, 1023, 1021, 3, 2, 2, 2, 1024, 1028, 3, 2, 2, 2, 1025, 1027, 5, 235, 117, 2, 1026, 1025, 3, 2, 2, 2, 1027, 1030, 3, 2, 2, 2, 1028, 1026, 3, 2, 2, 2, 1028, 1029, 3, 2, 2, 2, 1029, 1031, 3, 2, 2, 2, 1030, 1028, 3, 2, 2, 2, 1031, 1033, 7, 48, 2, 2, 1032, 1034, 5, 235, 117, 2, 1033, 1032, 3, 2, 2, 2, 1034, 1035, 3, 2, 2, 2, 1035, 1033, 3, 2, 2, 2, 1035, 1036, 3, 2, 2, 2, 1036, 222, 3, 2, 2, 2, 1037, 1039, 5, 237, 118, 2, 1038, 1037, 3, 2, 2, 2, 1039, 1042, 3, 2, 2, 2, 1040, 1038, 3, 2, 2, 2, 1040, 1041, 3, 2, 2, 2, 1041, 1043, 3, 2, 2, 2, 1042, 1040, 3, 2, 2, 2, 1043, 1045, 7, 48, 2, 2, 1044, 1046, 5, 237, 118, 2, 1045, 1044, 3, 2, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1045, 3, 2, 2, 2, 1047, 1048, 3, 2, 2, 2, 1048, 224, 3, 2, 2, 2, 1049, 1055, 7, 38, 2, 2, 1050, 1051, 7, 50, 2, 2, 1051, 1055, 7, 122, 2, 2, 1052, 1053, 7, 50, 2, 2, 1053, 1055, 7, 90, 2, 2, 1054, 1049, 3, 2, 2, 2, 1054, 1050, 3, 2, 2, 2, 1054, 1052, 3, 2, 2, 2, 1055, 1059, 3, 2, 2, 2, 1056, 1058, 5, 239, 119, 2, 1057, 1056, 3, 2, 2, 2, 1058, 1061, 3, 2, 2, 2, 1059, 1057, 3, 2, 2, 2, 1059, 1060, 3, 2, 2, 2, 1060, 1062, 3, 2, 2, 2, 1061, 1059, 3, 2, 2, 2, 1062, 1064, 7, 48, 2, 2, 1063, 1065, 5, 239, 119, 2, 1064, 1063, 3, 2, 2, 2, 1065, 1066, 3, 2, 2, 2, 1066, 1064, 3, 2, 2, 2, 1066, 1067, 3, 2, 2, 2, 1067, 226, 3, 2, 2, 2, 1068, 1072, 5, 231, 115, 2, 1069, 1072, 5, 233, 116, 2, 1070, 1072, 5, 229, 114, 2, 1071, 1068, 3, 2, 2, 2, 1071, 1069, 3, 2, 2, 2, 1071, 1070, 3, 2, 2, 2, 1072, 1076, 3, 2, 2, 2, 1073, 1074, 9, 2, 2, 2, 1074, 1077, 9, 3, 2, 2, 1075, 1077, 7, 110, 2, 2, 1076, 1073, 3, 2, 2, 2, 1076, 1075, 3, 2, 2, 2, 1076, 1077, 3, 2, 2, 2, 1077, 228, 3, 2, 2, 2, 1078, 1079, 7, 50, 2, 2, 1079, 1081, 9, 4, 2, 2, 1080, 1082, 5, 235, 117, 2, 1081, 1080, 3, 2, 2, 2, 1082, 1083, 3, 2, 2, 2, 1083, 1081, 3, 2, 2, 2, 1083, 1084, 3, 2, 2, 2, 1084, 1092, 3, 2, 2, 2, 1085, 1087, 7, 39, 2, 2, 1086, 1088, 5, 235, 117, 2, 1087, 1086, 3, 2, 2, 2, 1088, 1089, 3, 2, 2, 2, 1089, 1087, 3, 2, 2, 2, 1089, 1090, 3, 2, 2, 2, 1090, 1092, 3, 2, 2, 2, 1091, 1078, 3, 2, 2, 2, 1091, 1085, 3, 2, 2, 2, 1092, 230, 3, 2, 2, 2, 1093, 1095, 5, 237, 118, 2, 1094, 1093, 3, 2, 2, 2, 1095, 1096, 3, 2, 2, 2, 1096, 1094, 3, 2, 2, 2, 1096, 1097, 3, 2, 2, 2, 1097, 232, 3, 2, 2, 2, 1098, 1104, 7, 38, 2, 2, 1099, 1100, 7, 50, 2, 2, 1100, 1104, 7, 122, 2, 2, 1101, 1102, 7, 50, 2, 2, 1102, 1104, 7, 90, 2, 2, 1103, 1098, 3, 2, 2, 2, 1103, 1099, 3, 2, 2, 2, 1103, 1101, 3, 2, 2, 2, 1104, 1106, 3, 2, 2, 2, 1105, 1107, 5, 239, 119, 2, 1106, 1105, 3, 2, 2, 2, 1107, 1108, 3, 2, 2, 2, 1108, 1106, 3, 2, 2, 2, 1108, 1109, 3, 2, 2, 2, 1109, 234, 3, 2, 2, 2, 1110, 1111, 9, 5, 2, 2, 1111, 236, 3, 2, 2, 2, 1112, 1113, 9, 6, 2, 2, 1113, 238, 3, 2, 2, 2, 1114, 1115, 9, 7, 2, 2, 1115, 240, 3, 2, 2, 2, 1116, 1120, 5, 243, 121, 2, 1117, 1119, 5, 245, 122, 2, 1118, 1117, 3, 2, 2, 2, 1119, 1122, 3, 2, 2, 2, 1120, 1118, 3, 2, 2, 2, 1120, 1121, 3, 2, 2, 2, 1121, 1123, 3, 2, 2, 2, 1122, 1120, 3, 2, 2, 2, 1123, 1124, 8, 120, 6, 2, 1124, 242, 3, 2, 2, 2, 1125, 1126, 9, 8, 2, 2, 1126, 244, 3, 2, 2, 2, 1127, 1128, 9, 9, 2, 2, 1128, 246, 3, 2, 2, 2, 1129, 1135, 7, 36, 2, 2, 1130, 1131, 7, 94, 2, 2, 1131, 1134, 7, 36, 2, 2, 1132, 1134, 10, 10, 2, 2, 1133, 1130, 3, 2, 2, 2, 1133, 1132, 3, 2, 2, 2, 1134, 1137, 3, 2, 2, 2, 1135, 1133, 3, 2, 2, 2, 1135, 1136, 3, 2, 2, 2, 1136, 1138, 3, 2, 2, 2, 1137, 1135, 3, 2, 2, 2, 1138, 1140, 7, 36, 2, 2, 1139, 1141, 9, 11, 2, 2, 1140, 1139, 3, 2, 2, 2, 1140, 1141, 3, 2, 2, 2, 1141, 1146, 3, 2, 2, 2, 1142, 1144, 9, 12, 2, 2, 1143, 1145, 9, 13, 2, 2, 1144, 1143, 3, 2, 2, 2, 1144, 1145, 3, 2, 2, 2, 1145, 1147, 3, 2, 2, 2, 1146, 1142, 3, 2, 2, 2, 1146, 1147, 3, 2, 2, 2, 1147, 1149, 3, 2, 2, 2, 1148, 1150, 9, 11, 2, 2, 1149, 1148, 3, 2, 2, 2, 1149, 1150, 3, 2, 2, 2, 1150, 248, 3, 2, 2, 2, 1151, 1160, 7, 41, 2, 2, 1152, 1157, 7, 94, 2, 2, 1153, 1158, 9, 14, 2, 2, 1154, 1155, 7, 122, 2, 2, 1155, 1156, 9, 15, 2, 2, 1156, 1158, 9, 15, 2, 2, 1157, 1153, 3, 2, 2, 2, 1157, 1154, 3, 2, 2, 2, 1158, 1161, 3, 2, 2, 2, 1159, 1161, 10, 16, 2, 2, 1160, 1152, 3, 2, 2, 2, 1160, 1159, 3, 2, 2, 2, 1161, 1162, 3, 2, 2, 2, 1162, 1163, 7, 41, 2, 2, 1163, 250, 3, 2, 2, 2, 1164, 1166, 9, 17, 2, 2, 1165, 1164, 3, 2, 2, 2, 1166, 1167, 3, 2, 2, 2, 1167, 1165, 3, 2, 2, 2, 1167, 1168, 3, 2, 2, 2, 1168, 1169, 3, 2, 2, 2, 1169, 1170, 8, 125, 7, 2, 1170, 252, 3, 2, 2, 2, 1171, 1172, 7, 49, 2, 2, 1172, 1173, 7, 49, 2, 2, 1173, 1177, 3, 2, 2, 2, 1174, 1176, 10, 18, 2, 2, 1175, 1174, 3, 2, 2, 2, 1176, 1179, 3, 2, 2, 2, 1177, 1175, 3, 2, 2, 2, 1177, 1178, 3, 2, 2, 2, 1178, 1180, 3, 2, 2, 2, 1179, 1177, 3, 2, 2, 2, 1180, 1181, 8, 126, 8, 2, 1181, 254, 3, 2, 2, 2, 1182, 1183, 7, 49, 2, 2, 1183, 1184, 7, 44, 2, 2, 1184, 1188, 3, 2, 2, 2, 1185, 1187, 11, 2, 2, 2, 1186, 1185, 3, 2, 2, 2, 1187, 1190, 3, 2, 2, 2, 1188, 1189, 3, 2, 2, 2, 1188, 1186, 3, 2, 2, 2, 1189, 1191, 3, 2, 2, 2, 1190, 1188, 3, 2, 2, 2, 1191, 1192, 7, 44, 2, 2, 1192, 1193, 7, 49, 2, 2, 1193, 1194, 3, 2, 2, 2, 1194, 1195, 8, 127, 8, 2, 1195, 256, 3, 2, 2, 2, 1196, 1197, 7, 48, 2, 2, 1197, 1198, 7, 100, 2, 2, 1198, 1199, 7, 123, 2, 2, 1199, 1200, 7, 118, 2, 2, 1200, 1201, 7, 103, 2, 2, 1201, 258, 3, 2, 2, 2, 1202, 1203, 7, 100, 2, 2, 1203, 1204, 7, 116, 2, 2, 1204, 1425, 7, 109, 2, 2, 1205, 1206, 7, 113, 2, 2, 1206, 1207, 7, 116, 2, 2, 1207, 1425, 7, 99, 2, 2, 1208, 1209, 7, 109, 2, 2, 1209, 1210, 7, 107, 2, 2, 1210, 1425, 7, 110, 2, 2, 1211, 1212, 7, 117, 2, 2, 1212, 1213, 7, 110, 2, 2, 1213, 1425, 7, 113, 2, 2, 1214, 1215, 7, 112, 2, 2, 1215, 1216, 7, 113, 2, 2, 1216, 1425, 7, 114, 2, 2, 1217, 1218, 7, 99, 2, 2, 1218, 1219, 7, 117, 2, 2, 1219, 1425, 7, 110, 2, 2, 1220, 1221, 7, 114, 2, 2, 1221, 1222, 7, 106, 2, 2, 1222, 1425, 7, 114, 2, 2, 1223, 1224, 7, 99, 2, 2, 1224, 1225, 7, 112, 2, 2, 1225, 1425, 7, 101, 2, 2, 1226, 1227, 7, 100, 2, 2, 1227, 1228, 7, 114, 2, 2, 1228, 1425, 7, 110, 2, 2, 1229, 1230, 7, 101, 2, 2, 1230, 1231, 7, 110, 2, 2, 1231, 1425, 7, 101, 2, 2, 1232, 1233, 7, 108, 2, 2, 1233, 1234, 7, 117, 2, 2, 1234, 1425, 7, 116, 2, 2, 1235, 1236, 7, 99, 2, 2, 1236, 1237, 7, 112, 2, 2, 1237, 1425, 7, 102, 2, 2, 1238, 1239, 7, 116, 2, 2, 1239, 1240, 7, 110, 2, 2, 1240, 1425, 7, 99, 2, 2, 1241, 1242, 7, 100, 2, 2, 1242, 1243, 7, 107, 2, 2, 1243, 1425, 7, 118, 2, 2, 1244, 1245, 7, 116, 2, 2, 1245, 1246, 7, 113, 2, 2, 1246, 1425, 7, 110, 2, 2, 1247, 1248, 7, 114, 2, 2, 1248, 1249, 7, 110, 2, 2, 1249, 1425, 7, 99, 2, 2, 1250, 1251, 7, 114, 2, 2, 1251, 1252, 7, 110, 2, 2, 1252, 1425, 7, 114, 2, 2, 1253, 1254, 7, 100, 2, 2, 1254, 1255, 7, 111, 2, 2, 1255, 1425, 7, 107, 2, 2, 1256, 1257, 7, 117, 2, 2, 1257, 1258, 7, 103, 2, 2, 1258, 1425, 7, 101, 2, 2, 1259, 1260, 7, 116, 2, 2, 1260, 1261, 7, 118, 2, 2, 1261, 1425, 7, 107, 2, 2, 1262, 1263, 7, 103, 2, 2, 1263, 1264, 7, 113, 2, 2, 1264, 1425, 7, 116, 2, 2, 1265, 1266, 7, 117, 2, 2, 1266, 1267, 7, 116, 2, 2, 1267, 1425, 7, 103, 2, 2, 1268, 1269, 7, 110, 2, 2, 1269, 1270, 7, 117, 2, 2, 1270, 1425, 7, 116, 2, 2, 1271, 1272, 7, 114, 2, 2, 1272, 1273, 7, 106, 2, 2, 1273, 1425, 7, 99, 2, 2, 1274, 1275, 7, 99, 2, 2, 1275, 1276, 7, 110, 2, 2, 1276, 1425, 7, 116, 2, 2, 1277, 1278, 7, 108, 2, 2, 1278, 1279, 7, 111, 2, 2, 1279, 1425, 7, 114, 2, 2, 1280, 1281, 7, 100, 2, 2, 1281, 1282, 7, 120, 2, 2, 1282, 1425, 7, 101, 2, 2, 1283, 1284, 7, 101, 2, 2, 1284, 1285, 7, 110, 2, 2, 1285, 1425, 7, 107, 2, 2, 1286, 1287, 7, 116, 2, 2, 1287, 1288, 7, 118, 2, 2, 1288, 1425, 7, 117, 2, 2, 1289, 1290, 7, 99, 2, 2, 1290, 1291, 7, 102, 2, 2, 1291, 1425, 7, 101, 2, 2, 1292, 1293, 7, 116, 2, 2, 1293, 1294, 7, 116, 2, 2, 1294, 1425, 7, 99, 2, 2, 1295, 1296, 7, 100, 2, 2, 1296, 1297, 7, 120, 2, 2, 1297, 1425, 7, 117, 2, 2, 1298, 1299, 7, 117, 2, 2, 1299, 1300, 7, 103, 2, 2, 1300, 1425, 7, 107, 2, 2, 1301, 1302, 7, 117, 2, 2, 1302, 1303, 7, 99, 2, 2, 1303, 1425, 7, 122, 2, 2, 1304, 1305, 7, 117, 2, 2, 1305, 1306, 7, 118, 2, 2, 1306, 1425, 7, 123, 2, 2, 1307, 1308, 7, 117, 2, 2, 1308, 1309, 7, 118, 2, 2, 1309, 1425, 7, 99, 2, 2, 1310, 1311, 7, 117, 2, 2, 1311, 1312, 7, 118, 2, 2, 1312, 1425, 7, 122, 2, 2, 1313, 1314, 7, 102, 2, 2, 1314, 1315, 7, 103, 2, 2, 1315, 1425, 7, 123, 2, 2, 1316, 1317, 7, 118, 2, 2, 1317, 1318, 7, 122, 2, 2, 1318, 1425, 7, 99, 2, 2, 1319, 1320, 7, 122, 2, 2, 1320, 1321, 7, 99, 2, 2, 1321, 1425, 7, 99, 2, 2, 1322, 1323, 7, 100, 2, 2, 1323, 1324, 7, 101, 2, 2, 1324, 1425, 7, 101, 2, 2, 1325, 1326, 7, 99, 2, 2, 1326, 1327, 7, 106, 2, 2, 1327, 1425, 7, 122, 2, 2, 1328, 1329, 7, 118, 2, 2, 1329, 1330, 7, 123, 2, 2, 1330, 1425, 7, 99, 2, 2, 1331, 1332, 7, 118, 2, 2, 1332, 1333, 7, 122, 2, 2, 1333, 1425, 7, 117, 2, 2, 1334, 1335, 7, 118, 2, 2, 1335, 1336, 7, 99, 2, 2, 1336, 1425, 7, 117, 2, 2, 1337, 1338, 7, 117, 2, 2, 1338, 1339, 7, 106, 2, 2, 1339, 1425, 7, 123, 2, 2, 1340, 1341, 7, 117, 2, 2, 1341, 1342, 7, 106, 2, 2, 1342, 1425, 7, 122, 2, 2, 1343, 1344, 7, 110, 2, 2, 1344, 1345, 7, 102, 2, 2, 1345, 1425, 7, 123, 2, 2, 1346, 1347, 7, 110, 2, 2, 1347, 1348, 7, 102, 2, 2, 1348, 1425, 7, 99, 2, 2, 1349, 1350, 7, 110, 2, 2, 1350, 1351, 7, 102, 2, 2, 1351, 1425, 7, 122, 2, 2, 1352, 1353, 7, 110, 2, 2, 1353, 1354, 7, 99, 2, 2, 1354, 1425, 7, 122, 2, 2, 1355, 1356, 7, 118, 2, 2, 1356, 1357, 7, 99, 2, 2, 1357, 1425, 7, 123, 2, 2, 1358, 1359, 7, 118, 2, 2, 1359, 1360, 7, 99, 2, 2, 1360, 1425, 7, 122, 2, 2, 1361, 1362, 7, 100, 2, 2, 1362, 1363, 7, 101, 2, 2, 1363, 1425, 7, 117, 2, 2, 1364, 1365, 7, 101, 2, 2, 1365, 1366, 7, 110, 2, 2, 1366, 1425, 7, 120, 2, 2, 1367, 1368, 7, 118, 2, 2, 1368, 1369, 7, 117, 2, 2, 1369, 1425, 7, 122, 2, 2, 1370, 1371, 7, 110, 2, 2, 1371, 1372, 7, 99, 2, 2, 1372, 1425, 7, 117, 2, 2, 1373, 1374, 7, 101, 2, 2, 1374, 1375, 7, 114, 2, 2, 1375, 1425, 7, 123, 2, 2, 1376, 1377, 7, 101, 2, 2, 1377, 1378, 7, 111, 2, 2, 1378, 1425, 7, 114, 2, 2, 1379, 1380, 7, 101, 2, 2, 1380, 1381, 7, 114, 2, 2, 1381, 1425, 7, 122, 2, 2, 1382, 1383, 7, 102, 2, 2, 1383, 1384, 7, 101, 2, 2, 1384, 1425, 7, 114, 2, 2, 1385, 1386, 7, 102, 2, 2, 1386, 1387, 7, 103, 2, 2, 1387, 1425, 7, 101, 2, 2, 1388, 1389, 7, 107, 2, 2, 1389, 1390, 7, 112, 2, 2, 1390, 1425, 7, 101, 2, 2, 1391, 1392, 7, 99, 2, 2, 1392, 1393, 7, 122, 2, 2, 1393, 1425, 7, 117, 2, 2, 1394, 1395, 7, 100, 2, 2, 1395, 1396, 7, 112, 2, 2, 1396, 1425, 7, 103, 2, 2, 1397, 1398, 7, 101, 2, 2, 1398, 1399, 7, 110, 2, 2, 1399, 1425, 7, 102, 2, 2, 1400, 1401, 7, 117, 2, 2, 1401, 1402, 7, 100, 2, 2, 1402, 1425, 7, 101, 2, 2, 1403, 1404, 7, 107, 2, 2, 1404, 1405, 7, 117, 2, 2, 1405, 1425, 7, 101, 2, 2, 1406, 1407, 7, 107, 2, 2, 1407, 1408, 7, 112, 2, 2, 1408, 1425, 7, 122, 2, 2, 1409, 1410, 7, 100, 2, 2, 1410, 1411, 7, 103, 2, 2, 1411, 1425, 7, 115, 2, 2, 1412, 1413, 7, 117, 2, 2, 1413, 1414, 7, 103, 2, 2, 1414, 1425, 7, 102, 2, 2, 1415, 1416, 7, 102, 2, 2, 1416, 1417, 7, 103, 2, 2, 1417, 1425, 7, 122, 2, 2, 1418, 1419, 7, 107, 2, 2, 1419, 1420, 7, 112, 2, 2, 1420, 1425, 7, 123, 2, 2, 1421, 1422, 7, 116, 2, 2, 1422, 1423, 7, 113, 2, 2, 1423, 1425, 7, 116, 2, 2, 1424, 1202, 3, 2, 2, 2, 1424, 1205, 3, 2, 2, 2, 1424, 1208, 3, 2, 2, 2, 1424, 1211, 3, 2, 2, 2, 1424, 1214, 3, 2, 2, 2, 1424, 1217, 3, 2, 2, 2, 1424, 1220, 3, 2, 2, 2, 1424, 1223, 3, 2, 2, 2, 1424, 1226, 3, 2, 2, 2, 1424, 1229, 3, 2, 2, 2, 1424, 1232, 3, 2, 2, 2, 1424, 1235, 3, 2, 2, 2, 1424, 1238, 3, 2, 2, 2, 1424, 1241, 3, 2, 2, 2, 1424, 1244, 3, 2, 2, 2, 1424, 1247, 3, 2, 2, 2, 1424, 1250, 3, 2, 2, 2, 1424, 1253, 3, 2, 2, 2, 1424, 1256, 3, 2, 2, 2, 1424, 1259, 3, 2, 2, 2, 1424, 1262, 3, 2, 2, 2, 1424, 1265, 3, 2, 2, 2, 1424, 1268, 3, 2, 2, 2, 1424, 1271, 3, 2, 2, 2, 1424, 1274, 3, 2, 2, 2, 1424, 1277, 3, 2, 2, 2, 1424, 1280, 3, 2, 2, 2, 1424, 1283, 3, 2, 2, 2, 1424, 1286, 3, 2, 2, 2, 1424, 1289, 3, 2, 2, 2, 1424, 1292, 3, 2, 2, 2, 1424, 1295, 3, 2, 2, 2, 1424, 1298, 3, 2, 2, 2, 1424, 1301, 3, 2, 2, 2, 1424, 1304, 3, 2, 2, 2, 1424, 1307, 3, 2, 2, 2, 1424, 1310, 3, 2, 2, 2, 1424, 1313, 3, 2, 2, 2, 1424, 1316, 3, 2, 2, 2, 1424, 1319, 3, 2, 2, 2, 1424, 1322, 3, 2, 2, 2, 1424, 1325, 3, 2, 2, 2, 1424, 1328, 3, 2, 2, 2, 1424, 1331, 3, 2, 2, 2, 1424, 1334, 3, 2, 2, 2, 1424, 1337, 3, 2, 2, 2, 1424, 1340, 3, 2, 2, 2, 1424, 1343, 3, 2, 2, 2, 1424, 1346, 3, 2, 2, 2, 1424, 1349, 3, 2, 2, 2, 1424, 1352, 3, 2, 2, 2, 1424, 1355, 3, 2, 2, 2, 1424, 1358, 3, 2, 2, 2, 1424, 1361, 3, 2, 2, 2, 1424, 1364, 3, 2, 2, 2, 1424, 1367, 3, 2, 2, 2, 1424, 1370, 3, 2, 2, 2, 1424, 1373, 3, 2, 2, 2, 1424, 1376, 3, 2, 2, 2, 1424, 1379, 3, 2, 2, 2, 1424, 1382, 3, 2, 2, 2, 1424, 1385, 3, 2, 2, 2, 1424, 1388, 3, 2, 2, 2, 1424, 1391, 3, 2, 2, 2, 1424, 1394, 3, 2, 2, 2, 1424, 1397, 3, 2, 2, 2, 1424, 1400, 3, 2, 2, 2, 1424, 1403, 3, 2, 2, 2, 1424, 1406, 3, 2, 2, 2, 1424, 1409, 3, 2, 2, 2, 1424, 1412, 3, 2, 2, 2, 1424, 1415, 3, 2, 2, 2, 1424, 1418, 3, 2, 2, 2, 1424, 1421, 3, 2, 2, 2, 1425, 260, 3, 2, 2, 2, 1426, 1427, 7, 37, 2, 2, 1427, 262, 3, 2, 2, 2, 1428, 1429, 7, 60, 2, 2, 1429, 264, 3, 2, 2, 2, 1430, 1431, 7, 46, 2, 2, 1431, 266, 3, 2, 2, 2, 1432, 1433, 7, 42, 2, 2, 1433, 268, 3, 2, 2, 2, 1434, 1435, 7, 43, 2, 2, 1435, 270, 3, 2, 2, 2, 1436, 1437, 7, 93, 2, 2, 1437, 272, 3, 2, 2, 2, 1438, 1439, 7, 95, 2, 2, 1439, 274, 3, 2, 2, 2, 1440, 1441, 7, 48, 2, 2, 1441, 276, 3, 2, 2, 2, 1442, 1443, 7, 62, 2, 2, 1443, 1444, 7, 62, 2, 2, 1444, 278, 3, 2, 2, 2, 1445, 1446, 7, 64, 2, 2, 1446, 1447, 7, 64, 2, 2, 1447, 280, 3, 2, 2, 2, 1448, 1449, 7, 45, 2, 2, 1449, 282, 3, 2, 2, 2, 1450, 1451, 7, 47, 2, 2, 1451, 284, 3, 2, 2, 2, 1452, 1453, 7, 62, 2, 2, 1453, 286, 3, 2, 2, 2, 1454, 1455, 7, 64, 2, 2, 1455, 288, 3, 2, 2, 2, 1456, 1457, 7, 44, 2, 2, 1457, 290, 3, 2, 2, 2, 1458, 1459, 7, 49, 2, 2, 1459, 292, 3, 2, 2, 2, 1460, 1461, 7, 125, 2, 2, 1461, 1462, 8, 146, 9, 2, 1462, 294, 3, 2, 2, 2, 1463, 1464, 7, 127, 2, 2, 1464, 1465, 8, 147, 10, 2, 1465, 296, 3, 2, 2, 2, 1466, 1469, 5, 299, 149, 2, 1467, 1469, 5, 307, 153, 2, 1468, 1466, 3, 2, 2, 2, 1468, 1467, 3, 2, 2, 2, 1469, 298, 3, 2, 2, 2, 1470, 1474, 5, 301, 150, 2, 1471, 1474, 5, 303, 151, 2, 1472, 1474, 5, 305, 152, 2, 1473, 1470, 3, 2, 2, 2, 1473, 1471, 3, 2, 2, 2, 1473, 1472, 3, 2, 2, 2, 1474, 300, 3, 2, 2, 2, 1475, 1479, 7, 39, 2, 2, 1476, 1478, 5, 315, 157, 2, 1477, 1476, 3, 2, 2, 2, 1478, 1481, 3, 2, 2, 2, 1479, 1477, 3, 2, 2, 2, 1479, 1480, 3, 2, 2, 2, 1480, 1482, 3, 2, 2, 2, 1481, 1479, 3, 2, 2, 2, 1482, 1484, 7, 48, 2, 2, 1483, 1485, 5, 315, 157, 2, 1484, 1483, 3, 2, 2, 2, 1485, 1486, 3, 2, 2, 2, 1486, 1484, 3, 2, 2, 2, 1486, 1487, 3, 2, 2, 2, 1487, 302, 3, 2, 2, 2, 1488, 1490, 5, 317, 158, 2, 1489, 1488, 3, 2, 2, 2, 1490, 1493, 3, 2, 2, 2, 1491, 1489, 3, 2, 2, 2, 1491, 1492, 3, 2, 2, 2, 1492, 1494, 3, 2, 2, 2, 1493, 1491, 3, 2, 2, 2, 1494, 1496, 7, 48, 2, 2, 1495, 1497, 5, 317, 158, 2, 1496, 1495, 3, 2, 2, 2, 1497, 1498, 3, 2, 2, 2, 1498, 1496, 3, 2, 2, 2, 1498, 1499, 3, 2, 2, 2, 1499, 304, 3, 2, 2, 2, 1500, 1504, 7, 38, 2, 2, 1501, 1503, 5, 319, 159, 2, 1502, 1501, 3, 2, 2, 2, 1503, 1506, 3, 2, 2, 2, 1504, 1502, 3, 2, 2, 2, 1504, 1505, 3, 2, 2, 2, 1505, 1507, 3, 2, 2, 2, 1506, 1504, 3, 2, 2, 2, 1507, 1509, 7, 48, 2, 2, 1508, 1510, 5, 319, 159, 2, 1509, 1508, 3, 2, 2, 2, 1510, 1511, 3, 2, 2, 2, 1511, 1509, 3, 2, 2, 2, 1511, 1512, 3, 2, 2, 2, 1512, 306, 3, 2, 2, 2, 1513, 1517, 5, 311, 155, 2, 1514, 1517, 5, 313, 156, 2, 1515, 1517, 5, 309, 154, 2, 1516, 1513, 3, 2, 2, 2, 1516, 1514, 3, 2, 2, 2, 1516, 1515, 3, 2, 2, 2, 1517, 308, 3, 2, 2, 2, 1518, 1520, 7, 39, 2, 2, 1519, 1521, 5, 315, 157, 2, 1520, 1519, 3, 2, 2, 2, 1521, 1522, 3, 2, 2, 2, 1522, 1520, 3, 2, 2, 2, 1522, 1523, 3, 2, 2, 2, 1523, 310, 3, 2, 2, 2, 1524, 1526, 5, 317, 158, 2, 1525, 1524, 3, 2, 2, 2, 1526, 1527, 3, 2, 2, 2, 1527, 1525, 3, 2, 2, 2, 1527, 1528, 3, 2, 2, 2, 1528, 312, 3, 2, 2, 2, 1529, 1531, 7, 38, 2, 2, 1530, 1532, 5, 319, 159, 2, 1531, 1530, 3, 2, 2, 2, 1532, 1533, 3, 2, 2, 2, 1533, 1531, 3, 2, 2, 2, 1533, 1534, 3, 2, 2, 2, 1534, 314, 3, 2, 2, 2, 1535, 1536, 9, 5, 2, 2, 1536, 316, 3, 2, 2, 2, 1537, 1538, 9, 6, 2, 2, 1538, 318, 3, 2, 2, 2, 1539, 1540, 9, 7, 2, 2, 1540, 320, 3, 2, 2, 2, 1541, 1545, 7, 41, 2, 2, 1542, 1543, 7, 94, 2, 2, 1543, 1546, 9, 14, 2, 2, 1544, 1546, 10, 16, 2, 2, 1545, 1542, 3, 2, 2, 2, 1545, 1544, 3, 2, 2, 2, 1546, 1547, 3, 2, 2, 2, 1547, 1548, 7, 41, 2, 2, 1548, 322, 3, 2, 2, 2, 1549, 1551, 5, 325, 162, 2, 1550, 1552, 9, 19, 2, 2, 1551, 1550, 3, 2, 2, 2, 1552, 1553, 3, 2, 2, 2, 1553, 1551, 3, 2, 2, 2, 1553, 1554, 3, 2, 2, 2, 1554, 324, 3, 2, 2, 2, 1555, 1559, 7, 35, 2, 2, 1556, 1558, 5, 331, 165, 2, 1557, 1556, 3, 2, 2, 2, 1558, 1561, 3, 2, 2, 2, 1559, 1557, 3, 2, 2, 2, 1559, 1560, 3, 2, 2, 2, 1560, 326, 3, 2, 2, 2, 1561, 1559, 3, 2, 2, 2, 1562, 1566, 5, 329, 164, 2, 1563, 1565, 5, 331, 165, 2, 1564, 1563, 3, 2, 2, 2, 1565, 1568, 3, 2, 2, 2, 1566, 1564, 3, 2, 2, 2, 1566, 1567, 3, 2, 2, 2, 1567, 328, 3, 2, 2, 2, 1568, 1566, 3, 2, 2, 2, 1569, 1570, 9, 8, 2, 2, 1570, 330, 3, 2, 2, 2, 1571, 1572, 9, 9, 2, 2, 1572, 332, 3, 2, 2, 2, 1573, 1575, 9, 17, 2, 2, 1574, 1573, 3, 2, 2, 2, 1575, 1576, 3, 2, 2, 2, 1576, 1574, 3, 2, 2, 2, 1576, 1577, 3, 2, 2, 2, 1577, 1578, 3, 2, 2, 2, 1578, 1579, 8, 166, 7, 2, 1579, 334, 3, 2, 2, 2, 1580, 1581, 7, 49, 2, 2, 1581, 1582, 7, 49, 2, 2, 1582, 1586, 3, 2, 2, 2, 1583, 1585, 10, 18, 2, 2, 1584, 1583, 3, 2, 2, 2, 1585, 1588, 3, 2, 2, 2, 1586, 1584, 3, 2, 2, 2, 1586, 1587, 3, 2, 2, 2, 1587, 1589, 3, 2, 2, 2, 1588, 1586, 3, 2, 2, 2, 1589, 1590, 8, 167, 8, 2, 1590, 336, 3, 2, 2, 2, 1591, 1592, 7, 49, 2, 2, 1592, 1593, 7, 44, 2, 2, 1593, 1597, 3, 2, 2, 2, 1594, 1596, 11, 2, 2, 2, 1595, 1594, 3, 2, 2, 2, 1596, 1599, 3, 2, 2, 2, 1597, 1598, 3, 2, 2, 2, 1597, 1595, 3, 2, 2, 2, 1598, 1600, 3, 2, 2, 2, 1599, 1597, 3, 2, 2, 2, 1600, 1601, 7, 44, 2, 2, 1601, 1602, 7, 49, 2, 2, 1602, 1603, 3, 2, 2, 2, 1603, 1604, 8, 168, 8, 2, 1604, 338, 3, 2, 2, 2, 1605, 1607, 7, 62, 2, 2, 1606, 1608, 9, 20, 2, 2, 1607, 1606, 3, 2, 2, 2, 1608, 1609, 3, 2, 2, 2, 1609, 1607, 3, 2, 2, 2, 1609, 1610, 3, 2, 2, 2, 1610, 1611, 3, 2, 2, 2, 1611, 1612, 7, 64, 2, 2, 1612, 1613, 8, 169, 11, 2, 1613, 340, 3, 2, 2, 2, 1614, 1620, 7, 36, 2, 2, 1615, 1616, 7, 94, 2, 2, 1616, 1619, 7, 36, 2, 2, 1617, 1619, 10, 10, 2, 2, 1618, 1615, 3, 2, 2, 2, 1618, 1617, 3, 2, 2, 2, 1619, 1622, 3, 2, 2, 2, 1620, 1618, 3, 2, 2, 2, 1620, 1621, 3, 2, 2, 2, 1621, 1623, 3, 2, 2, 2, 1622, 1620, 3, 2, 2, 2, 1623, 1624, 7, 36, 2, 2, 1624, 1625, 8, 170, 12, 2, 1625, 342, 3, 2, 2, 2, 1626, 1628, 9, 17, 2, 2, 1627, 1626, 3, 2, 2, 2, 1628, 1629, 3, 2, 2, 2, 1629, 1627, 3, 2, 2, 2, 1629, 1630, 3, 2, 2, 2, 1630, 1631, 3, 2, 2, 2, 1631, 1632, 8, 171, 7, 2, 1632, 344, 3, 2, 2, 2, 1633, 1634, 7, 49, 2, 2, 1634, 1635, 7, 49, 2, 2, 1635, 1639, 3, 2, 2, 2, 1636, 1638, 10, 18, 2, 2, 1637, 1636, 3, 2, 2, 2, 1638, 1641, 3, 2, 2, 2, 1639, 1637, 3, 2, 2, 2, 1639, 1640, 3, 2, 2, 2, 1640, 1642, 3, 2, 2, 2, 1641, 1639, 3, 2, 2, 2, 1642, 1643, 8, 172, 8, 2, 1643, 346, 3, 2, 2, 2, 1644, 1645, 7, 49, 2, 2, 1645, 1646, 7, 44, 2, 2, 1646, 1650, 3, 2, 2, 2, 1647, 1649, 11, 2, 2, 2, 1648, 1647, 3, 2, 2, 2, 1649, 1652, 3, 2, 2, 2, 1650, 1651, 3, 2, 2, 2, 1650, 1648, 3, 2, 2, 2, 1651, 1653, 3, 2, 2, 2, 1652, 1650, 3, 2, 2, 2, 1653, 1654, 7, 44, 2, 2, 1654, 1655, 7, 49, 2, 2, 1655, 1656, 3, 2, 2, 2, 1656, 1657, 8, 173, 8, 2, 1657, 348, 3, 2, 2, 2, 68, 2, 3, 4, 458, 681, 856, 895, 906, 914, 962, 1011, 1016, 1023, 1028, 1035, 1040, 1047, 1054, 1059, 1066, 1071, 1076, 1083, 1089, 1091, 1096, 1103, 1108, 1120, 1133, 1135, 1140, 1144, 1146, 1149, 1157, 1160, 1167, 1177, 1188, 1424, 1468, 1473, 1479, 1486, 1491, 1498, 1504, 1511, 1516, 1522, 1527, 1533, 1545, 1553, 1559, 1566, 1576, 1586, 1597, 1609, 1618, 1620, 1629, 1639, 1650, 13, 3, 2, 2, 3, 77, 3, 3, 96, 4, 3, 97, 5, 3, 120, 6, 2, 3, 2, 2, 4, 2, 3, 146, 7, 3, 147, 8, 3, 169, 9, 3, 170, 10] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java index 32aa09c71..adb177d2b 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.java @@ -26,29 +26,29 @@ public class KickCLexer extends Lexer { SHIFT_LEFT=27, SHIFT_RIGHT=28, EQUAL=29, NOT_EQUAL=30, LESS_THAN=31, LESS_THAN_EQUAL=32, GREATER_THAN_EQUAL=33, GREATER_THAN=34, LOGIC_AND=35, LOGIC_OR=36, ASSIGN=37, ASSIGN_COMPOUND=38, TYPEDEF=39, RESERVE=40, PC=41, TARGET=42, LINK=43, - EMULATOR=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49, EXTERN=50, - EXPORT=51, ALIGN=52, INLINE=53, VOLATILE=54, STATIC=55, INTERRUPT=56, - REGISTER=57, ADDRESS=58, ADDRESS_ZEROPAGE=59, ADDRESS_MAINMEM=60, FORM_SSA=61, - FORM_MA=62, INTRINSIC=63, CALLING=64, CALLINGCONVENTION=65, VARMODEL=66, - IF=67, ELSE=68, WHILE=69, DO=70, FOR=71, SWITCH=72, RETURN=73, BREAK=74, - CONTINUE=75, ASM=76, DEFAULT=77, CASE=78, STRUCT=79, ENUM=80, SIZEOF=81, - TYPEID=82, DEFINED=83, KICKASM=84, RESOURCE=85, USES=86, CLOBBERS=87, - BYTES=88, CYCLES=89, LOGIC_NOT=90, SIGNEDNESS=91, SIMPLETYPE=92, BOOLEAN=93, - KICKASM_BODY=94, IMPORT=95, INCLUDE=96, PRAGMA=97, DEFINE=98, DEFINE_CONTINUE=99, - UNDEF=100, IFDEF=101, IFNDEF=102, IFIF=103, ELIF=104, IFELSE=105, ENDIF=106, - NUMBER=107, NUMFLOAT=108, BINFLOAT=109, DECFLOAT=110, HEXFLOAT=111, NUMINT=112, - BININTEGER=113, DECINTEGER=114, HEXINTEGER=115, NAME=116, STRING=117, - CHAR=118, WS=119, COMMENT_LINE=120, COMMENT_BLOCK=121, ASM_BYTE=122, ASM_MNEMONIC=123, - ASM_IMM=124, ASM_COLON=125, ASM_COMMA=126, ASM_PAR_BEGIN=127, ASM_PAR_END=128, - ASM_BRACKET_BEGIN=129, ASM_BRACKET_END=130, ASM_DOT=131, ASM_SHIFT_LEFT=132, - ASM_SHIFT_RIGHT=133, ASM_PLUS=134, ASM_MINUS=135, ASM_LESS_THAN=136, ASM_GREATER_THAN=137, - ASM_MULTIPLY=138, ASM_DIVIDE=139, ASM_CURLY_BEGIN=140, ASM_CURLY_END=141, - ASM_NUMBER=142, ASM_NUMFLOAT=143, ASM_BINFLOAT=144, ASM_DECFLOAT=145, - ASM_HEXFLOAT=146, ASM_NUMINT=147, ASM_BININTEGER=148, ASM_DECINTEGER=149, - ASM_HEXINTEGER=150, ASM_CHAR=151, ASM_MULTI_REL=152, ASM_MULTI_NAME=153, - ASM_NAME=154, ASM_WS=155, ASM_COMMENT_LINE=156, ASM_COMMENT_BLOCK=157, - IMPORT_SYSTEMFILE=158, IMPORT_LOCALFILE=159, IMPORT_WS=160, IMPORT_COMMENT_LINE=161, - IMPORT_COMMENT_BLOCK=162; + EXTENSION=44, EMULATOR=45, CPU=46, CODESEG=47, DATASEG=48, ENCODING=49, + CONST=50, EXTERN=51, EXPORT=52, ALIGN=53, INLINE=54, VOLATILE=55, STATIC=56, + INTERRUPT=57, REGISTER=58, ADDRESS=59, ADDRESS_ZEROPAGE=60, ADDRESS_MAINMEM=61, + FORM_SSA=62, FORM_MA=63, INTRINSIC=64, CALLING=65, CALLINGCONVENTION=66, + VARMODEL=67, IF=68, ELSE=69, WHILE=70, DO=71, FOR=72, SWITCH=73, RETURN=74, + BREAK=75, CONTINUE=76, ASM=77, DEFAULT=78, CASE=79, STRUCT=80, ENUM=81, + SIZEOF=82, TYPEID=83, DEFINED=84, KICKASM=85, RESOURCE=86, USES=87, CLOBBERS=88, + BYTES=89, CYCLES=90, LOGIC_NOT=91, SIGNEDNESS=92, SIMPLETYPE=93, BOOLEAN=94, + KICKASM_BODY=95, IMPORT=96, INCLUDE=97, PRAGMA=98, DEFINE=99, DEFINE_CONTINUE=100, + UNDEF=101, IFDEF=102, IFNDEF=103, IFIF=104, ELIF=105, IFELSE=106, ENDIF=107, + NUMBER=108, NUMFLOAT=109, BINFLOAT=110, DECFLOAT=111, HEXFLOAT=112, NUMINT=113, + BININTEGER=114, DECINTEGER=115, HEXINTEGER=116, NAME=117, STRING=118, + CHAR=119, WS=120, COMMENT_LINE=121, COMMENT_BLOCK=122, ASM_BYTE=123, ASM_MNEMONIC=124, + ASM_IMM=125, ASM_COLON=126, ASM_COMMA=127, ASM_PAR_BEGIN=128, ASM_PAR_END=129, + ASM_BRACKET_BEGIN=130, ASM_BRACKET_END=131, ASM_DOT=132, ASM_SHIFT_LEFT=133, + ASM_SHIFT_RIGHT=134, ASM_PLUS=135, ASM_MINUS=136, ASM_LESS_THAN=137, ASM_GREATER_THAN=138, + ASM_MULTIPLY=139, ASM_DIVIDE=140, ASM_CURLY_BEGIN=141, ASM_CURLY_END=142, + ASM_NUMBER=143, ASM_NUMFLOAT=144, ASM_BINFLOAT=145, ASM_DECFLOAT=146, + ASM_HEXFLOAT=147, ASM_NUMINT=148, ASM_BININTEGER=149, ASM_DECINTEGER=150, + ASM_HEXINTEGER=151, ASM_CHAR=152, ASM_MULTI_REL=153, ASM_MULTI_NAME=154, + ASM_NAME=155, ASM_WS=156, ASM_COMMENT_LINE=157, ASM_COMMENT_BLOCK=158, + IMPORT_SYSTEMFILE=159, IMPORT_LOCALFILE=160, IMPORT_WS=161, IMPORT_COMMENT_LINE=162, + IMPORT_COMMENT_BLOCK=163; public static final int ASM_MODE=1, IMPORT_MODE=2; public static String[] channelNames = { @@ -67,20 +67,20 @@ public class KickCLexer extends Lexer { "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EMULATOR", "CPU", "CODESEG", - "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", - "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", - "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", "CALLING", "CALLINGCONVENTION", - "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", - "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", - "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", - "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "IMPORT", - "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", - "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", - "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", - "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", "NAME_START", "NAME_CHAR", - "STRING", "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", - "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", + "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EXTENSION", "EMULATOR", + "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", + "ALIGN", "INLINE", "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", + "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", + "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF", "ELSE", "WHILE", "DO", + "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", + "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", + "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", + "BOOLEAN", "KICKASM_BODY", "IMPORT", "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", + "UNDEF", "IFDEF", "IFNDEF", "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", + "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", + "DECINTEGER", "HEXINTEGER", "BINDIGIT", "DECDIGIT", "HEXDIGIT", "NAME", + "NAME_START", "NAME_CHAR", "STRING", "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", + "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", @@ -100,9 +100,9 @@ public class KickCLexer extends Lexer { "'...'", "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, "'<='", "'>='", null, "'&&'", "'||'", "'='", null, "'typedef'", "'reserve'", - "'pc'", "'target'", "'link'", "'emulator'", "'cpu'", "'code_seg'", "'data_seg'", - "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'inline'", - "'volatile'", "'static'", "'interrupt'", "'register'", "'__address'", + "'pc'", "'target'", "'link'", "'extension'", "'emulator'", "'cpu'", "'code_seg'", + "'data_seg'", "'encoding'", "'const'", "'extern'", "'export'", "'align'", + "'inline'", "'volatile'", "'static'", "'interrupt'", "'register'", "'__address'", "'__zp'", "'__mem'", "'__ssa'", "'__ma'", "'__intrinsic'", "'calling'", null, "'var_model'", "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", @@ -123,27 +123,27 @@ public class KickCLexer extends Lexer { "INC", "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EMULATOR", "CPU", "CODESEG", - "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", - "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", - "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", "CALLING", "CALLINGCONVENTION", - "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", - "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", - "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", - "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "IMPORT", - "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", - "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", - "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", - "NAME", "STRING", "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", - "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", - "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", - "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", - "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", - "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", - "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", - "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK", - "IMPORT_SYSTEMFILE", "IMPORT_LOCALFILE", "IMPORT_WS", "IMPORT_COMMENT_LINE", - "IMPORT_COMMENT_BLOCK" + "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EXTENSION", "EMULATOR", + "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", + "ALIGN", "INLINE", "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", + "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", + "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF", "ELSE", "WHILE", "DO", + "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", + "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", + "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", + "BOOLEAN", "KICKASM_BODY", "IMPORT", "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", + "UNDEF", "IFDEF", "IFNDEF", "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", + "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", + "DECINTEGER", "HEXINTEGER", "NAME", "STRING", "CHAR", "WS", "COMMENT_LINE", + "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", + "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", + "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", + "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", + "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", + "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", + "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", + "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK", "IMPORT_SYSTEMFILE", "IMPORT_LOCALFILE", + "IMPORT_WS", "IMPORT_COMMENT_LINE", "IMPORT_COMMENT_BLOCK" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -224,28 +224,28 @@ public class KickCLexer extends Lexer { case 0: CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 74: + case 75: ASM_action((RuleContext)_localctx, actionIndex); break; - case 93: + case 94: IMPORT_action((RuleContext)_localctx, actionIndex); break; - case 94: + case 95: INCLUDE_action((RuleContext)_localctx, actionIndex); break; - case 117: + case 118: NAME_action((RuleContext)_localctx, actionIndex); break; - case 143: + case 144: ASM_CURLY_BEGIN_action((RuleContext)_localctx, actionIndex); break; - case 144: + case 145: ASM_CURLY_END_action((RuleContext)_localctx, actionIndex); break; - case 166: + case 167: IMPORT_SYSTEMFILE_action((RuleContext)_localctx, actionIndex); break; - case 167: + case 168: IMPORT_LOCALFILE_action((RuleContext)_localctx, actionIndex); break; } @@ -315,7 +315,7 @@ public class KickCLexer extends Lexer { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u00a4\u066e\b\1\b"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\2\u00a5\u067a\b\1\b"+ "\1\b\1\4\2\t\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t"+ "\4\n\t\n\4\13\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21"+ "\t\21\4\22\t\22\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30"+ @@ -339,614 +339,619 @@ public class KickCLexer extends Lexer { "\t\u009f\4\u00a0\t\u00a0\4\u00a1\t\u00a1\4\u00a2\t\u00a2\4\u00a3\t\u00a3"+ "\4\u00a4\t\u00a4\4\u00a5\t\u00a5\4\u00a6\t\u00a6\4\u00a7\t\u00a7\4\u00a8"+ "\t\u00a8\4\u00a9\t\u00a9\4\u00aa\t\u00aa\4\u00ab\t\u00ab\4\u00ac\t\u00ac"+ - "\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3\b\3\b\3\t\3\t\3"+ - "\n\3\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\r\3\r\3\16\3\16\3\17\3\17\3\17"+ - "\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\25\3\25\3\25\3\26"+ - "\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\33\3\33\3\33\3\34"+ - "\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3 \3 \3 \3!\3!\3!\3"+ - "\"\3\"\3#\3#\3#\3$\3$\3$\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&"+ - "\3&\3&\3&\3&\3&\3&\3&\3&\3&\5&\u01c9\n&\3\'\3\'\3\'\3\'\3\'\3\'\3\'\3"+ - "\'\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3*\3*\3*\3*\3*\3*\3*\3+\3+\3+\3+\3"+ - "+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3.\3.\3.\3.\3.\3.\3.\3.\3.\3"+ - "/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60"+ - "\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3\62\3\62\3\62\3\62\3\62\3\62\3\63"+ - "\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3\64\3\64\3\64\3\64\3\65\3\65"+ - "\3\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66\3\66"+ - "\3\67\3\67\3\67\3\67\3\67\3\67\3\67\38\38\38\38\38\38\38\38\38\38\39\3"+ - "9\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3:\3:\3:\3:\3:\3;\3;\3;\3;\3;\3"+ - "<\3<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3=\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3?\3"+ - "?\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3A\3A\3A\3A\3A\3A\3A\3A\3A\3"+ - "A\3A\3A\3A\3A\3A\3A\3A\3A\3A\3A\5A\u029e\nA\3B\3B\3B\3B\3B\3B\3B\3B\3"+ - "B\3B\3C\3C\3C\3D\3D\3D\3D\3D\3E\3E\3E\3E\3E\3E\3F\3F\3F\3G\3G\3G\3G\3"+ - "H\3H\3H\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I\3J\3J\3J\3J\3J\3J\3K\3K\3K\3"+ - "K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3M\3M\3M\3M\3M\3M\3M\3M\3N\3N\3N\3"+ - "N\3N\3O\3O\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P\3Q\3Q\3Q\3Q\3Q\3Q\3Q\3R\3R\3"+ - "R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3S\3T\3T\3T\3T\3T\3T\3T\3T\3U\3U\3"+ - "U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3W\3W\3W\3W\3W\3W\3W\3W\3W\3X\3X\3"+ - "X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3[\3[\3[\3[\3[\3[\3[\3[\3[\3[\3"+ - "[\3[\3[\3[\5[\u034d\n[\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\"+ - "\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3"+ - "\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\5\\\u0374\n\\\3]\3]\3]\3]\3]\3]\3]\3]\3"+ - "]\5]\u037f\n]\3^\3^\3^\3^\7^\u0385\n^\f^\16^\u0388\13^\3^\3^\3^\3_\3_"+ - "\3_\3_\3_\3_\3_\3_\3_\3_\3`\3`\3`\3`\3`\3`\3`\3`\3`\3`\3`\3a\3a\3a\3a"+ - "\3a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3b\3b\3c\3c\3c\3c\3c\5c\u03b7\nc\3d\3d"+ - "\3d\3d\3d\3d\3d\3e\3e\3e\3e\3e\3e\3e\3f\3f\3f\3f\3f\3f\3f\3f\3g\3g\3g"+ - "\3g\3h\3h\3h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3j\3j\3j\3k\3k\5k"+ - "\u03e8\nk\3l\3l\3l\5l\u03ed\nl\3m\3m\3m\3m\3m\5m\u03f4\nm\3m\7m\u03f7"+ - "\nm\fm\16m\u03fa\13m\3m\3m\6m\u03fe\nm\rm\16m\u03ff\3n\7n\u0403\nn\fn"+ - "\16n\u0406\13n\3n\3n\6n\u040a\nn\rn\16n\u040b\3o\3o\3o\3o\3o\5o\u0413"+ - "\no\3o\7o\u0416\no\fo\16o\u0419\13o\3o\3o\6o\u041d\no\ro\16o\u041e\3p"+ - "\3p\3p\5p\u0424\np\3p\3p\3p\5p\u0429\np\3q\3q\3q\6q\u042e\nq\rq\16q\u042f"+ - "\3q\3q\6q\u0434\nq\rq\16q\u0435\5q\u0438\nq\3r\6r\u043b\nr\rr\16r\u043c"+ - "\3s\3s\3s\3s\3s\5s\u0444\ns\3s\6s\u0447\ns\rs\16s\u0448\3t\3t\3u\3u\3"+ - "v\3v\3w\3w\7w\u0453\nw\fw\16w\u0456\13w\3w\3w\3x\3x\3y\3y\3z\3z\3z\3z"+ - "\7z\u0462\nz\fz\16z\u0465\13z\3z\3z\5z\u0469\nz\3z\3z\5z\u046d\nz\5z\u046f"+ - "\nz\3z\5z\u0472\nz\3{\3{\3{\3{\3{\3{\5{\u047a\n{\3{\5{\u047d\n{\3{\3{"+ - "\3|\6|\u0482\n|\r|\16|\u0483\3|\3|\3}\3}\3}\3}\7}\u048c\n}\f}\16}\u048f"+ - "\13}\3}\3}\3~\3~\3~\3~\7~\u0497\n~\f~\16~\u049a\13~\3~\3~\3~\3~\3~\3\177"+ - "\3\177\3\177\3\177\3\177\3\177\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080"+ - "\3\u0080\5\u0080\u0585\n\u0080\3\u0081\3\u0081\3\u0082\3\u0082\3\u0083"+ + "\4\u00ad\t\u00ad\3\2\3\2\3\2\3\3\3\3\3\4\3\4\3\5\3\5\3\6\3\6\3\7\3\7\3"+ + "\b\3\b\3\t\3\t\3\n\3\n\3\13\3\13\3\13\3\f\3\f\3\f\3\f\3\r\3\r\3\16\3\16"+ + "\3\17\3\17\3\17\3\20\3\20\3\21\3\21\3\22\3\22\3\23\3\23\3\24\3\24\3\25"+ + "\3\25\3\25\3\26\3\26\3\26\3\27\3\27\3\30\3\30\3\31\3\31\3\32\3\32\3\33"+ + "\3\33\3\33\3\34\3\34\3\34\3\35\3\35\3\35\3\36\3\36\3\36\3\37\3\37\3 \3"+ + " \3 \3!\3!\3!\3\"\3\"\3#\3#\3#\3$\3$\3$\3%\3%\3&\3&\3&\3&\3&\3&\3&\3&"+ + "\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\3&\5&\u01cb\n&\3\'\3\'\3\'\3\'"+ + "\3\'\3\'\3\'\3\'\3(\3(\3(\3(\3(\3(\3(\3(\3)\3)\3)\3*\3*\3*\3*\3*\3*\3"+ + "*\3+\3+\3+\3+\3+\3,\3,\3,\3,\3,\3,\3,\3,\3,\3,\3-\3-\3-\3-\3-\3-\3-\3"+ + "-\3-\3.\3.\3.\3.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3\60\3\60\3\60\3\60\3\60\3"+ + "\60\3\60\3\60\3\60\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\61\3\62\3"+ + "\62\3\62\3\62\3\62\3\62\3\63\3\63\3\63\3\63\3\63\3\63\3\63\3\64\3\64\3"+ + "\64\3\64\3\64\3\64\3\64\3\65\3\65\3\65\3\65\3\65\3\65\3\66\3\66\3\66\3"+ + "\66\3\66\3\66\3\66\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\3\67\38\38"+ + "\38\38\38\38\38\39\39\39\39\39\39\39\39\39\39\3:\3:\3:\3:\3:\3:\3:\3:"+ + "\3:\3;\3;\3;\3;\3;\3;\3;\3;\3;\3;\3<\3<\3<\3<\3<\3=\3=\3=\3=\3=\3=\3>"+ + "\3>\3>\3>\3>\3>\3?\3?\3?\3?\3?\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3@\3A"+ + "\3A\3A\3A\3A\3A\3A\3A\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B\3B"+ + "\3B\3B\3B\3B\5B\u02aa\nB\3C\3C\3C\3C\3C\3C\3C\3C\3C\3C\3D\3D\3D\3E\3E"+ + "\3E\3E\3E\3F\3F\3F\3F\3F\3F\3G\3G\3G\3H\3H\3H\3H\3I\3I\3I\3I\3I\3I\3I"+ + "\3J\3J\3J\3J\3J\3J\3J\3K\3K\3K\3K\3K\3K\3L\3L\3L\3L\3L\3L\3L\3L\3L\3M"+ + "\3M\3M\3M\3M\3M\3N\3N\3N\3N\3N\3N\3N\3N\3O\3O\3O\3O\3O\3P\3P\3P\3P\3P"+ + "\3P\3P\3Q\3Q\3Q\3Q\3Q\3R\3R\3R\3R\3R\3R\3R\3S\3S\3S\3S\3S\3S\3S\3T\3T"+ + "\3T\3T\3T\3T\3T\3T\3U\3U\3U\3U\3U\3U\3U\3U\3V\3V\3V\3V\3V\3V\3V\3V\3V"+ + "\3W\3W\3W\3W\3W\3X\3X\3X\3X\3X\3X\3X\3X\3X\3Y\3Y\3Y\3Y\3Y\3Y\3Z\3Z\3Z"+ + "\3Z\3Z\3Z\3Z\3[\3[\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\\3\\"+ + "\3\\\5\\\u0359\n\\\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]"+ + "\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\3]\5]\u0380"+ + "\n]\3^\3^\3^\3^\3^\3^\3^\3^\3^\5^\u038b\n^\3_\3_\3_\3_\7_\u0391\n_\f_"+ + "\16_\u0394\13_\3_\3_\3_\3`\3`\3`\3`\3`\3`\3`\3`\3`\3`\3a\3a\3a\3a\3a\3"+ + "a\3a\3a\3a\3a\3a\3b\3b\3b\3b\3b\3b\3b\3b\3c\3c\3c\3c\3c\3c\3c\3c\3d\3"+ + "d\3d\3d\3d\5d\u03c3\nd\3e\3e\3e\3e\3e\3e\3e\3f\3f\3f\3f\3f\3f\3f\3g\3"+ + "g\3g\3g\3g\3g\3g\3g\3h\3h\3h\3h\3i\3i\3i\3i\3i\3i\3j\3j\3j\3j\3j\3j\3"+ + "k\3k\3k\3k\3k\3k\3k\3l\3l\5l\u03f4\nl\3m\3m\3m\5m\u03f9\nm\3n\3n\3n\3"+ + "n\3n\5n\u0400\nn\3n\7n\u0403\nn\fn\16n\u0406\13n\3n\3n\6n\u040a\nn\rn"+ + "\16n\u040b\3o\7o\u040f\no\fo\16o\u0412\13o\3o\3o\6o\u0416\no\ro\16o\u0417"+ + "\3p\3p\3p\3p\3p\5p\u041f\np\3p\7p\u0422\np\fp\16p\u0425\13p\3p\3p\6p\u0429"+ + "\np\rp\16p\u042a\3q\3q\3q\5q\u0430\nq\3q\3q\3q\5q\u0435\nq\3r\3r\3r\6"+ + "r\u043a\nr\rr\16r\u043b\3r\3r\6r\u0440\nr\rr\16r\u0441\5r\u0444\nr\3s"+ + "\6s\u0447\ns\rs\16s\u0448\3t\3t\3t\3t\3t\5t\u0450\nt\3t\6t\u0453\nt\r"+ + "t\16t\u0454\3u\3u\3v\3v\3w\3w\3x\3x\7x\u045f\nx\fx\16x\u0462\13x\3x\3"+ + "x\3y\3y\3z\3z\3{\3{\3{\3{\7{\u046e\n{\f{\16{\u0471\13{\3{\3{\5{\u0475"+ + "\n{\3{\3{\5{\u0479\n{\5{\u047b\n{\3{\5{\u047e\n{\3|\3|\3|\3|\3|\3|\5|"+ + "\u0486\n|\3|\5|\u0489\n|\3|\3|\3}\6}\u048e\n}\r}\16}\u048f\3}\3}\3~\3"+ + "~\3~\3~\7~\u0498\n~\f~\16~\u049b\13~\3~\3~\3\177\3\177\3\177\3\177\7\177"+ + "\u04a3\n\177\f\177\16\177\u04a6\13\177\3\177\3\177\3\177\3\177\3\177\3"+ + "\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0080\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081\3\u0081"+ + "\3\u0081\3\u0081\3\u0081\5\u0081\u0591\n\u0081\3\u0082\3\u0082\3\u0083"+ "\3\u0083\3\u0084\3\u0084\3\u0085\3\u0085\3\u0086\3\u0086\3\u0087\3\u0087"+ - "\3\u0088\3\u0088\3\u0089\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a\3\u008b"+ + "\3\u0088\3\u0088\3\u0089\3\u0089\3\u008a\3\u008a\3\u008a\3\u008b\3\u008b"+ "\3\u008b\3\u008c\3\u008c\3\u008d\3\u008d\3\u008e\3\u008e\3\u008f\3\u008f"+ - "\3\u0090\3\u0090\3\u0091\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0093"+ - "\3\u0093\5\u0093\u05b1\n\u0093\3\u0094\3\u0094\3\u0094\5\u0094\u05b6\n"+ - "\u0094\3\u0095\3\u0095\7\u0095\u05ba\n\u0095\f\u0095\16\u0095\u05bd\13"+ - "\u0095\3\u0095\3\u0095\6\u0095\u05c1\n\u0095\r\u0095\16\u0095\u05c2\3"+ - "\u0096\7\u0096\u05c6\n\u0096\f\u0096\16\u0096\u05c9\13\u0096\3\u0096\3"+ - "\u0096\6\u0096\u05cd\n\u0096\r\u0096\16\u0096\u05ce\3\u0097\3\u0097\7"+ - "\u0097\u05d3\n\u0097\f\u0097\16\u0097\u05d6\13\u0097\3\u0097\3\u0097\6"+ - "\u0097\u05da\n\u0097\r\u0097\16\u0097\u05db\3\u0098\3\u0098\3\u0098\5"+ - "\u0098\u05e1\n\u0098\3\u0099\3\u0099\6\u0099\u05e5\n\u0099\r\u0099\16"+ - "\u0099\u05e6\3\u009a\6\u009a\u05ea\n\u009a\r\u009a\16\u009a\u05eb\3\u009b"+ - "\3\u009b\6\u009b\u05f0\n\u009b\r\u009b\16\u009b\u05f1\3\u009c\3\u009c"+ - "\3\u009d\3\u009d\3\u009e\3\u009e\3\u009f\3\u009f\3\u009f\3\u009f\5\u009f"+ - "\u05fe\n\u009f\3\u009f\3\u009f\3\u00a0\3\u00a0\6\u00a0\u0604\n\u00a0\r"+ - "\u00a0\16\u00a0\u0605\3\u00a1\3\u00a1\7\u00a1\u060a\n\u00a1\f\u00a1\16"+ - "\u00a1\u060d\13\u00a1\3\u00a2\3\u00a2\7\u00a2\u0611\n\u00a2\f\u00a2\16"+ - "\u00a2\u0614\13\u00a2\3\u00a3\3\u00a3\3\u00a4\3\u00a4\3\u00a5\6\u00a5"+ - "\u061b\n\u00a5\r\u00a5\16\u00a5\u061c\3\u00a5\3\u00a5\3\u00a6\3\u00a6"+ - "\3\u00a6\3\u00a6\7\u00a6\u0625\n\u00a6\f\u00a6\16\u00a6\u0628\13\u00a6"+ - "\3\u00a6\3\u00a6\3\u00a7\3\u00a7\3\u00a7\3\u00a7\7\u00a7\u0630\n\u00a7"+ - "\f\u00a7\16\u00a7\u0633\13\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7\3\u00a7"+ - "\3\u00a8\3\u00a8\6\u00a8\u063c\n\u00a8\r\u00a8\16\u00a8\u063d\3\u00a8"+ - "\3\u00a8\3\u00a8\3\u00a9\3\u00a9\3\u00a9\3\u00a9\7\u00a9\u0647\n\u00a9"+ - "\f\u00a9\16\u00a9\u064a\13\u00a9\3\u00a9\3\u00a9\3\u00a9\3\u00aa\6\u00aa"+ - "\u0650\n\u00aa\r\u00aa\16\u00aa\u0651\3\u00aa\3\u00aa\3\u00ab\3\u00ab"+ - "\3\u00ab\3\u00ab\7\u00ab\u065a\n\u00ab\f\u00ab\16\u00ab\u065d\13\u00ab"+ - "\3\u00ab\3\u00ab\3\u00ac\3\u00ac\3\u00ac\3\u00ac\7\u00ac\u0665\n\u00ac"+ - "\f\u00ac\16\u00ac\u0668\13\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac\3\u00ac"+ - "\6\u0386\u0498\u0631\u0666\2\u00ad\5\4\7\5\t\6\13\7\r\b\17\t\21\n\23\13"+ - "\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30/\31\61"+ - "\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]\60_\61"+ - "a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083C\u0085D\u0087"+ - "E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009b"+ - "O\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00af"+ - "Y\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3"+ - "c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7"+ - "m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7u\u00e9\2\u00eb"+ - "\2\u00ed\2\u00efv\u00f1\2\u00f3\2\u00f5w\u00f7x\u00f9y\u00fbz\u00fd{\u00ff"+ - "|\u0101}\u0103~\u0105\177\u0107\u0080\u0109\u0081\u010b\u0082\u010d\u0083"+ - "\u010f\u0084\u0111\u0085\u0113\u0086\u0115\u0087\u0117\u0088\u0119\u0089"+ - "\u011b\u008a\u011d\u008b\u011f\u008c\u0121\u008d\u0123\u008e\u0125\u008f"+ - "\u0127\u0090\u0129\u0091\u012b\u0092\u012d\u0093\u012f\u0094\u0131\u0095"+ - "\u0133\u0096\u0135\u0097\u0137\u0098\u0139\2\u013b\2\u013d\2\u013f\u0099"+ - "\u0141\u009a\u0143\u009b\u0145\u009c\u0147\2\u0149\2\u014b\u009d\u014d"+ - "\u009e\u014f\u009f\u0151\u00a0\u0153\u00a1\u0155\u00a2\u0157\u00a3\u0159"+ - "\u00a4\5\2\3\4\25\4\2uuww\7\2dfkknnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2"+ - "\62;CHch\5\2C\\aac|\6\2\62;C\\aac|\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$)"+ - ")hhpptt\4\2\62;ch\3\2))\6\2\13\f\17\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4"+ - "\2--//\7\2/;C\\^^aac|\2\u06ff\2\5\3\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13"+ - "\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2"+ - "\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2"+ - "!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3"+ - "\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2"+ - "\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E"+ - "\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2"+ - "\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2"+ - "\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k"+ - "\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2"+ - "\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2"+ - "\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087\3\2\2\2\2\u0089\3\2\2\2\2\u008b"+ - "\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2\2\2\u0091\3\2\2\2\2\u0093\3\2\2"+ - "\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099\3\2\2\2\2\u009b\3\2\2\2\2\u009d"+ - "\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2"+ - "\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab\3\2\2\2\2\u00ad\3\2\2\2\2\u00af"+ - "\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2"+ - "\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1"+ - "\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2"+ - "\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3"+ - "\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2\2\2\u00d9\3\2\2\2\2\u00db\3\2\2"+ - "\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5"+ - "\3\2\2\2\2\u00e7\3\2\2\2\2\u00ef\3\2\2\2\2\u00f5\3\2\2\2\2\u00f7\3\2\2"+ - "\2\2\u00f9\3\2\2\2\2\u00fb\3\2\2\2\2\u00fd\3\2\2\2\3\u00ff\3\2\2\2\3\u0101"+ - "\3\2\2\2\3\u0103\3\2\2\2\3\u0105\3\2\2\2\3\u0107\3\2\2\2\3\u0109\3\2\2"+ - "\2\3\u010b\3\2\2\2\3\u010d\3\2\2\2\3\u010f\3\2\2\2\3\u0111\3\2\2\2\3\u0113"+ - "\3\2\2\2\3\u0115\3\2\2\2\3\u0117\3\2\2\2\3\u0119\3\2\2\2\3\u011b\3\2\2"+ - "\2\3\u011d\3\2\2\2\3\u011f\3\2\2\2\3\u0121\3\2\2\2\3\u0123\3\2\2\2\3\u0125"+ - "\3\2\2\2\3\u0127\3\2\2\2\3\u0129\3\2\2\2\3\u012b\3\2\2\2\3\u012d\3\2\2"+ - "\2\3\u012f\3\2\2\2\3\u0131\3\2\2\2\3\u0133\3\2\2\2\3\u0135\3\2\2\2\3\u0137"+ - "\3\2\2\2\3\u013f\3\2\2\2\3\u0141\3\2\2\2\3\u0143\3\2\2\2\3\u0145\3\2\2"+ - "\2\3\u014b\3\2\2\2\3\u014d\3\2\2\2\3\u014f\3\2\2\2\4\u0151\3\2\2\2\4\u0153"+ - "\3\2\2\2\4\u0155\3\2\2\2\4\u0157\3\2\2\2\4\u0159\3\2\2\2\5\u015b\3\2\2"+ - "\2\7\u015e\3\2\2\2\t\u0160\3\2\2\2\13\u0162\3\2\2\2\r\u0164\3\2\2\2\17"+ - "\u0166\3\2\2\2\21\u0168\3\2\2\2\23\u016a\3\2\2\2\25\u016c\3\2\2\2\27\u016e"+ - "\3\2\2\2\31\u0171\3\2\2\2\33\u0175\3\2\2\2\35\u0177\3\2\2\2\37\u0179\3"+ - "\2\2\2!\u017c\3\2\2\2#\u017e\3\2\2\2%\u0180\3\2\2\2\'\u0182\3\2\2\2)\u0184"+ - "\3\2\2\2+\u0186\3\2\2\2-\u0189\3\2\2\2/\u018c\3\2\2\2\61\u018e\3\2\2\2"+ - "\63\u0190\3\2\2\2\65\u0192\3\2\2\2\67\u0194\3\2\2\29\u0197\3\2\2\2;\u019a"+ - "\3\2\2\2=\u019d\3\2\2\2?\u01a0\3\2\2\2A\u01a2\3\2\2\2C\u01a5\3\2\2\2E"+ - "\u01a8\3\2\2\2G\u01aa\3\2\2\2I\u01ad\3\2\2\2K\u01b0\3\2\2\2M\u01c8\3\2"+ - "\2\2O\u01ca\3\2\2\2Q\u01d2\3\2\2\2S\u01da\3\2\2\2U\u01dd\3\2\2\2W\u01e4"+ - "\3\2\2\2Y\u01e9\3\2\2\2[\u01f2\3\2\2\2]\u01f6\3\2\2\2_\u01ff\3\2\2\2a"+ - "\u0208\3\2\2\2c\u0211\3\2\2\2e\u0217\3\2\2\2g\u021e\3\2\2\2i\u0225\3\2"+ - "\2\2k\u022b\3\2\2\2m\u0232\3\2\2\2o\u023b\3\2\2\2q\u0242\3\2\2\2s\u024c"+ - "\3\2\2\2u\u0255\3\2\2\2w\u025f\3\2\2\2y\u0264\3\2\2\2{\u026a\3\2\2\2}"+ - "\u0270\3\2\2\2\177\u0275\3\2\2\2\u0081\u0281\3\2\2\2\u0083\u029d\3\2\2"+ - "\2\u0085\u029f\3\2\2\2\u0087\u02a9\3\2\2\2\u0089\u02ac\3\2\2\2\u008b\u02b1"+ - "\3\2\2\2\u008d\u02b7\3\2\2\2\u008f\u02ba\3\2\2\2\u0091\u02be\3\2\2\2\u0093"+ - "\u02c5\3\2\2\2\u0095\u02cc\3\2\2\2\u0097\u02d2\3\2\2\2\u0099\u02db\3\2"+ - "\2\2\u009b\u02e1\3\2\2\2\u009d\u02e9\3\2\2\2\u009f\u02ee\3\2\2\2\u00a1"+ - "\u02f5\3\2\2\2\u00a3\u02fa\3\2\2\2\u00a5\u0301\3\2\2\2\u00a7\u0308\3\2"+ - "\2\2\u00a9\u0310\3\2\2\2\u00ab\u0318\3\2\2\2\u00ad\u0321\3\2\2\2\u00af"+ - "\u0326\3\2\2\2\u00b1\u032f\3\2\2\2\u00b3\u0335\3\2\2\2\u00b5\u033c\3\2"+ - "\2\2\u00b7\u034c\3\2\2\2\u00b9\u0373\3\2\2\2\u00bb\u037e\3\2\2\2\u00bd"+ - "\u0380\3\2\2\2\u00bf\u038c\3\2\2\2\u00c1\u0396\3\2\2\2\u00c3\u03a1\3\2"+ - "\2\2\u00c5\u03a9\3\2\2\2\u00c7\u03b6\3\2\2\2\u00c9\u03b8\3\2\2\2\u00cb"+ - "\u03bf\3\2\2\2\u00cd\u03c6\3\2\2\2\u00cf\u03ce\3\2\2\2\u00d1\u03d2\3\2"+ - "\2\2\u00d3\u03d8\3\2\2\2\u00d5\u03de\3\2\2\2\u00d7\u03e7\3\2\2\2\u00d9"+ - "\u03ec\3\2\2\2\u00db\u03f3\3\2\2\2\u00dd\u0404\3\2\2\2\u00df\u0412\3\2"+ - "\2\2\u00e1\u0423\3\2\2\2\u00e3\u0437\3\2\2\2\u00e5\u043a\3\2\2\2\u00e7"+ - "\u0443\3\2\2\2\u00e9\u044a\3\2\2\2\u00eb\u044c\3\2\2\2\u00ed\u044e\3\2"+ - "\2\2\u00ef\u0450\3\2\2\2\u00f1\u0459\3\2\2\2\u00f3\u045b\3\2\2\2\u00f5"+ - "\u045d\3\2\2\2\u00f7\u0473\3\2\2\2\u00f9\u0481\3\2\2\2\u00fb\u0487\3\2"+ - "\2\2\u00fd\u0492\3\2\2\2\u00ff\u04a0\3\2\2\2\u0101\u0584\3\2\2\2\u0103"+ - "\u0586\3\2\2\2\u0105\u0588\3\2\2\2\u0107\u058a\3\2\2\2\u0109\u058c\3\2"+ - "\2\2\u010b\u058e\3\2\2\2\u010d\u0590\3\2\2\2\u010f\u0592\3\2\2\2\u0111"+ - "\u0594\3\2\2\2\u0113\u0596\3\2\2\2\u0115\u0599\3\2\2\2\u0117\u059c\3\2"+ - "\2\2\u0119\u059e\3\2\2\2\u011b\u05a0\3\2\2\2\u011d\u05a2\3\2\2\2\u011f"+ - "\u05a4\3\2\2\2\u0121\u05a6\3\2\2\2\u0123\u05a8\3\2\2\2\u0125\u05ab\3\2"+ - "\2\2\u0127\u05b0\3\2\2\2\u0129\u05b5\3\2\2\2\u012b\u05b7\3\2\2\2\u012d"+ - "\u05c7\3\2\2\2\u012f\u05d0\3\2\2\2\u0131\u05e0\3\2\2\2\u0133\u05e2\3\2"+ - "\2\2\u0135\u05e9\3\2\2\2\u0137\u05ed\3\2\2\2\u0139\u05f3\3\2\2\2\u013b"+ - "\u05f5\3\2\2\2\u013d\u05f7\3\2\2\2\u013f\u05f9\3\2\2\2\u0141\u0601\3\2"+ - "\2\2\u0143\u0607\3\2\2\2\u0145\u060e\3\2\2\2\u0147\u0615\3\2\2\2\u0149"+ - "\u0617\3\2\2\2\u014b\u061a\3\2\2\2\u014d\u0620\3\2\2\2\u014f\u062b\3\2"+ - "\2\2\u0151\u0639\3\2\2\2\u0153\u0642\3\2\2\2\u0155\u064f\3\2\2\2\u0157"+ - "\u0655\3\2\2\2\u0159\u0660\3\2\2\2\u015b\u015c\7}\2\2\u015c\u015d\b\2"+ - "\2\2\u015d\6\3\2\2\2\u015e\u015f\7\177\2\2\u015f\b\3\2\2\2\u0160\u0161"+ - "\7]\2\2\u0161\n\3\2\2\2\u0162\u0163\7_\2\2\u0163\f\3\2\2\2\u0164\u0165"+ - "\7*\2\2\u0165\16\3\2\2\2\u0166\u0167\7+\2\2\u0167\20\3\2\2\2\u0168\u0169"+ - "\7=\2\2\u0169\22\3\2\2\2\u016a\u016b\7<\2\2\u016b\24\3\2\2\2\u016c\u016d"+ - "\7.\2\2\u016d\26\3\2\2\2\u016e\u016f\7\60\2\2\u016f\u0170\7\60\2\2\u0170"+ - "\30\3\2\2\2\u0171\u0172\7\60\2\2\u0172\u0173\7\60\2\2\u0173\u0174\7\60"+ - "\2\2\u0174\32\3\2\2\2\u0175\u0176\7A\2\2\u0176\34\3\2\2\2\u0177\u0178"+ - "\7\60\2\2\u0178\36\3\2\2\2\u0179\u017a\7/\2\2\u017a\u017b\7@\2\2\u017b"+ - " \3\2\2\2\u017c\u017d\7-\2\2\u017d\"\3\2\2\2\u017e\u017f\7/\2\2\u017f"+ - "$\3\2\2\2\u0180\u0181\7,\2\2\u0181&\3\2\2\2\u0182\u0183\7\61\2\2\u0183"+ - "(\3\2\2\2\u0184\u0185\7\'\2\2\u0185*\3\2\2\2\u0186\u0187\7-\2\2\u0187"+ - "\u0188\7-\2\2\u0188,\3\2\2\2\u0189\u018a\7/\2\2\u018a\u018b\7/\2\2\u018b"+ - ".\3\2\2\2\u018c\u018d\7(\2\2\u018d\60\3\2\2\2\u018e\u018f\7\u0080\2\2"+ - "\u018f\62\3\2\2\2\u0190\u0191\7`\2\2\u0191\64\3\2\2\2\u0192\u0193\7~\2"+ - "\2\u0193\66\3\2\2\2\u0194\u0195\7>\2\2\u0195\u0196\7>\2\2\u01968\3\2\2"+ - "\2\u0197\u0198\7@\2\2\u0198\u0199\7@\2\2\u0199:\3\2\2\2\u019a\u019b\7"+ - "?\2\2\u019b\u019c\7?\2\2\u019c<\3\2\2\2\u019d\u019e\7#\2\2\u019e\u019f"+ - "\7?\2\2\u019f>\3\2\2\2\u01a0\u01a1\7>\2\2\u01a1@\3\2\2\2\u01a2\u01a3\7"+ - ">\2\2\u01a3\u01a4\7?\2\2\u01a4B\3\2\2\2\u01a5\u01a6\7@\2\2\u01a6\u01a7"+ - "\7?\2\2\u01a7D\3\2\2\2\u01a8\u01a9\7@\2\2\u01a9F\3\2\2\2\u01aa\u01ab\7"+ - "(\2\2\u01ab\u01ac\7(\2\2\u01acH\3\2\2\2\u01ad\u01ae\7~\2\2\u01ae\u01af"+ - "\7~\2\2\u01afJ\3\2\2\2\u01b0\u01b1\7?\2\2\u01b1L\3\2\2\2\u01b2\u01b3\7"+ - "-\2\2\u01b3\u01c9\7?\2\2\u01b4\u01b5\7/\2\2\u01b5\u01c9\7?\2\2\u01b6\u01b7"+ - "\7,\2\2\u01b7\u01c9\7?\2\2\u01b8\u01b9\7\61\2\2\u01b9\u01c9\7?\2\2\u01ba"+ - "\u01bb\7\'\2\2\u01bb\u01c9\7?\2\2\u01bc\u01bd\7>\2\2\u01bd\u01be\7>\2"+ - "\2\u01be\u01c9\7?\2\2\u01bf\u01c0\7@\2\2\u01c0\u01c1\7@\2\2\u01c1\u01c9"+ - "\7?\2\2\u01c2\u01c3\7(\2\2\u01c3\u01c9\7?\2\2\u01c4\u01c5\7~\2\2\u01c5"+ - "\u01c9\7?\2\2\u01c6\u01c7\7`\2\2\u01c7\u01c9\7?\2\2\u01c8\u01b2\3\2\2"+ - "\2\u01c8\u01b4\3\2\2\2\u01c8\u01b6\3\2\2\2\u01c8\u01b8\3\2\2\2\u01c8\u01ba"+ - "\3\2\2\2\u01c8\u01bc\3\2\2\2\u01c8\u01bf\3\2\2\2\u01c8\u01c2\3\2\2\2\u01c8"+ - "\u01c4\3\2\2\2\u01c8\u01c6\3\2\2\2\u01c9N\3\2\2\2\u01ca\u01cb\7v\2\2\u01cb"+ - "\u01cc\7{\2\2\u01cc\u01cd\7r\2\2\u01cd\u01ce\7g\2\2\u01ce\u01cf\7f\2\2"+ - "\u01cf\u01d0\7g\2\2\u01d0\u01d1\7h\2\2\u01d1P\3\2\2\2\u01d2\u01d3\7t\2"+ - "\2\u01d3\u01d4\7g\2\2\u01d4\u01d5\7u\2\2\u01d5\u01d6\7g\2\2\u01d6\u01d7"+ - "\7t\2\2\u01d7\u01d8\7x\2\2\u01d8\u01d9\7g\2\2\u01d9R\3\2\2\2\u01da\u01db"+ - "\7r\2\2\u01db\u01dc\7e\2\2\u01dcT\3\2\2\2\u01dd\u01de\7v\2\2\u01de\u01df"+ - "\7c\2\2\u01df\u01e0\7t\2\2\u01e0\u01e1\7i\2\2\u01e1\u01e2\7g\2\2\u01e2"+ - "\u01e3\7v\2\2\u01e3V\3\2\2\2\u01e4\u01e5\7n\2\2\u01e5\u01e6\7k\2\2\u01e6"+ - "\u01e7\7p\2\2\u01e7\u01e8\7m\2\2\u01e8X\3\2\2\2\u01e9\u01ea\7g\2\2\u01ea"+ - "\u01eb\7o\2\2\u01eb\u01ec\7w\2\2\u01ec\u01ed\7n\2\2\u01ed\u01ee\7c\2\2"+ - "\u01ee\u01ef\7v\2\2\u01ef\u01f0\7q\2\2\u01f0\u01f1\7t\2\2\u01f1Z\3\2\2"+ - "\2\u01f2\u01f3\7e\2\2\u01f3\u01f4\7r\2\2\u01f4\u01f5\7w\2\2\u01f5\\\3"+ - "\2\2\2\u01f6\u01f7\7e\2\2\u01f7\u01f8\7q\2\2\u01f8\u01f9\7f\2\2\u01f9"+ - "\u01fa\7g\2\2\u01fa\u01fb\7a\2\2\u01fb\u01fc\7u\2\2\u01fc\u01fd\7g\2\2"+ - "\u01fd\u01fe\7i\2\2\u01fe^\3\2\2\2\u01ff\u0200\7f\2\2\u0200\u0201\7c\2"+ - "\2\u0201\u0202\7v\2\2\u0202\u0203\7c\2\2\u0203\u0204\7a\2\2\u0204\u0205"+ - "\7u\2\2\u0205\u0206\7g\2\2\u0206\u0207\7i\2\2\u0207`\3\2\2\2\u0208\u0209"+ - "\7g\2\2\u0209\u020a\7p\2\2\u020a\u020b\7e\2\2\u020b\u020c\7q\2\2\u020c"+ - "\u020d\7f\2\2\u020d\u020e\7k\2\2\u020e\u020f\7p\2\2\u020f\u0210\7i\2\2"+ - "\u0210b\3\2\2\2\u0211\u0212\7e\2\2\u0212\u0213\7q\2\2\u0213\u0214\7p\2"+ - "\2\u0214\u0215\7u\2\2\u0215\u0216\7v\2\2\u0216d\3\2\2\2\u0217\u0218\7"+ - "g\2\2\u0218\u0219\7z\2\2\u0219\u021a\7v\2\2\u021a\u021b\7g\2\2\u021b\u021c"+ - "\7t\2\2\u021c\u021d\7p\2\2\u021df\3\2\2\2\u021e\u021f\7g\2\2\u021f\u0220"+ - "\7z\2\2\u0220\u0221\7r\2\2\u0221\u0222\7q\2\2\u0222\u0223\7t\2\2\u0223"+ - "\u0224\7v\2\2\u0224h\3\2\2\2\u0225\u0226\7c\2\2\u0226\u0227\7n\2\2\u0227"+ - "\u0228\7k\2\2\u0228\u0229\7i\2\2\u0229\u022a\7p\2\2\u022aj\3\2\2\2\u022b"+ - "\u022c\7k\2\2\u022c\u022d\7p\2\2\u022d\u022e\7n\2\2\u022e\u022f\7k\2\2"+ - "\u022f\u0230\7p\2\2\u0230\u0231\7g\2\2\u0231l\3\2\2\2\u0232\u0233\7x\2"+ - "\2\u0233\u0234\7q\2\2\u0234\u0235\7n\2\2\u0235\u0236\7c\2\2\u0236\u0237"+ - "\7v\2\2\u0237\u0238\7k\2\2\u0238\u0239\7n\2\2\u0239\u023a\7g\2\2\u023a"+ - "n\3\2\2\2\u023b\u023c\7u\2\2\u023c\u023d\7v\2\2\u023d\u023e\7c\2\2\u023e"+ - "\u023f\7v\2\2\u023f\u0240\7k\2\2\u0240\u0241\7e\2\2\u0241p\3\2\2\2\u0242"+ - "\u0243\7k\2\2\u0243\u0244\7p\2\2\u0244\u0245\7v\2\2\u0245\u0246\7g\2\2"+ - "\u0246\u0247\7t\2\2\u0247\u0248\7t\2\2\u0248\u0249\7w\2\2\u0249\u024a"+ - "\7r\2\2\u024a\u024b\7v\2\2\u024br\3\2\2\2\u024c\u024d\7t\2\2\u024d\u024e"+ - "\7g\2\2\u024e\u024f\7i\2\2\u024f\u0250\7k\2\2\u0250\u0251\7u\2\2\u0251"+ - "\u0252\7v\2\2\u0252\u0253\7g\2\2\u0253\u0254\7t\2\2\u0254t\3\2\2\2\u0255"+ - "\u0256\7a\2\2\u0256\u0257\7a\2\2\u0257\u0258\7c\2\2\u0258\u0259\7f\2\2"+ - "\u0259\u025a\7f\2\2\u025a\u025b\7t\2\2\u025b\u025c\7g\2\2\u025c\u025d"+ - "\7u\2\2\u025d\u025e\7u\2\2\u025ev\3\2\2\2\u025f\u0260\7a\2\2\u0260\u0261"+ - "\7a\2\2\u0261\u0262\7|\2\2\u0262\u0263\7r\2\2\u0263x\3\2\2\2\u0264\u0265"+ - "\7a\2\2\u0265\u0266\7a\2\2\u0266\u0267\7o\2\2\u0267\u0268\7g\2\2\u0268"+ - "\u0269\7o\2\2\u0269z\3\2\2\2\u026a\u026b\7a\2\2\u026b\u026c\7a\2\2\u026c"+ - "\u026d\7u\2\2\u026d\u026e\7u\2\2\u026e\u026f\7c\2\2\u026f|\3\2\2\2\u0270"+ - "\u0271\7a\2\2\u0271\u0272\7a\2\2\u0272\u0273\7o\2\2\u0273\u0274\7c\2\2"+ - "\u0274~\3\2\2\2\u0275\u0276\7a\2\2\u0276\u0277\7a\2\2\u0277\u0278\7k\2"+ - "\2\u0278\u0279\7p\2\2\u0279\u027a\7v\2\2\u027a\u027b\7t\2\2\u027b\u027c"+ - "\7k\2\2\u027c\u027d\7p\2\2\u027d\u027e\7u\2\2\u027e\u027f\7k\2\2\u027f"+ - "\u0280\7e\2\2\u0280\u0080\3\2\2\2\u0281\u0282\7e\2\2\u0282\u0283\7c\2"+ - "\2\u0283\u0284\7n\2\2\u0284\u0285\7n\2\2\u0285\u0286\7k\2\2\u0286\u0287"+ - "\7p\2\2\u0287\u0288\7i\2\2\u0288\u0082\3\2\2\2\u0289\u028a\7a\2\2\u028a"+ - "\u028b\7a\2\2\u028b\u028c\7u\2\2\u028c\u028d\7v\2\2\u028d\u028e\7c\2\2"+ - "\u028e\u028f\7e\2\2\u028f\u0290\7m\2\2\u0290\u0291\7e\2\2\u0291\u0292"+ - "\7c\2\2\u0292\u0293\7n\2\2\u0293\u029e\7n\2\2\u0294\u0295\7a\2\2\u0295"+ - "\u0296\7a\2\2\u0296\u0297\7r\2\2\u0297\u0298\7j\2\2\u0298\u0299\7k\2\2"+ - "\u0299\u029a\7e\2\2\u029a\u029b\7c\2\2\u029b\u029c\7n\2\2\u029c\u029e"+ - "\7n\2\2\u029d\u0289\3\2\2\2\u029d\u0294\3\2\2\2\u029e\u0084\3\2\2\2\u029f"+ - "\u02a0\7x\2\2\u02a0\u02a1\7c\2\2\u02a1\u02a2\7t\2\2\u02a2\u02a3\7a\2\2"+ - "\u02a3\u02a4\7o\2\2\u02a4\u02a5\7q\2\2\u02a5\u02a6\7f\2\2\u02a6\u02a7"+ - "\7g\2\2\u02a7\u02a8\7n\2\2\u02a8\u0086\3\2\2\2\u02a9\u02aa\7k\2\2\u02aa"+ - "\u02ab\7h\2\2\u02ab\u0088\3\2\2\2\u02ac\u02ad\7g\2\2\u02ad\u02ae\7n\2"+ - "\2\u02ae\u02af\7u\2\2\u02af\u02b0\7g\2\2\u02b0\u008a\3\2\2\2\u02b1\u02b2"+ - "\7y\2\2\u02b2\u02b3\7j\2\2\u02b3\u02b4\7k\2\2\u02b4\u02b5\7n\2\2\u02b5"+ - "\u02b6\7g\2\2\u02b6\u008c\3\2\2\2\u02b7\u02b8\7f\2\2\u02b8\u02b9\7q\2"+ - "\2\u02b9\u008e\3\2\2\2\u02ba\u02bb\7h\2\2\u02bb\u02bc\7q\2\2\u02bc\u02bd"+ - "\7t\2\2\u02bd\u0090\3\2\2\2\u02be\u02bf\7u\2\2\u02bf\u02c0\7y\2\2\u02c0"+ - "\u02c1\7k\2\2\u02c1\u02c2\7v\2\2\u02c2\u02c3\7e\2\2\u02c3\u02c4\7j\2\2"+ - "\u02c4\u0092\3\2\2\2\u02c5\u02c6\7t\2\2\u02c6\u02c7\7g\2\2\u02c7\u02c8"+ - "\7v\2\2\u02c8\u02c9\7w\2\2\u02c9\u02ca\7t\2\2\u02ca\u02cb\7p\2\2\u02cb"+ - "\u0094\3\2\2\2\u02cc\u02cd\7d\2\2\u02cd\u02ce\7t\2\2\u02ce\u02cf\7g\2"+ - "\2\u02cf\u02d0\7c\2\2\u02d0\u02d1\7m\2\2\u02d1\u0096\3\2\2\2\u02d2\u02d3"+ - "\7e\2\2\u02d3\u02d4\7q\2\2\u02d4\u02d5\7p\2\2\u02d5\u02d6\7v\2\2\u02d6"+ - "\u02d7\7k\2\2\u02d7\u02d8\7p\2\2\u02d8\u02d9\7w\2\2\u02d9\u02da\7g\2\2"+ - "\u02da\u0098\3\2\2\2\u02db\u02dc\7c\2\2\u02dc\u02dd\7u\2\2\u02dd\u02de"+ - "\7o\2\2\u02de\u02df\3\2\2\2\u02df\u02e0\bL\3\2\u02e0\u009a\3\2\2\2\u02e1"+ - "\u02e2\7f\2\2\u02e2\u02e3\7g\2\2\u02e3\u02e4\7h\2\2\u02e4\u02e5\7c\2\2"+ - "\u02e5\u02e6\7w\2\2\u02e6\u02e7\7n\2\2\u02e7\u02e8\7v\2\2\u02e8\u009c"+ - "\3\2\2\2\u02e9\u02ea\7e\2\2\u02ea\u02eb\7c\2\2\u02eb\u02ec\7u\2\2\u02ec"+ - "\u02ed\7g\2\2\u02ed\u009e\3\2\2\2\u02ee\u02ef\7u\2\2\u02ef\u02f0\7v\2"+ - "\2\u02f0\u02f1\7t\2\2\u02f1\u02f2\7w\2\2\u02f2\u02f3\7e\2\2\u02f3\u02f4"+ - "\7v\2\2\u02f4\u00a0\3\2\2\2\u02f5\u02f6\7g\2\2\u02f6\u02f7\7p\2\2\u02f7"+ - "\u02f8\7w\2\2\u02f8\u02f9\7o\2\2\u02f9\u00a2\3\2\2\2\u02fa\u02fb\7u\2"+ - "\2\u02fb\u02fc\7k\2\2\u02fc\u02fd\7|\2\2\u02fd\u02fe\7g\2\2\u02fe\u02ff"+ - "\7q\2\2\u02ff\u0300\7h\2\2\u0300\u00a4\3\2\2\2\u0301\u0302\7v\2\2\u0302"+ - "\u0303\7{\2\2\u0303\u0304\7r\2\2\u0304\u0305\7g\2\2\u0305\u0306\7k\2\2"+ - "\u0306\u0307\7f\2\2\u0307\u00a6\3\2\2\2\u0308\u0309\7f\2\2\u0309\u030a"+ - "\7g\2\2\u030a\u030b\7h\2\2\u030b\u030c\7k\2\2\u030c\u030d\7p\2\2\u030d"+ - "\u030e\7g\2\2\u030e\u030f\7f\2\2\u030f\u00a8\3\2\2\2\u0310\u0311\7m\2"+ - "\2\u0311\u0312\7k\2\2\u0312\u0313\7e\2\2\u0313\u0314\7m\2\2\u0314\u0315"+ - "\7c\2\2\u0315\u0316\7u\2\2\u0316\u0317\7o\2\2\u0317\u00aa\3\2\2\2\u0318"+ - "\u0319\7t\2\2\u0319\u031a\7g\2\2\u031a\u031b\7u\2\2\u031b\u031c\7q\2\2"+ - "\u031c\u031d\7w\2\2\u031d\u031e\7t\2\2\u031e\u031f\7e\2\2\u031f\u0320"+ - "\7g\2\2\u0320\u00ac\3\2\2\2\u0321\u0322\7w\2\2\u0322\u0323\7u\2\2\u0323"+ - "\u0324\7g\2\2\u0324\u0325\7u\2\2\u0325\u00ae\3\2\2\2\u0326\u0327\7e\2"+ - "\2\u0327\u0328\7n\2\2\u0328\u0329\7q\2\2\u0329\u032a\7d\2\2\u032a\u032b"+ - "\7d\2\2\u032b\u032c\7g\2\2\u032c\u032d\7t\2\2\u032d\u032e\7u\2\2\u032e"+ - "\u00b0\3\2\2\2\u032f\u0330\7d\2\2\u0330\u0331\7{\2\2\u0331\u0332\7v\2"+ - "\2\u0332\u0333\7g\2\2\u0333\u0334\7u\2\2\u0334\u00b2\3\2\2\2\u0335\u0336"+ - "\7e\2\2\u0336\u0337\7{\2\2\u0337\u0338\7e\2\2\u0338\u0339\7n\2\2\u0339"+ - "\u033a\7g\2\2\u033a\u033b\7u\2\2\u033b\u00b4\3\2\2\2\u033c\u033d\7#\2"+ - "\2\u033d\u00b6\3\2\2\2\u033e\u033f\7u\2\2\u033f\u0340\7k\2\2\u0340\u0341"+ - "\7i\2\2\u0341\u0342\7p\2\2\u0342\u0343\7g\2\2\u0343\u034d\7f\2\2\u0344"+ - "\u0345\7w\2\2\u0345\u0346\7p\2\2\u0346\u0347\7u\2\2\u0347\u0348\7k\2\2"+ - "\u0348\u0349\7i\2\2\u0349\u034a\7p\2\2\u034a\u034b\7g\2\2\u034b\u034d"+ - "\7f\2\2\u034c\u033e\3\2\2\2\u034c\u0344\3\2\2\2\u034d\u00b8\3\2\2\2\u034e"+ - "\u034f\7d\2\2\u034f\u0350\7{\2\2\u0350\u0351\7v\2\2\u0351\u0374\7g\2\2"+ - "\u0352\u0353\7y\2\2\u0353\u0354\7q\2\2\u0354\u0355\7t\2\2\u0355\u0374"+ - "\7f\2\2\u0356\u0357\7f\2\2\u0357\u0358\7y\2\2\u0358\u0359\7q\2\2\u0359"+ - "\u035a\7t\2\2\u035a\u0374\7f\2\2\u035b\u035c\7d\2\2\u035c\u035d\7q\2\2"+ - "\u035d\u035e\7q\2\2\u035e\u0374\7n\2\2\u035f\u0360\7e\2\2\u0360\u0361"+ - "\7j\2\2\u0361\u0362\7c\2\2\u0362\u0374\7t\2\2\u0363\u0364\7u\2\2\u0364"+ - "\u0365\7j\2\2\u0365\u0366\7q\2\2\u0366\u0367\7t\2\2\u0367\u0374\7v\2\2"+ - "\u0368\u0369\7k\2\2\u0369\u036a\7p\2\2\u036a\u0374\7v\2\2\u036b\u036c"+ - "\7n\2\2\u036c\u036d\7q\2\2\u036d\u036e\7p\2\2\u036e\u0374\7i\2\2\u036f"+ - "\u0370\7x\2\2\u0370\u0371\7q\2\2\u0371\u0372\7k\2\2\u0372\u0374\7f\2\2"+ - "\u0373\u034e\3\2\2\2\u0373\u0352\3\2\2\2\u0373\u0356\3\2\2\2\u0373\u035b"+ - "\3\2\2\2\u0373\u035f\3\2\2\2\u0373\u0363\3\2\2\2\u0373\u0368\3\2\2\2\u0373"+ - "\u036b\3\2\2\2\u0373\u036f\3\2\2\2\u0374\u00ba\3\2\2\2\u0375\u0376\7v"+ - "\2\2\u0376\u0377\7t\2\2\u0377\u0378\7w\2\2\u0378\u037f\7g\2\2\u0379\u037a"+ - "\7h\2\2\u037a\u037b\7c\2\2\u037b\u037c\7n\2\2\u037c\u037d\7u\2\2\u037d"+ - "\u037f\7g\2\2\u037e\u0375\3\2\2\2\u037e\u0379\3\2\2\2\u037f\u00bc\3\2"+ - "\2\2\u0380\u0381\7}\2\2\u0381\u0382\7}\2\2\u0382\u0386\3\2\2\2\u0383\u0385"+ - "\13\2\2\2\u0384\u0383\3\2\2\2\u0385\u0388\3\2\2\2\u0386\u0387\3\2\2\2"+ - "\u0386\u0384\3\2\2\2\u0387\u0389\3\2\2\2\u0388\u0386\3\2\2\2\u0389\u038a"+ - "\7\177\2\2\u038a\u038b\7\177\2\2\u038b\u00be\3\2\2\2\u038c\u038d\7%\2"+ - "\2\u038d\u038e\7k\2\2\u038e\u038f\7o\2\2\u038f\u0390\7r\2\2\u0390\u0391"+ - "\7q\2\2\u0391\u0392\7t\2\2\u0392\u0393\7v\2\2\u0393\u0394\3\2\2\2\u0394"+ - "\u0395\b_\4\2\u0395\u00c0\3\2\2\2\u0396\u0397\7%\2\2\u0397\u0398\7k\2"+ - "\2\u0398\u0399\7p\2\2\u0399\u039a\7e\2\2\u039a\u039b\7n\2\2\u039b\u039c"+ - "\7w\2\2\u039c\u039d\7f\2\2\u039d\u039e\7g\2\2\u039e\u039f\3\2\2\2\u039f"+ - "\u03a0\b`\5\2\u03a0\u00c2\3\2\2\2\u03a1\u03a2\7%\2\2\u03a2\u03a3\7r\2"+ - "\2\u03a3\u03a4\7t\2\2\u03a4\u03a5\7c\2\2\u03a5\u03a6\7i\2\2\u03a6\u03a7"+ - "\7o\2\2\u03a7\u03a8\7c\2\2\u03a8\u00c4\3\2\2\2\u03a9\u03aa\7%\2\2\u03aa"+ - "\u03ab\7f\2\2\u03ab\u03ac\7g\2\2\u03ac\u03ad\7h\2\2\u03ad\u03ae\7k\2\2"+ - "\u03ae\u03af\7p\2\2\u03af\u03b0\7g\2\2\u03b0\u00c6\3\2\2\2\u03b1\u03b2"+ - "\7^\2\2\u03b2\u03b7\7\f\2\2\u03b3\u03b4\7^\2\2\u03b4\u03b5\7\17\2\2\u03b5"+ - "\u03b7\7\f\2\2\u03b6\u03b1\3\2\2\2\u03b6\u03b3\3\2\2\2\u03b7\u00c8\3\2"+ - "\2\2\u03b8\u03b9\7%\2\2\u03b9\u03ba\7w\2\2\u03ba\u03bb\7p\2\2\u03bb\u03bc"+ - "\7f\2\2\u03bc\u03bd\7g\2\2\u03bd\u03be\7h\2\2\u03be\u00ca\3\2\2\2\u03bf"+ - "\u03c0\7%\2\2\u03c0\u03c1\7k\2\2\u03c1\u03c2\7h\2\2\u03c2\u03c3\7f\2\2"+ - "\u03c3\u03c4\7g\2\2\u03c4\u03c5\7h\2\2\u03c5\u00cc\3\2\2\2\u03c6\u03c7"+ - "\7%\2\2\u03c7\u03c8\7k\2\2\u03c8\u03c9\7h\2\2\u03c9\u03ca\7p\2\2\u03ca"+ - "\u03cb\7f\2\2\u03cb\u03cc\7g\2\2\u03cc\u03cd\7h\2\2\u03cd\u00ce\3\2\2"+ - "\2\u03ce\u03cf\7%\2\2\u03cf\u03d0\7k\2\2\u03d0\u03d1\7h\2\2\u03d1\u00d0"+ - "\3\2\2\2\u03d2\u03d3\7%\2\2\u03d3\u03d4\7g\2\2\u03d4\u03d5\7n\2\2\u03d5"+ - "\u03d6\7k\2\2\u03d6\u03d7\7h\2\2\u03d7\u00d2\3\2\2\2\u03d8\u03d9\7%\2"+ - "\2\u03d9\u03da\7g\2\2\u03da\u03db\7n\2\2\u03db\u03dc\7u\2\2\u03dc\u03dd"+ - "\7g\2\2\u03dd\u00d4\3\2\2\2\u03de\u03df\7%\2\2\u03df\u03e0\7g\2\2\u03e0"+ - "\u03e1\7p\2\2\u03e1\u03e2\7f\2\2\u03e2\u03e3\7k\2\2\u03e3\u03e4\7h\2\2"+ - "\u03e4\u00d6\3\2\2\2\u03e5\u03e8\5\u00d9l\2\u03e6\u03e8\5\u00e1p\2\u03e7"+ - "\u03e5\3\2\2\2\u03e7\u03e6\3\2\2\2\u03e8\u00d8\3\2\2\2\u03e9\u03ed\5\u00db"+ - "m\2\u03ea\u03ed\5\u00ddn\2\u03eb\u03ed\5\u00dfo\2\u03ec\u03e9\3\2\2\2"+ - "\u03ec\u03ea\3\2\2\2\u03ec\u03eb\3\2\2\2\u03ed\u00da\3\2\2\2\u03ee\u03f4"+ - "\7\'\2\2\u03ef\u03f0\7\62\2\2\u03f0\u03f4\7d\2\2\u03f1\u03f2\7\62\2\2"+ - "\u03f2\u03f4\7D\2\2\u03f3\u03ee\3\2\2\2\u03f3\u03ef\3\2\2\2\u03f3\u03f1"+ - "\3\2\2\2\u03f4\u03f8\3\2\2\2\u03f5\u03f7\5\u00e9t\2\u03f6\u03f5\3\2\2"+ - "\2\u03f7\u03fa\3\2\2\2\u03f8\u03f6\3\2\2\2\u03f8\u03f9\3\2\2\2\u03f9\u03fb"+ - "\3\2\2\2\u03fa\u03f8\3\2\2\2\u03fb\u03fd\7\60\2\2\u03fc\u03fe\5\u00e9"+ - "t\2\u03fd\u03fc\3\2\2\2\u03fe\u03ff\3\2\2\2\u03ff\u03fd\3\2\2\2\u03ff"+ - "\u0400\3\2\2\2\u0400\u00dc\3\2\2\2\u0401\u0403\5\u00ebu\2\u0402\u0401"+ - "\3\2\2\2\u0403\u0406\3\2\2\2\u0404\u0402\3\2\2\2\u0404\u0405\3\2\2\2\u0405"+ - "\u0407\3\2\2\2\u0406\u0404\3\2\2\2\u0407\u0409\7\60\2\2\u0408\u040a\5"+ - "\u00ebu\2\u0409\u0408\3\2\2\2\u040a\u040b\3\2\2\2\u040b\u0409\3\2\2\2"+ - "\u040b\u040c\3\2\2\2\u040c\u00de\3\2\2\2\u040d\u0413\7&\2\2\u040e\u040f"+ - "\7\62\2\2\u040f\u0413\7z\2\2\u0410\u0411\7\62\2\2\u0411\u0413\7Z\2\2\u0412"+ - "\u040d\3\2\2\2\u0412\u040e\3\2\2\2\u0412\u0410\3\2\2\2\u0413\u0417\3\2"+ - "\2\2\u0414\u0416\5\u00edv\2\u0415\u0414\3\2\2\2\u0416\u0419\3\2\2\2\u0417"+ - "\u0415\3\2\2\2\u0417\u0418\3\2\2\2\u0418\u041a\3\2\2\2\u0419\u0417\3\2"+ - "\2\2\u041a\u041c\7\60\2\2\u041b\u041d\5\u00edv\2\u041c\u041b\3\2\2\2\u041d"+ - "\u041e\3\2\2\2\u041e\u041c\3\2\2\2\u041e\u041f\3\2\2\2\u041f\u00e0\3\2"+ - "\2\2\u0420\u0424\5\u00e5r\2\u0421\u0424\5\u00e7s\2\u0422\u0424\5\u00e3"+ - "q\2\u0423\u0420\3\2\2\2\u0423\u0421\3\2\2\2\u0423\u0422\3\2\2\2\u0424"+ - "\u0428\3\2\2\2\u0425\u0426\t\2\2\2\u0426\u0429\t\3\2\2\u0427\u0429\7n"+ - "\2\2\u0428\u0425\3\2\2\2\u0428\u0427\3\2\2\2\u0428\u0429\3\2\2\2\u0429"+ - "\u00e2\3\2\2\2\u042a\u042b\7\62\2\2\u042b\u042d\t\4\2\2\u042c\u042e\5"+ - "\u00e9t\2\u042d\u042c\3\2\2\2\u042e\u042f\3\2\2\2\u042f\u042d\3\2\2\2"+ - "\u042f\u0430\3\2\2\2\u0430\u0438\3\2\2\2\u0431\u0433\7\'\2\2\u0432\u0434"+ - "\5\u00e9t\2\u0433\u0432\3\2\2\2\u0434\u0435\3\2\2\2\u0435\u0433\3\2\2"+ - "\2\u0435\u0436\3\2\2\2\u0436\u0438\3\2\2\2\u0437\u042a\3\2\2\2\u0437\u0431"+ - "\3\2\2\2\u0438\u00e4\3\2\2\2\u0439\u043b\5\u00ebu\2\u043a\u0439\3\2\2"+ - "\2\u043b\u043c\3\2\2\2\u043c\u043a\3\2\2\2\u043c\u043d\3\2\2\2\u043d\u00e6"+ - "\3\2\2\2\u043e\u0444\7&\2\2\u043f\u0440\7\62\2\2\u0440\u0444\7z\2\2\u0441"+ - "\u0442\7\62\2\2\u0442\u0444\7Z\2\2\u0443\u043e\3\2\2\2\u0443\u043f\3\2"+ - "\2\2\u0443\u0441\3\2\2\2\u0444\u0446\3\2\2\2\u0445\u0447\5\u00edv\2\u0446"+ - "\u0445\3\2\2\2\u0447\u0448\3\2\2\2\u0448\u0446\3\2\2\2\u0448\u0449\3\2"+ - "\2\2\u0449\u00e8\3\2\2\2\u044a\u044b\t\5\2\2\u044b\u00ea\3\2\2\2\u044c"+ - "\u044d\t\6\2\2\u044d\u00ec\3\2\2\2\u044e\u044f\t\7\2\2\u044f\u00ee\3\2"+ - "\2\2\u0450\u0454\5\u00f1x\2\u0451\u0453\5\u00f3y\2\u0452\u0451\3\2\2\2"+ - "\u0453\u0456\3\2\2\2\u0454\u0452\3\2\2\2\u0454\u0455\3\2\2\2\u0455\u0457"+ - "\3\2\2\2\u0456\u0454\3\2\2\2\u0457\u0458\bw\6\2\u0458\u00f0\3\2\2\2\u0459"+ - "\u045a\t\b\2\2\u045a\u00f2\3\2\2\2\u045b\u045c\t\t\2\2\u045c\u00f4\3\2"+ - "\2\2\u045d\u0463\7$\2\2\u045e\u045f\7^\2\2\u045f\u0462\7$\2\2\u0460\u0462"+ - "\n\n\2\2\u0461\u045e\3\2\2\2\u0461\u0460\3\2\2\2\u0462\u0465\3\2\2\2\u0463"+ - "\u0461\3\2\2\2\u0463\u0464\3\2\2\2\u0464\u0466\3\2\2\2\u0465\u0463\3\2"+ - "\2\2\u0466\u0468\7$\2\2\u0467\u0469\t\13\2\2\u0468\u0467\3\2\2\2\u0468"+ - "\u0469\3\2\2\2\u0469\u046e\3\2\2\2\u046a\u046c\t\f\2\2\u046b\u046d\t\r"+ - "\2\2\u046c\u046b\3\2\2\2\u046c\u046d\3\2\2\2\u046d\u046f\3\2\2\2\u046e"+ - "\u046a\3\2\2\2\u046e\u046f\3\2\2\2\u046f\u0471\3\2\2\2\u0470\u0472\t\13"+ - "\2\2\u0471\u0470\3\2\2\2\u0471\u0472\3\2\2\2\u0472\u00f6\3\2\2\2\u0473"+ - "\u047c\7)\2\2\u0474\u0479\7^\2\2\u0475\u047a\t\16\2\2\u0476\u0477\7z\2"+ - "\2\u0477\u0478\t\17\2\2\u0478\u047a\t\17\2\2\u0479\u0475\3\2\2\2\u0479"+ - "\u0476\3\2\2\2\u047a\u047d\3\2\2\2\u047b\u047d\n\20\2\2\u047c\u0474\3"+ - "\2\2\2\u047c\u047b\3\2\2\2\u047d\u047e\3\2\2\2\u047e\u047f\7)\2\2\u047f"+ - "\u00f8\3\2\2\2\u0480\u0482\t\21\2\2\u0481\u0480\3\2\2\2\u0482\u0483\3"+ - "\2\2\2\u0483\u0481\3\2\2\2\u0483\u0484\3\2\2\2\u0484\u0485\3\2\2\2\u0485"+ - "\u0486\b|\7\2\u0486\u00fa\3\2\2\2\u0487\u0488\7\61\2\2\u0488\u0489\7\61"+ - "\2\2\u0489\u048d\3\2\2\2\u048a\u048c\n\22\2\2\u048b\u048a\3\2\2\2\u048c"+ - "\u048f\3\2\2\2\u048d\u048b\3\2\2\2\u048d\u048e\3\2\2\2\u048e\u0490\3\2"+ - "\2\2\u048f\u048d\3\2\2\2\u0490\u0491\b}\b\2\u0491\u00fc\3\2\2\2\u0492"+ - "\u0493\7\61\2\2\u0493\u0494\7,\2\2\u0494\u0498\3\2\2\2\u0495\u0497\13"+ - "\2\2\2\u0496\u0495\3\2\2\2\u0497\u049a\3\2\2\2\u0498\u0499\3\2\2\2\u0498"+ - "\u0496\3\2\2\2\u0499\u049b\3\2\2\2\u049a\u0498\3\2\2\2\u049b\u049c\7,"+ - "\2\2\u049c\u049d\7\61\2\2\u049d\u049e\3\2\2\2\u049e\u049f\b~\b\2\u049f"+ - "\u00fe\3\2\2\2\u04a0\u04a1\7\60\2\2\u04a1\u04a2\7d\2\2\u04a2\u04a3\7{"+ - "\2\2\u04a3\u04a4\7v\2\2\u04a4\u04a5\7g\2\2\u04a5\u0100\3\2\2\2\u04a6\u04a7"+ - "\7d\2\2\u04a7\u04a8\7t\2\2\u04a8\u0585\7m\2\2\u04a9\u04aa\7q\2\2\u04aa"+ - "\u04ab\7t\2\2\u04ab\u0585\7c\2\2\u04ac\u04ad\7m\2\2\u04ad\u04ae\7k\2\2"+ - "\u04ae\u0585\7n\2\2\u04af\u04b0\7u\2\2\u04b0\u04b1\7n\2\2\u04b1\u0585"+ - "\7q\2\2\u04b2\u04b3\7p\2\2\u04b3\u04b4\7q\2\2\u04b4\u0585\7r\2\2\u04b5"+ - "\u04b6\7c\2\2\u04b6\u04b7\7u\2\2\u04b7\u0585\7n\2\2\u04b8\u04b9\7r\2\2"+ - "\u04b9\u04ba\7j\2\2\u04ba\u0585\7r\2\2\u04bb\u04bc\7c\2\2\u04bc\u04bd"+ - "\7p\2\2\u04bd\u0585\7e\2\2\u04be\u04bf\7d\2\2\u04bf\u04c0\7r\2\2\u04c0"+ - "\u0585\7n\2\2\u04c1\u04c2\7e\2\2\u04c2\u04c3\7n\2\2\u04c3\u0585\7e\2\2"+ - "\u04c4\u04c5\7l\2\2\u04c5\u04c6\7u\2\2\u04c6\u0585\7t\2\2\u04c7\u04c8"+ - "\7c\2\2\u04c8\u04c9\7p\2\2\u04c9\u0585\7f\2\2\u04ca\u04cb\7t\2\2\u04cb"+ - "\u04cc\7n\2\2\u04cc\u0585\7c\2\2\u04cd\u04ce\7d\2\2\u04ce\u04cf\7k\2\2"+ - "\u04cf\u0585\7v\2\2\u04d0\u04d1\7t\2\2\u04d1\u04d2\7q\2\2\u04d2\u0585"+ - "\7n\2\2\u04d3\u04d4\7r\2\2\u04d4\u04d5\7n\2\2\u04d5\u0585\7c\2\2\u04d6"+ - "\u04d7\7r\2\2\u04d7\u04d8\7n\2\2\u04d8\u0585\7r\2\2\u04d9\u04da\7d\2\2"+ - "\u04da\u04db\7o\2\2\u04db\u0585\7k\2\2\u04dc\u04dd\7u\2\2\u04dd\u04de"+ - "\7g\2\2\u04de\u0585\7e\2\2\u04df\u04e0\7t\2\2\u04e0\u04e1\7v\2\2\u04e1"+ - "\u0585\7k\2\2\u04e2\u04e3\7g\2\2\u04e3\u04e4\7q\2\2\u04e4\u0585\7t\2\2"+ - "\u04e5\u04e6\7u\2\2\u04e6\u04e7\7t\2\2\u04e7\u0585\7g\2\2\u04e8\u04e9"+ - "\7n\2\2\u04e9\u04ea\7u\2\2\u04ea\u0585\7t\2\2\u04eb\u04ec\7r\2\2\u04ec"+ - "\u04ed\7j\2\2\u04ed\u0585\7c\2\2\u04ee\u04ef\7c\2\2\u04ef\u04f0\7n\2\2"+ - "\u04f0\u0585\7t\2\2\u04f1\u04f2\7l\2\2\u04f2\u04f3\7o\2\2\u04f3\u0585"+ - "\7r\2\2\u04f4\u04f5\7d\2\2\u04f5\u04f6\7x\2\2\u04f6\u0585\7e\2\2\u04f7"+ - "\u04f8\7e\2\2\u04f8\u04f9\7n\2\2\u04f9\u0585\7k\2\2\u04fa\u04fb\7t\2\2"+ - "\u04fb\u04fc\7v\2\2\u04fc\u0585\7u\2\2\u04fd\u04fe\7c\2\2\u04fe\u04ff"+ - "\7f\2\2\u04ff\u0585\7e\2\2\u0500\u0501\7t\2\2\u0501\u0502\7t\2\2\u0502"+ - "\u0585\7c\2\2\u0503\u0504\7d\2\2\u0504\u0505\7x\2\2\u0505\u0585\7u\2\2"+ - "\u0506\u0507\7u\2\2\u0507\u0508\7g\2\2\u0508\u0585\7k\2\2\u0509\u050a"+ - "\7u\2\2\u050a\u050b\7c\2\2\u050b\u0585\7z\2\2\u050c\u050d\7u\2\2\u050d"+ - "\u050e\7v\2\2\u050e\u0585\7{\2\2\u050f\u0510\7u\2\2\u0510\u0511\7v\2\2"+ - "\u0511\u0585\7c\2\2\u0512\u0513\7u\2\2\u0513\u0514\7v\2\2\u0514\u0585"+ - "\7z\2\2\u0515\u0516\7f\2\2\u0516\u0517\7g\2\2\u0517\u0585\7{\2\2\u0518"+ - "\u0519\7v\2\2\u0519\u051a\7z\2\2\u051a\u0585\7c\2\2\u051b\u051c\7z\2\2"+ - "\u051c\u051d\7c\2\2\u051d\u0585\7c\2\2\u051e\u051f\7d\2\2\u051f\u0520"+ - "\7e\2\2\u0520\u0585\7e\2\2\u0521\u0522\7c\2\2\u0522\u0523\7j\2\2\u0523"+ - "\u0585\7z\2\2\u0524\u0525\7v\2\2\u0525\u0526\7{\2\2\u0526\u0585\7c\2\2"+ - "\u0527\u0528\7v\2\2\u0528\u0529\7z\2\2\u0529\u0585\7u\2\2\u052a\u052b"+ - "\7v\2\2\u052b\u052c\7c\2\2\u052c\u0585\7u\2\2\u052d\u052e\7u\2\2\u052e"+ - "\u052f\7j\2\2\u052f\u0585\7{\2\2\u0530\u0531\7u\2\2\u0531\u0532\7j\2\2"+ - "\u0532\u0585\7z\2\2\u0533\u0534\7n\2\2\u0534\u0535\7f\2\2\u0535\u0585"+ - "\7{\2\2\u0536\u0537\7n\2\2\u0537\u0538\7f\2\2\u0538\u0585\7c\2\2\u0539"+ - "\u053a\7n\2\2\u053a\u053b\7f\2\2\u053b\u0585\7z\2\2\u053c\u053d\7n\2\2"+ - "\u053d\u053e\7c\2\2\u053e\u0585\7z\2\2\u053f\u0540\7v\2\2\u0540\u0541"+ - "\7c\2\2\u0541\u0585\7{\2\2\u0542\u0543\7v\2\2\u0543\u0544\7c\2\2\u0544"+ - "\u0585\7z\2\2\u0545\u0546\7d\2\2\u0546\u0547\7e\2\2\u0547\u0585\7u\2\2"+ - "\u0548\u0549\7e\2\2\u0549\u054a\7n\2\2\u054a\u0585\7x\2\2\u054b\u054c"+ - "\7v\2\2\u054c\u054d\7u\2\2\u054d\u0585\7z\2\2\u054e\u054f\7n\2\2\u054f"+ - "\u0550\7c\2\2\u0550\u0585\7u\2\2\u0551\u0552\7e\2\2\u0552\u0553\7r\2\2"+ - "\u0553\u0585\7{\2\2\u0554\u0555\7e\2\2\u0555\u0556\7o\2\2\u0556\u0585"+ - "\7r\2\2\u0557\u0558\7e\2\2\u0558\u0559\7r\2\2\u0559\u0585\7z\2\2\u055a"+ - "\u055b\7f\2\2\u055b\u055c\7e\2\2\u055c\u0585\7r\2\2\u055d\u055e\7f\2\2"+ - "\u055e\u055f\7g\2\2\u055f\u0585\7e\2\2\u0560\u0561\7k\2\2\u0561\u0562"+ - "\7p\2\2\u0562\u0585\7e\2\2\u0563\u0564\7c\2\2\u0564\u0565\7z\2\2\u0565"+ - "\u0585\7u\2\2\u0566\u0567\7d\2\2\u0567\u0568\7p\2\2\u0568\u0585\7g\2\2"+ - "\u0569\u056a\7e\2\2\u056a\u056b\7n\2\2\u056b\u0585\7f\2\2\u056c\u056d"+ - "\7u\2\2\u056d\u056e\7d\2\2\u056e\u0585\7e\2\2\u056f\u0570\7k\2\2\u0570"+ - "\u0571\7u\2\2\u0571\u0585\7e\2\2\u0572\u0573\7k\2\2\u0573\u0574\7p\2\2"+ - "\u0574\u0585\7z\2\2\u0575\u0576\7d\2\2\u0576\u0577\7g\2\2\u0577\u0585"+ - "\7s\2\2\u0578\u0579\7u\2\2\u0579\u057a\7g\2\2\u057a\u0585\7f\2\2\u057b"+ - "\u057c\7f\2\2\u057c\u057d\7g\2\2\u057d\u0585\7z\2\2\u057e\u057f\7k\2\2"+ - "\u057f\u0580\7p\2\2\u0580\u0585\7{\2\2\u0581\u0582\7t\2\2\u0582\u0583"+ - "\7q\2\2\u0583\u0585\7t\2\2\u0584\u04a6\3\2\2\2\u0584\u04a9\3\2\2\2\u0584"+ - "\u04ac\3\2\2\2\u0584\u04af\3\2\2\2\u0584\u04b2\3\2\2\2\u0584\u04b5\3\2"+ - "\2\2\u0584\u04b8\3\2\2\2\u0584\u04bb\3\2\2\2\u0584\u04be\3\2\2\2\u0584"+ - "\u04c1\3\2\2\2\u0584\u04c4\3\2\2\2\u0584\u04c7\3\2\2\2\u0584\u04ca\3\2"+ - "\2\2\u0584\u04cd\3\2\2\2\u0584\u04d0\3\2\2\2\u0584\u04d3\3\2\2\2\u0584"+ - "\u04d6\3\2\2\2\u0584\u04d9\3\2\2\2\u0584\u04dc\3\2\2\2\u0584\u04df\3\2"+ - "\2\2\u0584\u04e2\3\2\2\2\u0584\u04e5\3\2\2\2\u0584\u04e8\3\2\2\2\u0584"+ - "\u04eb\3\2\2\2\u0584\u04ee\3\2\2\2\u0584\u04f1\3\2\2\2\u0584\u04f4\3\2"+ - "\2\2\u0584\u04f7\3\2\2\2\u0584\u04fa\3\2\2\2\u0584\u04fd\3\2\2\2\u0584"+ - "\u0500\3\2\2\2\u0584\u0503\3\2\2\2\u0584\u0506\3\2\2\2\u0584\u0509\3\2"+ - "\2\2\u0584\u050c\3\2\2\2\u0584\u050f\3\2\2\2\u0584\u0512\3\2\2\2\u0584"+ - "\u0515\3\2\2\2\u0584\u0518\3\2\2\2\u0584\u051b\3\2\2\2\u0584\u051e\3\2"+ - "\2\2\u0584\u0521\3\2\2\2\u0584\u0524\3\2\2\2\u0584\u0527\3\2\2\2\u0584"+ - "\u052a\3\2\2\2\u0584\u052d\3\2\2\2\u0584\u0530\3\2\2\2\u0584\u0533\3\2"+ - "\2\2\u0584\u0536\3\2\2\2\u0584\u0539\3\2\2\2\u0584\u053c\3\2\2\2\u0584"+ - "\u053f\3\2\2\2\u0584\u0542\3\2\2\2\u0584\u0545\3\2\2\2\u0584\u0548\3\2"+ - "\2\2\u0584\u054b\3\2\2\2\u0584\u054e\3\2\2\2\u0584\u0551\3\2\2\2\u0584"+ - "\u0554\3\2\2\2\u0584\u0557\3\2\2\2\u0584\u055a\3\2\2\2\u0584\u055d\3\2"+ - "\2\2\u0584\u0560\3\2\2\2\u0584\u0563\3\2\2\2\u0584\u0566\3\2\2\2\u0584"+ - "\u0569\3\2\2\2\u0584\u056c\3\2\2\2\u0584\u056f\3\2\2\2\u0584\u0572\3\2"+ - "\2\2\u0584\u0575\3\2\2\2\u0584\u0578\3\2\2\2\u0584\u057b\3\2\2\2\u0584"+ - "\u057e\3\2\2\2\u0584\u0581\3\2\2\2\u0585\u0102\3\2\2\2\u0586\u0587\7%"+ - "\2\2\u0587\u0104\3\2\2\2\u0588\u0589\7<\2\2\u0589\u0106\3\2\2\2\u058a"+ - "\u058b\7.\2\2\u058b\u0108\3\2\2\2\u058c\u058d\7*\2\2\u058d\u010a\3\2\2"+ - "\2\u058e\u058f\7+\2\2\u058f\u010c\3\2\2\2\u0590\u0591\7]\2\2\u0591\u010e"+ - "\3\2\2\2\u0592\u0593\7_\2\2\u0593\u0110\3\2\2\2\u0594\u0595\7\60\2\2\u0595"+ - "\u0112\3\2\2\2\u0596\u0597\7>\2\2\u0597\u0598\7>\2\2\u0598\u0114\3\2\2"+ - "\2\u0599\u059a\7@\2\2\u059a\u059b\7@\2\2\u059b\u0116\3\2\2\2\u059c\u059d"+ - "\7-\2\2\u059d\u0118\3\2\2\2\u059e\u059f\7/\2\2\u059f\u011a\3\2\2\2\u05a0"+ - "\u05a1\7>\2\2\u05a1\u011c\3\2\2\2\u05a2\u05a3\7@\2\2\u05a3\u011e\3\2\2"+ - "\2\u05a4\u05a5\7,\2\2\u05a5\u0120\3\2\2\2\u05a6\u05a7\7\61\2\2\u05a7\u0122"+ - "\3\2\2\2\u05a8\u05a9\7}\2\2\u05a9\u05aa\b\u0091\t\2\u05aa\u0124\3\2\2"+ - "\2\u05ab\u05ac\7\177\2\2\u05ac\u05ad\b\u0092\n\2\u05ad\u0126\3\2\2\2\u05ae"+ - "\u05b1\5\u0129\u0094\2\u05af\u05b1\5\u0131\u0098\2\u05b0\u05ae\3\2\2\2"+ - "\u05b0\u05af\3\2\2\2\u05b1\u0128\3\2\2\2\u05b2\u05b6\5\u012b\u0095\2\u05b3"+ - "\u05b6\5\u012d\u0096\2\u05b4\u05b6\5\u012f\u0097\2\u05b5\u05b2\3\2\2\2"+ - "\u05b5\u05b3\3\2\2\2\u05b5\u05b4\3\2\2\2\u05b6\u012a\3\2\2\2\u05b7\u05bb"+ - "\7\'\2\2\u05b8\u05ba\5\u0139\u009c\2\u05b9\u05b8\3\2\2\2\u05ba\u05bd\3"+ - "\2\2\2\u05bb\u05b9\3\2\2\2\u05bb\u05bc\3\2\2\2\u05bc\u05be\3\2\2\2\u05bd"+ - "\u05bb\3\2\2\2\u05be\u05c0\7\60\2\2\u05bf\u05c1\5\u0139\u009c\2\u05c0"+ - "\u05bf\3\2\2\2\u05c1\u05c2\3\2\2\2\u05c2\u05c0\3\2\2\2\u05c2\u05c3\3\2"+ - "\2\2\u05c3\u012c\3\2\2\2\u05c4\u05c6\5\u013b\u009d\2\u05c5\u05c4\3\2\2"+ - "\2\u05c6\u05c9\3\2\2\2\u05c7\u05c5\3\2\2\2\u05c7\u05c8\3\2\2\2\u05c8\u05ca"+ - "\3\2\2\2\u05c9\u05c7\3\2\2\2\u05ca\u05cc\7\60\2\2\u05cb\u05cd\5\u013b"+ - "\u009d\2\u05cc\u05cb\3\2\2\2\u05cd\u05ce\3\2\2\2\u05ce\u05cc\3\2\2\2\u05ce"+ - "\u05cf\3\2\2\2\u05cf\u012e\3\2\2\2\u05d0\u05d4\7&\2\2\u05d1\u05d3\5\u013d"+ - "\u009e\2\u05d2\u05d1\3\2\2\2\u05d3\u05d6\3\2\2\2\u05d4\u05d2\3\2\2\2\u05d4"+ - "\u05d5\3\2\2\2\u05d5\u05d7\3\2\2\2\u05d6\u05d4\3\2\2\2\u05d7\u05d9\7\60"+ - "\2\2\u05d8\u05da\5\u013d\u009e\2\u05d9\u05d8\3\2\2\2\u05da\u05db\3\2\2"+ - "\2\u05db\u05d9\3\2\2\2\u05db\u05dc\3\2\2\2\u05dc\u0130\3\2\2\2\u05dd\u05e1"+ - "\5\u0135\u009a\2\u05de\u05e1\5\u0137\u009b\2\u05df\u05e1\5\u0133\u0099"+ - "\2\u05e0\u05dd\3\2\2\2\u05e0\u05de\3\2\2\2\u05e0\u05df\3\2\2\2\u05e1\u0132"+ - "\3\2\2\2\u05e2\u05e4\7\'\2\2\u05e3\u05e5\5\u0139\u009c\2\u05e4\u05e3\3"+ - "\2\2\2\u05e5\u05e6\3\2\2\2\u05e6\u05e4\3\2\2\2\u05e6\u05e7\3\2\2\2\u05e7"+ - "\u0134\3\2\2\2\u05e8\u05ea\5\u013b\u009d\2\u05e9\u05e8\3\2\2\2\u05ea\u05eb"+ - "\3\2\2\2\u05eb\u05e9\3\2\2\2\u05eb\u05ec\3\2\2\2\u05ec\u0136\3\2\2\2\u05ed"+ - "\u05ef\7&\2\2\u05ee\u05f0\5\u013d\u009e\2\u05ef\u05ee\3\2\2\2\u05f0\u05f1"+ - "\3\2\2\2\u05f1\u05ef\3\2\2\2\u05f1\u05f2\3\2\2\2\u05f2\u0138\3\2\2\2\u05f3"+ - "\u05f4\t\5\2\2\u05f4\u013a\3\2\2\2\u05f5\u05f6\t\6\2\2\u05f6\u013c\3\2"+ - "\2\2\u05f7\u05f8\t\7\2\2\u05f8\u013e\3\2\2\2\u05f9\u05fd\7)\2\2\u05fa"+ - "\u05fb\7^\2\2\u05fb\u05fe\t\16\2\2\u05fc\u05fe\n\20\2\2\u05fd\u05fa\3"+ - "\2\2\2\u05fd\u05fc\3\2\2\2\u05fe\u05ff\3\2\2\2\u05ff\u0600\7)\2\2\u0600"+ - "\u0140\3\2\2\2\u0601\u0603\5\u0143\u00a1\2\u0602\u0604\t\23\2\2\u0603"+ - "\u0602\3\2\2\2\u0604\u0605\3\2\2\2\u0605\u0603\3\2\2\2\u0605\u0606\3\2"+ - "\2\2\u0606\u0142\3\2\2\2\u0607\u060b\7#\2\2\u0608\u060a\5\u0149\u00a4"+ - "\2\u0609\u0608\3\2\2\2\u060a\u060d\3\2\2\2\u060b\u0609\3\2\2\2\u060b\u060c"+ - "\3\2\2\2\u060c\u0144\3\2\2\2\u060d\u060b\3\2\2\2\u060e\u0612\5\u0147\u00a3"+ - "\2\u060f\u0611\5\u0149\u00a4\2\u0610\u060f\3\2\2\2\u0611\u0614\3\2\2\2"+ - "\u0612\u0610\3\2\2\2\u0612\u0613\3\2\2\2\u0613\u0146\3\2\2\2\u0614\u0612"+ - "\3\2\2\2\u0615\u0616\t\b\2\2\u0616\u0148\3\2\2\2\u0617\u0618\t\t\2\2\u0618"+ - "\u014a\3\2\2\2\u0619\u061b\t\21\2\2\u061a\u0619\3\2\2\2\u061b\u061c\3"+ - "\2\2\2\u061c\u061a\3\2\2\2\u061c\u061d\3\2\2\2\u061d\u061e\3\2\2\2\u061e"+ - "\u061f\b\u00a5\7\2\u061f\u014c\3\2\2\2\u0620\u0621\7\61\2\2\u0621\u0622"+ - "\7\61\2\2\u0622\u0626\3\2\2\2\u0623\u0625\n\22\2\2\u0624\u0623\3\2\2\2"+ - "\u0625\u0628\3\2\2\2\u0626\u0624\3\2\2\2\u0626\u0627\3\2\2\2\u0627\u0629"+ - "\3\2\2\2\u0628\u0626\3\2\2\2\u0629\u062a\b\u00a6\b\2\u062a\u014e\3\2\2"+ - "\2\u062b\u062c\7\61\2\2\u062c\u062d\7,\2\2\u062d\u0631\3\2\2\2\u062e\u0630"+ - "\13\2\2\2\u062f\u062e\3\2\2\2\u0630\u0633\3\2\2\2\u0631\u0632\3\2\2\2"+ - "\u0631\u062f\3\2\2\2\u0632\u0634\3\2\2\2\u0633\u0631\3\2\2\2\u0634\u0635"+ - "\7,\2\2\u0635\u0636\7\61\2\2\u0636\u0637\3\2\2\2\u0637\u0638\b\u00a7\b"+ - "\2\u0638\u0150\3\2\2\2\u0639\u063b\7>\2\2\u063a\u063c\t\24\2\2\u063b\u063a"+ - "\3\2\2\2\u063c\u063d\3\2\2\2\u063d\u063b\3\2\2\2\u063d\u063e\3\2\2\2\u063e"+ - "\u063f\3\2\2\2\u063f\u0640\7@\2\2\u0640\u0641\b\u00a8\13\2\u0641\u0152"+ - "\3\2\2\2\u0642\u0648\7$\2\2\u0643\u0644\7^\2\2\u0644\u0647\7$\2\2\u0645"+ - "\u0647\n\n\2\2\u0646\u0643\3\2\2\2\u0646\u0645\3\2\2\2\u0647\u064a\3\2"+ - "\2\2\u0648\u0646\3\2\2\2\u0648\u0649\3\2\2\2\u0649\u064b\3\2\2\2\u064a"+ - "\u0648\3\2\2\2\u064b\u064c\7$\2\2\u064c\u064d\b\u00a9\f\2\u064d\u0154"+ - "\3\2\2\2\u064e\u0650\t\21\2\2\u064f\u064e\3\2\2\2\u0650\u0651\3\2\2\2"+ - "\u0651\u064f\3\2\2\2\u0651\u0652\3\2\2\2\u0652\u0653\3\2\2\2\u0653\u0654"+ - "\b\u00aa\7\2\u0654\u0156\3\2\2\2\u0655\u0656\7\61\2\2\u0656\u0657\7\61"+ - "\2\2\u0657\u065b\3\2\2\2\u0658\u065a\n\22\2\2\u0659\u0658\3\2\2\2\u065a"+ - "\u065d\3\2\2\2\u065b\u0659\3\2\2\2\u065b\u065c\3\2\2\2\u065c\u065e\3\2"+ - "\2\2\u065d\u065b\3\2\2\2\u065e\u065f\b\u00ab\b\2\u065f\u0158\3\2\2\2\u0660"+ - "\u0661\7\61\2\2\u0661\u0662\7,\2\2\u0662\u0666\3\2\2\2\u0663\u0665\13"+ - "\2\2\2\u0664\u0663\3\2\2\2\u0665\u0668\3\2\2\2\u0666\u0667\3\2\2\2\u0666"+ - "\u0664\3\2\2\2\u0667\u0669\3\2\2\2\u0668\u0666\3\2\2\2\u0669\u066a\7,"+ - "\2\2\u066a\u066b\7\61\2\2\u066b\u066c\3\2\2\2\u066c\u066d\b\u00ac\b\2"+ - "\u066d\u015a\3\2\2\2D\2\3\4\u01c8\u029d\u034c\u0373\u037e\u0386\u03b6"+ - "\u03e7\u03ec\u03f3\u03f8\u03ff\u0404\u040b\u0412\u0417\u041e\u0423\u0428"+ - "\u042f\u0435\u0437\u043c\u0443\u0448\u0454\u0461\u0463\u0468\u046c\u046e"+ - "\u0471\u0479\u047c\u0483\u048d\u0498\u0584\u05b0\u05b5\u05bb\u05c2\u05c7"+ - "\u05ce\u05d4\u05db\u05e0\u05e6\u05eb\u05f1\u05fd\u0605\u060b\u0612\u061c"+ - "\u0626\u0631\u063d\u0646\u0648\u0651\u065b\u0666\r\3\2\2\3L\3\3_\4\3`"+ - "\5\3w\6\2\3\2\2\4\2\3\u0091\7\3\u0092\b\3\u00a8\t\3\u00a9\n"; + "\3\u0090\3\u0090\3\u0091\3\u0091\3\u0092\3\u0092\3\u0092\3\u0093\3\u0093"+ + "\3\u0093\3\u0094\3\u0094\5\u0094\u05bd\n\u0094\3\u0095\3\u0095\3\u0095"+ + "\5\u0095\u05c2\n\u0095\3\u0096\3\u0096\7\u0096\u05c6\n\u0096\f\u0096\16"+ + "\u0096\u05c9\13\u0096\3\u0096\3\u0096\6\u0096\u05cd\n\u0096\r\u0096\16"+ + "\u0096\u05ce\3\u0097\7\u0097\u05d2\n\u0097\f\u0097\16\u0097\u05d5\13\u0097"+ + "\3\u0097\3\u0097\6\u0097\u05d9\n\u0097\r\u0097\16\u0097\u05da\3\u0098"+ + "\3\u0098\7\u0098\u05df\n\u0098\f\u0098\16\u0098\u05e2\13\u0098\3\u0098"+ + "\3\u0098\6\u0098\u05e6\n\u0098\r\u0098\16\u0098\u05e7\3\u0099\3\u0099"+ + "\3\u0099\5\u0099\u05ed\n\u0099\3\u009a\3\u009a\6\u009a\u05f1\n\u009a\r"+ + "\u009a\16\u009a\u05f2\3\u009b\6\u009b\u05f6\n\u009b\r\u009b\16\u009b\u05f7"+ + "\3\u009c\3\u009c\6\u009c\u05fc\n\u009c\r\u009c\16\u009c\u05fd\3\u009d"+ + "\3\u009d\3\u009e\3\u009e\3\u009f\3\u009f\3\u00a0\3\u00a0\3\u00a0\3\u00a0"+ + "\5\u00a0\u060a\n\u00a0\3\u00a0\3\u00a0\3\u00a1\3\u00a1\6\u00a1\u0610\n"+ + "\u00a1\r\u00a1\16\u00a1\u0611\3\u00a2\3\u00a2\7\u00a2\u0616\n\u00a2\f"+ + "\u00a2\16\u00a2\u0619\13\u00a2\3\u00a3\3\u00a3\7\u00a3\u061d\n\u00a3\f"+ + "\u00a3\16\u00a3\u0620\13\u00a3\3\u00a4\3\u00a4\3\u00a5\3\u00a5\3\u00a6"+ + "\6\u00a6\u0627\n\u00a6\r\u00a6\16\u00a6\u0628\3\u00a6\3\u00a6\3\u00a7"+ + "\3\u00a7\3\u00a7\3\u00a7\7\u00a7\u0631\n\u00a7\f\u00a7\16\u00a7\u0634"+ + "\13\u00a7\3\u00a7\3\u00a7\3\u00a8\3\u00a8\3\u00a8\3\u00a8\7\u00a8\u063c"+ + "\n\u00a8\f\u00a8\16\u00a8\u063f\13\u00a8\3\u00a8\3\u00a8\3\u00a8\3\u00a8"+ + "\3\u00a8\3\u00a9\3\u00a9\6\u00a9\u0648\n\u00a9\r\u00a9\16\u00a9\u0649"+ + "\3\u00a9\3\u00a9\3\u00a9\3\u00aa\3\u00aa\3\u00aa\3\u00aa\7\u00aa\u0653"+ + "\n\u00aa\f\u00aa\16\u00aa\u0656\13\u00aa\3\u00aa\3\u00aa\3\u00aa\3\u00ab"+ + "\6\u00ab\u065c\n\u00ab\r\u00ab\16\u00ab\u065d\3\u00ab\3\u00ab\3\u00ac"+ + "\3\u00ac\3\u00ac\3\u00ac\7\u00ac\u0666\n\u00ac\f\u00ac\16\u00ac\u0669"+ + "\13\u00ac\3\u00ac\3\u00ac\3\u00ad\3\u00ad\3\u00ad\3\u00ad\7\u00ad\u0671"+ + "\n\u00ad\f\u00ad\16\u00ad\u0674\13\u00ad\3\u00ad\3\u00ad\3\u00ad\3\u00ad"+ + "\3\u00ad\6\u0392\u04a4\u063d\u0672\2\u00ae\5\4\7\5\t\6\13\7\r\b\17\t\21"+ + "\n\23\13\25\f\27\r\31\16\33\17\35\20\37\21!\22#\23%\24\'\25)\26+\27-\30"+ + "/\31\61\32\63\33\65\34\67\359\36;\37= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.["+ + "/]\60_\61a\62c\63e\64g\65i\66k\67m8o9q:s;u{?}@\177A\u0081B\u0083"+ + "C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097"+ + "M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00ab"+ + "W\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bf"+ + "a\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3"+ + "k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7"+ + "u\u00e9v\u00eb\2\u00ed\2\u00ef\2\u00f1w\u00f3\2\u00f5\2\u00f7x\u00f9y"+ + "\u00fbz\u00fd{\u00ff|\u0101}\u0103~\u0105\177\u0107\u0080\u0109\u0081"+ + "\u010b\u0082\u010d\u0083\u010f\u0084\u0111\u0085\u0113\u0086\u0115\u0087"+ + "\u0117\u0088\u0119\u0089\u011b\u008a\u011d\u008b\u011f\u008c\u0121\u008d"+ + "\u0123\u008e\u0125\u008f\u0127\u0090\u0129\u0091\u012b\u0092\u012d\u0093"+ + "\u012f\u0094\u0131\u0095\u0133\u0096\u0135\u0097\u0137\u0098\u0139\u0099"+ + "\u013b\2\u013d\2\u013f\2\u0141\u009a\u0143\u009b\u0145\u009c\u0147\u009d"+ + "\u0149\2\u014b\2\u014d\u009e\u014f\u009f\u0151\u00a0\u0153\u00a1\u0155"+ + "\u00a2\u0157\u00a3\u0159\u00a4\u015b\u00a5\5\2\3\4\25\4\2uuww\7\2dfkk"+ + "nnuuyy\4\2DDdd\3\2\62\63\3\2\62;\5\2\62;CHch\5\2C\\aac|\6\2\62;C\\aac"+ + "|\3\2$$\3\2||\4\2rruu\4\2ooww\7\2$$))hhpptt\4\2\62;ch\3\2))\6\2\13\f\17"+ + "\17\"\"\u00a2\u00a2\4\2\f\f\17\17\4\2--//\7\2/;C\\^^aac|\2\u070b\2\5\3"+ + "\2\2\2\2\7\3\2\2\2\2\t\3\2\2\2\2\13\3\2\2\2\2\r\3\2\2\2\2\17\3\2\2\2\2"+ + "\21\3\2\2\2\2\23\3\2\2\2\2\25\3\2\2\2\2\27\3\2\2\2\2\31\3\2\2\2\2\33\3"+ + "\2\2\2\2\35\3\2\2\2\2\37\3\2\2\2\2!\3\2\2\2\2#\3\2\2\2\2%\3\2\2\2\2\'"+ + "\3\2\2\2\2)\3\2\2\2\2+\3\2\2\2\2-\3\2\2\2\2/\3\2\2\2\2\61\3\2\2\2\2\63"+ + "\3\2\2\2\2\65\3\2\2\2\2\67\3\2\2\2\29\3\2\2\2\2;\3\2\2\2\2=\3\2\2\2\2"+ + "?\3\2\2\2\2A\3\2\2\2\2C\3\2\2\2\2E\3\2\2\2\2G\3\2\2\2\2I\3\2\2\2\2K\3"+ + "\2\2\2\2M\3\2\2\2\2O\3\2\2\2\2Q\3\2\2\2\2S\3\2\2\2\2U\3\2\2\2\2W\3\2\2"+ + "\2\2Y\3\2\2\2\2[\3\2\2\2\2]\3\2\2\2\2_\3\2\2\2\2a\3\2\2\2\2c\3\2\2\2\2"+ + "e\3\2\2\2\2g\3\2\2\2\2i\3\2\2\2\2k\3\2\2\2\2m\3\2\2\2\2o\3\2\2\2\2q\3"+ + "\2\2\2\2s\3\2\2\2\2u\3\2\2\2\2w\3\2\2\2\2y\3\2\2\2\2{\3\2\2\2\2}\3\2\2"+ + "\2\2\177\3\2\2\2\2\u0081\3\2\2\2\2\u0083\3\2\2\2\2\u0085\3\2\2\2\2\u0087"+ + "\3\2\2\2\2\u0089\3\2\2\2\2\u008b\3\2\2\2\2\u008d\3\2\2\2\2\u008f\3\2\2"+ + "\2\2\u0091\3\2\2\2\2\u0093\3\2\2\2\2\u0095\3\2\2\2\2\u0097\3\2\2\2\2\u0099"+ + "\3\2\2\2\2\u009b\3\2\2\2\2\u009d\3\2\2\2\2\u009f\3\2\2\2\2\u00a1\3\2\2"+ + "\2\2\u00a3\3\2\2\2\2\u00a5\3\2\2\2\2\u00a7\3\2\2\2\2\u00a9\3\2\2\2\2\u00ab"+ + "\3\2\2\2\2\u00ad\3\2\2\2\2\u00af\3\2\2\2\2\u00b1\3\2\2\2\2\u00b3\3\2\2"+ + "\2\2\u00b5\3\2\2\2\2\u00b7\3\2\2\2\2\u00b9\3\2\2\2\2\u00bb\3\2\2\2\2\u00bd"+ + "\3\2\2\2\2\u00bf\3\2\2\2\2\u00c1\3\2\2\2\2\u00c3\3\2\2\2\2\u00c5\3\2\2"+ + "\2\2\u00c7\3\2\2\2\2\u00c9\3\2\2\2\2\u00cb\3\2\2\2\2\u00cd\3\2\2\2\2\u00cf"+ + "\3\2\2\2\2\u00d1\3\2\2\2\2\u00d3\3\2\2\2\2\u00d5\3\2\2\2\2\u00d7\3\2\2"+ + "\2\2\u00d9\3\2\2\2\2\u00db\3\2\2\2\2\u00dd\3\2\2\2\2\u00df\3\2\2\2\2\u00e1"+ + "\3\2\2\2\2\u00e3\3\2\2\2\2\u00e5\3\2\2\2\2\u00e7\3\2\2\2\2\u00e9\3\2\2"+ + "\2\2\u00f1\3\2\2\2\2\u00f7\3\2\2\2\2\u00f9\3\2\2\2\2\u00fb\3\2\2\2\2\u00fd"+ + "\3\2\2\2\2\u00ff\3\2\2\2\3\u0101\3\2\2\2\3\u0103\3\2\2\2\3\u0105\3\2\2"+ + "\2\3\u0107\3\2\2\2\3\u0109\3\2\2\2\3\u010b\3\2\2\2\3\u010d\3\2\2\2\3\u010f"+ + "\3\2\2\2\3\u0111\3\2\2\2\3\u0113\3\2\2\2\3\u0115\3\2\2\2\3\u0117\3\2\2"+ + "\2\3\u0119\3\2\2\2\3\u011b\3\2\2\2\3\u011d\3\2\2\2\3\u011f\3\2\2\2\3\u0121"+ + "\3\2\2\2\3\u0123\3\2\2\2\3\u0125\3\2\2\2\3\u0127\3\2\2\2\3\u0129\3\2\2"+ + "\2\3\u012b\3\2\2\2\3\u012d\3\2\2\2\3\u012f\3\2\2\2\3\u0131\3\2\2\2\3\u0133"+ + "\3\2\2\2\3\u0135\3\2\2\2\3\u0137\3\2\2\2\3\u0139\3\2\2\2\3\u0141\3\2\2"+ + "\2\3\u0143\3\2\2\2\3\u0145\3\2\2\2\3\u0147\3\2\2\2\3\u014d\3\2\2\2\3\u014f"+ + "\3\2\2\2\3\u0151\3\2\2\2\4\u0153\3\2\2\2\4\u0155\3\2\2\2\4\u0157\3\2\2"+ + "\2\4\u0159\3\2\2\2\4\u015b\3\2\2\2\5\u015d\3\2\2\2\7\u0160\3\2\2\2\t\u0162"+ + "\3\2\2\2\13\u0164\3\2\2\2\r\u0166\3\2\2\2\17\u0168\3\2\2\2\21\u016a\3"+ + "\2\2\2\23\u016c\3\2\2\2\25\u016e\3\2\2\2\27\u0170\3\2\2\2\31\u0173\3\2"+ + "\2\2\33\u0177\3\2\2\2\35\u0179\3\2\2\2\37\u017b\3\2\2\2!\u017e\3\2\2\2"+ + "#\u0180\3\2\2\2%\u0182\3\2\2\2\'\u0184\3\2\2\2)\u0186\3\2\2\2+\u0188\3"+ + "\2\2\2-\u018b\3\2\2\2/\u018e\3\2\2\2\61\u0190\3\2\2\2\63\u0192\3\2\2\2"+ + "\65\u0194\3\2\2\2\67\u0196\3\2\2\29\u0199\3\2\2\2;\u019c\3\2\2\2=\u019f"+ + "\3\2\2\2?\u01a2\3\2\2\2A\u01a4\3\2\2\2C\u01a7\3\2\2\2E\u01aa\3\2\2\2G"+ + "\u01ac\3\2\2\2I\u01af\3\2\2\2K\u01b2\3\2\2\2M\u01ca\3\2\2\2O\u01cc\3\2"+ + "\2\2Q\u01d4\3\2\2\2S\u01dc\3\2\2\2U\u01df\3\2\2\2W\u01e6\3\2\2\2Y\u01eb"+ + "\3\2\2\2[\u01f5\3\2\2\2]\u01fe\3\2\2\2_\u0202\3\2\2\2a\u020b\3\2\2\2c"+ + "\u0214\3\2\2\2e\u021d\3\2\2\2g\u0223\3\2\2\2i\u022a\3\2\2\2k\u0231\3\2"+ + "\2\2m\u0237\3\2\2\2o\u023e\3\2\2\2q\u0247\3\2\2\2s\u024e\3\2\2\2u\u0258"+ + "\3\2\2\2w\u0261\3\2\2\2y\u026b\3\2\2\2{\u0270\3\2\2\2}\u0276\3\2\2\2\177"+ + "\u027c\3\2\2\2\u0081\u0281\3\2\2\2\u0083\u028d\3\2\2\2\u0085\u02a9\3\2"+ + "\2\2\u0087\u02ab\3\2\2\2\u0089\u02b5\3\2\2\2\u008b\u02b8\3\2\2\2\u008d"+ + "\u02bd\3\2\2\2\u008f\u02c3\3\2\2\2\u0091\u02c6\3\2\2\2\u0093\u02ca\3\2"+ + "\2\2\u0095\u02d1\3\2\2\2\u0097\u02d8\3\2\2\2\u0099\u02de\3\2\2\2\u009b"+ + "\u02e7\3\2\2\2\u009d\u02ed\3\2\2\2\u009f\u02f5\3\2\2\2\u00a1\u02fa\3\2"+ + "\2\2\u00a3\u0301\3\2\2\2\u00a5\u0306\3\2\2\2\u00a7\u030d\3\2\2\2\u00a9"+ + "\u0314\3\2\2\2\u00ab\u031c\3\2\2\2\u00ad\u0324\3\2\2\2\u00af\u032d\3\2"+ + "\2\2\u00b1\u0332\3\2\2\2\u00b3\u033b\3\2\2\2\u00b5\u0341\3\2\2\2\u00b7"+ + "\u0348\3\2\2\2\u00b9\u0358\3\2\2\2\u00bb\u037f\3\2\2\2\u00bd\u038a\3\2"+ + "\2\2\u00bf\u038c\3\2\2\2\u00c1\u0398\3\2\2\2\u00c3\u03a2\3\2\2\2\u00c5"+ + "\u03ad\3\2\2\2\u00c7\u03b5\3\2\2\2\u00c9\u03c2\3\2\2\2\u00cb\u03c4\3\2"+ + "\2\2\u00cd\u03cb\3\2\2\2\u00cf\u03d2\3\2\2\2\u00d1\u03da\3\2\2\2\u00d3"+ + "\u03de\3\2\2\2\u00d5\u03e4\3\2\2\2\u00d7\u03ea\3\2\2\2\u00d9\u03f3\3\2"+ + "\2\2\u00db\u03f8\3\2\2\2\u00dd\u03ff\3\2\2\2\u00df\u0410\3\2\2\2\u00e1"+ + "\u041e\3\2\2\2\u00e3\u042f\3\2\2\2\u00e5\u0443\3\2\2\2\u00e7\u0446\3\2"+ + "\2\2\u00e9\u044f\3\2\2\2\u00eb\u0456\3\2\2\2\u00ed\u0458\3\2\2\2\u00ef"+ + "\u045a\3\2\2\2\u00f1\u045c\3\2\2\2\u00f3\u0465\3\2\2\2\u00f5\u0467\3\2"+ + "\2\2\u00f7\u0469\3\2\2\2\u00f9\u047f\3\2\2\2\u00fb\u048d\3\2\2\2\u00fd"+ + "\u0493\3\2\2\2\u00ff\u049e\3\2\2\2\u0101\u04ac\3\2\2\2\u0103\u0590\3\2"+ + "\2\2\u0105\u0592\3\2\2\2\u0107\u0594\3\2\2\2\u0109\u0596\3\2\2\2\u010b"+ + "\u0598\3\2\2\2\u010d\u059a\3\2\2\2\u010f\u059c\3\2\2\2\u0111\u059e\3\2"+ + "\2\2\u0113\u05a0\3\2\2\2\u0115\u05a2\3\2\2\2\u0117\u05a5\3\2\2\2\u0119"+ + "\u05a8\3\2\2\2\u011b\u05aa\3\2\2\2\u011d\u05ac\3\2\2\2\u011f\u05ae\3\2"+ + "\2\2\u0121\u05b0\3\2\2\2\u0123\u05b2\3\2\2\2\u0125\u05b4\3\2\2\2\u0127"+ + "\u05b7\3\2\2\2\u0129\u05bc\3\2\2\2\u012b\u05c1\3\2\2\2\u012d\u05c3\3\2"+ + "\2\2\u012f\u05d3\3\2\2\2\u0131\u05dc\3\2\2\2\u0133\u05ec\3\2\2\2\u0135"+ + "\u05ee\3\2\2\2\u0137\u05f5\3\2\2\2\u0139\u05f9\3\2\2\2\u013b\u05ff\3\2"+ + "\2\2\u013d\u0601\3\2\2\2\u013f\u0603\3\2\2\2\u0141\u0605\3\2\2\2\u0143"+ + "\u060d\3\2\2\2\u0145\u0613\3\2\2\2\u0147\u061a\3\2\2\2\u0149\u0621\3\2"+ + "\2\2\u014b\u0623\3\2\2\2\u014d\u0626\3\2\2\2\u014f\u062c\3\2\2\2\u0151"+ + "\u0637\3\2\2\2\u0153\u0645\3\2\2\2\u0155\u064e\3\2\2\2\u0157\u065b\3\2"+ + "\2\2\u0159\u0661\3\2\2\2\u015b\u066c\3\2\2\2\u015d\u015e\7}\2\2\u015e"+ + "\u015f\b\2\2\2\u015f\6\3\2\2\2\u0160\u0161\7\177\2\2\u0161\b\3\2\2\2\u0162"+ + "\u0163\7]\2\2\u0163\n\3\2\2\2\u0164\u0165\7_\2\2\u0165\f\3\2\2\2\u0166"+ + "\u0167\7*\2\2\u0167\16\3\2\2\2\u0168\u0169\7+\2\2\u0169\20\3\2\2\2\u016a"+ + "\u016b\7=\2\2\u016b\22\3\2\2\2\u016c\u016d\7<\2\2\u016d\24\3\2\2\2\u016e"+ + "\u016f\7.\2\2\u016f\26\3\2\2\2\u0170\u0171\7\60\2\2\u0171\u0172\7\60\2"+ + "\2\u0172\30\3\2\2\2\u0173\u0174\7\60\2\2\u0174\u0175\7\60\2\2\u0175\u0176"+ + "\7\60\2\2\u0176\32\3\2\2\2\u0177\u0178\7A\2\2\u0178\34\3\2\2\2\u0179\u017a"+ + "\7\60\2\2\u017a\36\3\2\2\2\u017b\u017c\7/\2\2\u017c\u017d\7@\2\2\u017d"+ + " \3\2\2\2\u017e\u017f\7-\2\2\u017f\"\3\2\2\2\u0180\u0181\7/\2\2\u0181"+ + "$\3\2\2\2\u0182\u0183\7,\2\2\u0183&\3\2\2\2\u0184\u0185\7\61\2\2\u0185"+ + "(\3\2\2\2\u0186\u0187\7\'\2\2\u0187*\3\2\2\2\u0188\u0189\7-\2\2\u0189"+ + "\u018a\7-\2\2\u018a,\3\2\2\2\u018b\u018c\7/\2\2\u018c\u018d\7/\2\2\u018d"+ + ".\3\2\2\2\u018e\u018f\7(\2\2\u018f\60\3\2\2\2\u0190\u0191\7\u0080\2\2"+ + "\u0191\62\3\2\2\2\u0192\u0193\7`\2\2\u0193\64\3\2\2\2\u0194\u0195\7~\2"+ + "\2\u0195\66\3\2\2\2\u0196\u0197\7>\2\2\u0197\u0198\7>\2\2\u01988\3\2\2"+ + "\2\u0199\u019a\7@\2\2\u019a\u019b\7@\2\2\u019b:\3\2\2\2\u019c\u019d\7"+ + "?\2\2\u019d\u019e\7?\2\2\u019e<\3\2\2\2\u019f\u01a0\7#\2\2\u01a0\u01a1"+ + "\7?\2\2\u01a1>\3\2\2\2\u01a2\u01a3\7>\2\2\u01a3@\3\2\2\2\u01a4\u01a5\7"+ + ">\2\2\u01a5\u01a6\7?\2\2\u01a6B\3\2\2\2\u01a7\u01a8\7@\2\2\u01a8\u01a9"+ + "\7?\2\2\u01a9D\3\2\2\2\u01aa\u01ab\7@\2\2\u01abF\3\2\2\2\u01ac\u01ad\7"+ + "(\2\2\u01ad\u01ae\7(\2\2\u01aeH\3\2\2\2\u01af\u01b0\7~\2\2\u01b0\u01b1"+ + "\7~\2\2\u01b1J\3\2\2\2\u01b2\u01b3\7?\2\2\u01b3L\3\2\2\2\u01b4\u01b5\7"+ + "-\2\2\u01b5\u01cb\7?\2\2\u01b6\u01b7\7/\2\2\u01b7\u01cb\7?\2\2\u01b8\u01b9"+ + "\7,\2\2\u01b9\u01cb\7?\2\2\u01ba\u01bb\7\61\2\2\u01bb\u01cb\7?\2\2\u01bc"+ + "\u01bd\7\'\2\2\u01bd\u01cb\7?\2\2\u01be\u01bf\7>\2\2\u01bf\u01c0\7>\2"+ + "\2\u01c0\u01cb\7?\2\2\u01c1\u01c2\7@\2\2\u01c2\u01c3\7@\2\2\u01c3\u01cb"+ + "\7?\2\2\u01c4\u01c5\7(\2\2\u01c5\u01cb\7?\2\2\u01c6\u01c7\7~\2\2\u01c7"+ + "\u01cb\7?\2\2\u01c8\u01c9\7`\2\2\u01c9\u01cb\7?\2\2\u01ca\u01b4\3\2\2"+ + "\2\u01ca\u01b6\3\2\2\2\u01ca\u01b8\3\2\2\2\u01ca\u01ba\3\2\2\2\u01ca\u01bc"+ + "\3\2\2\2\u01ca\u01be\3\2\2\2\u01ca\u01c1\3\2\2\2\u01ca\u01c4\3\2\2\2\u01ca"+ + "\u01c6\3\2\2\2\u01ca\u01c8\3\2\2\2\u01cbN\3\2\2\2\u01cc\u01cd\7v\2\2\u01cd"+ + "\u01ce\7{\2\2\u01ce\u01cf\7r\2\2\u01cf\u01d0\7g\2\2\u01d0\u01d1\7f\2\2"+ + "\u01d1\u01d2\7g\2\2\u01d2\u01d3\7h\2\2\u01d3P\3\2\2\2\u01d4\u01d5\7t\2"+ + "\2\u01d5\u01d6\7g\2\2\u01d6\u01d7\7u\2\2\u01d7\u01d8\7g\2\2\u01d8\u01d9"+ + "\7t\2\2\u01d9\u01da\7x\2\2\u01da\u01db\7g\2\2\u01dbR\3\2\2\2\u01dc\u01dd"+ + "\7r\2\2\u01dd\u01de\7e\2\2\u01deT\3\2\2\2\u01df\u01e0\7v\2\2\u01e0\u01e1"+ + "\7c\2\2\u01e1\u01e2\7t\2\2\u01e2\u01e3\7i\2\2\u01e3\u01e4\7g\2\2\u01e4"+ + "\u01e5\7v\2\2\u01e5V\3\2\2\2\u01e6\u01e7\7n\2\2\u01e7\u01e8\7k\2\2\u01e8"+ + "\u01e9\7p\2\2\u01e9\u01ea\7m\2\2\u01eaX\3\2\2\2\u01eb\u01ec\7g\2\2\u01ec"+ + "\u01ed\7z\2\2\u01ed\u01ee\7v\2\2\u01ee\u01ef\7g\2\2\u01ef\u01f0\7p\2\2"+ + "\u01f0\u01f1\7u\2\2\u01f1\u01f2\7k\2\2\u01f2\u01f3\7q\2\2\u01f3\u01f4"+ + "\7p\2\2\u01f4Z\3\2\2\2\u01f5\u01f6\7g\2\2\u01f6\u01f7\7o\2\2\u01f7\u01f8"+ + "\7w\2\2\u01f8\u01f9\7n\2\2\u01f9\u01fa\7c\2\2\u01fa\u01fb\7v\2\2\u01fb"+ + "\u01fc\7q\2\2\u01fc\u01fd\7t\2\2\u01fd\\\3\2\2\2\u01fe\u01ff\7e\2\2\u01ff"+ + "\u0200\7r\2\2\u0200\u0201\7w\2\2\u0201^\3\2\2\2\u0202\u0203\7e\2\2\u0203"+ + "\u0204\7q\2\2\u0204\u0205\7f\2\2\u0205\u0206\7g\2\2\u0206\u0207\7a\2\2"+ + "\u0207\u0208\7u\2\2\u0208\u0209\7g\2\2\u0209\u020a\7i\2\2\u020a`\3\2\2"+ + "\2\u020b\u020c\7f\2\2\u020c\u020d\7c\2\2\u020d\u020e\7v\2\2\u020e\u020f"+ + "\7c\2\2\u020f\u0210\7a\2\2\u0210\u0211\7u\2\2\u0211\u0212\7g\2\2\u0212"+ + "\u0213\7i\2\2\u0213b\3\2\2\2\u0214\u0215\7g\2\2\u0215\u0216\7p\2\2\u0216"+ + "\u0217\7e\2\2\u0217\u0218\7q\2\2\u0218\u0219\7f\2\2\u0219\u021a\7k\2\2"+ + "\u021a\u021b\7p\2\2\u021b\u021c\7i\2\2\u021cd\3\2\2\2\u021d\u021e\7e\2"+ + "\2\u021e\u021f\7q\2\2\u021f\u0220\7p\2\2\u0220\u0221\7u\2\2\u0221\u0222"+ + "\7v\2\2\u0222f\3\2\2\2\u0223\u0224\7g\2\2\u0224\u0225\7z\2\2\u0225\u0226"+ + "\7v\2\2\u0226\u0227\7g\2\2\u0227\u0228\7t\2\2\u0228\u0229\7p\2\2\u0229"+ + "h\3\2\2\2\u022a\u022b\7g\2\2\u022b\u022c\7z\2\2\u022c\u022d\7r\2\2\u022d"+ + "\u022e\7q\2\2\u022e\u022f\7t\2\2\u022f\u0230\7v\2\2\u0230j\3\2\2\2\u0231"+ + "\u0232\7c\2\2\u0232\u0233\7n\2\2\u0233\u0234\7k\2\2\u0234\u0235\7i\2\2"+ + "\u0235\u0236\7p\2\2\u0236l\3\2\2\2\u0237\u0238\7k\2\2\u0238\u0239\7p\2"+ + "\2\u0239\u023a\7n\2\2\u023a\u023b\7k\2\2\u023b\u023c\7p\2\2\u023c\u023d"+ + "\7g\2\2\u023dn\3\2\2\2\u023e\u023f\7x\2\2\u023f\u0240\7q\2\2\u0240\u0241"+ + "\7n\2\2\u0241\u0242\7c\2\2\u0242\u0243\7v\2\2\u0243\u0244\7k\2\2\u0244"+ + "\u0245\7n\2\2\u0245\u0246\7g\2\2\u0246p\3\2\2\2\u0247\u0248\7u\2\2\u0248"+ + "\u0249\7v\2\2\u0249\u024a\7c\2\2\u024a\u024b\7v\2\2\u024b\u024c\7k\2\2"+ + "\u024c\u024d\7e\2\2\u024dr\3\2\2\2\u024e\u024f\7k\2\2\u024f\u0250\7p\2"+ + "\2\u0250\u0251\7v\2\2\u0251\u0252\7g\2\2\u0252\u0253\7t\2\2\u0253\u0254"+ + "\7t\2\2\u0254\u0255\7w\2\2\u0255\u0256\7r\2\2\u0256\u0257\7v\2\2\u0257"+ + "t\3\2\2\2\u0258\u0259\7t\2\2\u0259\u025a\7g\2\2\u025a\u025b\7i\2\2\u025b"+ + "\u025c\7k\2\2\u025c\u025d\7u\2\2\u025d\u025e\7v\2\2\u025e\u025f\7g\2\2"+ + "\u025f\u0260\7t\2\2\u0260v\3\2\2\2\u0261\u0262\7a\2\2\u0262\u0263\7a\2"+ + "\2\u0263\u0264\7c\2\2\u0264\u0265\7f\2\2\u0265\u0266\7f\2\2\u0266\u0267"+ + "\7t\2\2\u0267\u0268\7g\2\2\u0268\u0269\7u\2\2\u0269\u026a\7u\2\2\u026a"+ + "x\3\2\2\2\u026b\u026c\7a\2\2\u026c\u026d\7a\2\2\u026d\u026e\7|\2\2\u026e"+ + "\u026f\7r\2\2\u026fz\3\2\2\2\u0270\u0271\7a\2\2\u0271\u0272\7a\2\2\u0272"+ + "\u0273\7o\2\2\u0273\u0274\7g\2\2\u0274\u0275\7o\2\2\u0275|\3\2\2\2\u0276"+ + "\u0277\7a\2\2\u0277\u0278\7a\2\2\u0278\u0279\7u\2\2\u0279\u027a\7u\2\2"+ + "\u027a\u027b\7c\2\2\u027b~\3\2\2\2\u027c\u027d\7a\2\2\u027d\u027e\7a\2"+ + "\2\u027e\u027f\7o\2\2\u027f\u0280\7c\2\2\u0280\u0080\3\2\2\2\u0281\u0282"+ + "\7a\2\2\u0282\u0283\7a\2\2\u0283\u0284\7k\2\2\u0284\u0285\7p\2\2\u0285"+ + "\u0286\7v\2\2\u0286\u0287\7t\2\2\u0287\u0288\7k\2\2\u0288\u0289\7p\2\2"+ + "\u0289\u028a\7u\2\2\u028a\u028b\7k\2\2\u028b\u028c\7e\2\2\u028c\u0082"+ + "\3\2\2\2\u028d\u028e\7e\2\2\u028e\u028f\7c\2\2\u028f\u0290\7n\2\2\u0290"+ + "\u0291\7n\2\2\u0291\u0292\7k\2\2\u0292\u0293\7p\2\2\u0293\u0294\7i\2\2"+ + "\u0294\u0084\3\2\2\2\u0295\u0296\7a\2\2\u0296\u0297\7a\2\2\u0297\u0298"+ + "\7u\2\2\u0298\u0299\7v\2\2\u0299\u029a\7c\2\2\u029a\u029b\7e\2\2\u029b"+ + "\u029c\7m\2\2\u029c\u029d\7e\2\2\u029d\u029e\7c\2\2\u029e\u029f\7n\2\2"+ + "\u029f\u02aa\7n\2\2\u02a0\u02a1\7a\2\2\u02a1\u02a2\7a\2\2\u02a2\u02a3"+ + "\7r\2\2\u02a3\u02a4\7j\2\2\u02a4\u02a5\7k\2\2\u02a5\u02a6\7e\2\2\u02a6"+ + "\u02a7\7c\2\2\u02a7\u02a8\7n\2\2\u02a8\u02aa\7n\2\2\u02a9\u0295\3\2\2"+ + "\2\u02a9\u02a0\3\2\2\2\u02aa\u0086\3\2\2\2\u02ab\u02ac\7x\2\2\u02ac\u02ad"+ + "\7c\2\2\u02ad\u02ae\7t\2\2\u02ae\u02af\7a\2\2\u02af\u02b0\7o\2\2\u02b0"+ + "\u02b1\7q\2\2\u02b1\u02b2\7f\2\2\u02b2\u02b3\7g\2\2\u02b3\u02b4\7n\2\2"+ + "\u02b4\u0088\3\2\2\2\u02b5\u02b6\7k\2\2\u02b6\u02b7\7h\2\2\u02b7\u008a"+ + "\3\2\2\2\u02b8\u02b9\7g\2\2\u02b9\u02ba\7n\2\2\u02ba\u02bb\7u\2\2\u02bb"+ + "\u02bc\7g\2\2\u02bc\u008c\3\2\2\2\u02bd\u02be\7y\2\2\u02be\u02bf\7j\2"+ + "\2\u02bf\u02c0\7k\2\2\u02c0\u02c1\7n\2\2\u02c1\u02c2\7g\2\2\u02c2\u008e"+ + "\3\2\2\2\u02c3\u02c4\7f\2\2\u02c4\u02c5\7q\2\2\u02c5\u0090\3\2\2\2\u02c6"+ + "\u02c7\7h\2\2\u02c7\u02c8\7q\2\2\u02c8\u02c9\7t\2\2\u02c9\u0092\3\2\2"+ + "\2\u02ca\u02cb\7u\2\2\u02cb\u02cc\7y\2\2\u02cc\u02cd\7k\2\2\u02cd\u02ce"+ + "\7v\2\2\u02ce\u02cf\7e\2\2\u02cf\u02d0\7j\2\2\u02d0\u0094\3\2\2\2\u02d1"+ + "\u02d2\7t\2\2\u02d2\u02d3\7g\2\2\u02d3\u02d4\7v\2\2\u02d4\u02d5\7w\2\2"+ + "\u02d5\u02d6\7t\2\2\u02d6\u02d7\7p\2\2\u02d7\u0096\3\2\2\2\u02d8\u02d9"+ + "\7d\2\2\u02d9\u02da\7t\2\2\u02da\u02db\7g\2\2\u02db\u02dc\7c\2\2\u02dc"+ + "\u02dd\7m\2\2\u02dd\u0098\3\2\2\2\u02de\u02df\7e\2\2\u02df\u02e0\7q\2"+ + "\2\u02e0\u02e1\7p\2\2\u02e1\u02e2\7v\2\2\u02e2\u02e3\7k\2\2\u02e3\u02e4"+ + "\7p\2\2\u02e4\u02e5\7w\2\2\u02e5\u02e6\7g\2\2\u02e6\u009a\3\2\2\2\u02e7"+ + "\u02e8\7c\2\2\u02e8\u02e9\7u\2\2\u02e9\u02ea\7o\2\2\u02ea\u02eb\3\2\2"+ + "\2\u02eb\u02ec\bM\3\2\u02ec\u009c\3\2\2\2\u02ed\u02ee\7f\2\2\u02ee\u02ef"+ + "\7g\2\2\u02ef\u02f0\7h\2\2\u02f0\u02f1\7c\2\2\u02f1\u02f2\7w\2\2\u02f2"+ + "\u02f3\7n\2\2\u02f3\u02f4\7v\2\2\u02f4\u009e\3\2\2\2\u02f5\u02f6\7e\2"+ + "\2\u02f6\u02f7\7c\2\2\u02f7\u02f8\7u\2\2\u02f8\u02f9\7g\2\2\u02f9\u00a0"+ + "\3\2\2\2\u02fa\u02fb\7u\2\2\u02fb\u02fc\7v\2\2\u02fc\u02fd\7t\2\2\u02fd"+ + "\u02fe\7w\2\2\u02fe\u02ff\7e\2\2\u02ff\u0300\7v\2\2\u0300\u00a2\3\2\2"+ + "\2\u0301\u0302\7g\2\2\u0302\u0303\7p\2\2\u0303\u0304\7w\2\2\u0304\u0305"+ + "\7o\2\2\u0305\u00a4\3\2\2\2\u0306\u0307\7u\2\2\u0307\u0308\7k\2\2\u0308"+ + "\u0309\7|\2\2\u0309\u030a\7g\2\2\u030a\u030b\7q\2\2\u030b\u030c\7h\2\2"+ + "\u030c\u00a6\3\2\2\2\u030d\u030e\7v\2\2\u030e\u030f\7{\2\2\u030f\u0310"+ + "\7r\2\2\u0310\u0311\7g\2\2\u0311\u0312\7k\2\2\u0312\u0313\7f\2\2\u0313"+ + "\u00a8\3\2\2\2\u0314\u0315\7f\2\2\u0315\u0316\7g\2\2\u0316\u0317\7h\2"+ + "\2\u0317\u0318\7k\2\2\u0318\u0319\7p\2\2\u0319\u031a\7g\2\2\u031a\u031b"+ + "\7f\2\2\u031b\u00aa\3\2\2\2\u031c\u031d\7m\2\2\u031d\u031e\7k\2\2\u031e"+ + "\u031f\7e\2\2\u031f\u0320\7m\2\2\u0320\u0321\7c\2\2\u0321\u0322\7u\2\2"+ + "\u0322\u0323\7o\2\2\u0323\u00ac\3\2\2\2\u0324\u0325\7t\2\2\u0325\u0326"+ + "\7g\2\2\u0326\u0327\7u\2\2\u0327\u0328\7q\2\2\u0328\u0329\7w\2\2\u0329"+ + "\u032a\7t\2\2\u032a\u032b\7e\2\2\u032b\u032c\7g\2\2\u032c\u00ae\3\2\2"+ + "\2\u032d\u032e\7w\2\2\u032e\u032f\7u\2\2\u032f\u0330\7g\2\2\u0330\u0331"+ + "\7u\2\2\u0331\u00b0\3\2\2\2\u0332\u0333\7e\2\2\u0333\u0334\7n\2\2\u0334"+ + "\u0335\7q\2\2\u0335\u0336\7d\2\2\u0336\u0337\7d\2\2\u0337\u0338\7g\2\2"+ + "\u0338\u0339\7t\2\2\u0339\u033a\7u\2\2\u033a\u00b2\3\2\2\2\u033b\u033c"+ + "\7d\2\2\u033c\u033d\7{\2\2\u033d\u033e\7v\2\2\u033e\u033f\7g\2\2\u033f"+ + "\u0340\7u\2\2\u0340\u00b4\3\2\2\2\u0341\u0342\7e\2\2\u0342\u0343\7{\2"+ + "\2\u0343\u0344\7e\2\2\u0344\u0345\7n\2\2\u0345\u0346\7g\2\2\u0346\u0347"+ + "\7u\2\2\u0347\u00b6\3\2\2\2\u0348\u0349\7#\2\2\u0349\u00b8\3\2\2\2\u034a"+ + "\u034b\7u\2\2\u034b\u034c\7k\2\2\u034c\u034d\7i\2\2\u034d\u034e\7p\2\2"+ + "\u034e\u034f\7g\2\2\u034f\u0359\7f\2\2\u0350\u0351\7w\2\2\u0351\u0352"+ + "\7p\2\2\u0352\u0353\7u\2\2\u0353\u0354\7k\2\2\u0354\u0355\7i\2\2\u0355"+ + "\u0356\7p\2\2\u0356\u0357\7g\2\2\u0357\u0359\7f\2\2\u0358\u034a\3\2\2"+ + "\2\u0358\u0350\3\2\2\2\u0359\u00ba\3\2\2\2\u035a\u035b\7d\2\2\u035b\u035c"+ + "\7{\2\2\u035c\u035d\7v\2\2\u035d\u0380\7g\2\2\u035e\u035f\7y\2\2\u035f"+ + "\u0360\7q\2\2\u0360\u0361\7t\2\2\u0361\u0380\7f\2\2\u0362\u0363\7f\2\2"+ + "\u0363\u0364\7y\2\2\u0364\u0365\7q\2\2\u0365\u0366\7t\2\2\u0366\u0380"+ + "\7f\2\2\u0367\u0368\7d\2\2\u0368\u0369\7q\2\2\u0369\u036a\7q\2\2\u036a"+ + "\u0380\7n\2\2\u036b\u036c\7e\2\2\u036c\u036d\7j\2\2\u036d\u036e\7c\2\2"+ + "\u036e\u0380\7t\2\2\u036f\u0370\7u\2\2\u0370\u0371\7j\2\2\u0371\u0372"+ + "\7q\2\2\u0372\u0373\7t\2\2\u0373\u0380\7v\2\2\u0374\u0375\7k\2\2\u0375"+ + "\u0376\7p\2\2\u0376\u0380\7v\2\2\u0377\u0378\7n\2\2\u0378\u0379\7q\2\2"+ + "\u0379\u037a\7p\2\2\u037a\u0380\7i\2\2\u037b\u037c\7x\2\2\u037c\u037d"+ + "\7q\2\2\u037d\u037e\7k\2\2\u037e\u0380\7f\2\2\u037f\u035a\3\2\2\2\u037f"+ + "\u035e\3\2\2\2\u037f\u0362\3\2\2\2\u037f\u0367\3\2\2\2\u037f\u036b\3\2"+ + "\2\2\u037f\u036f\3\2\2\2\u037f\u0374\3\2\2\2\u037f\u0377\3\2\2\2\u037f"+ + "\u037b\3\2\2\2\u0380\u00bc\3\2\2\2\u0381\u0382\7v\2\2\u0382\u0383\7t\2"+ + "\2\u0383\u0384\7w\2\2\u0384\u038b\7g\2\2\u0385\u0386\7h\2\2\u0386\u0387"+ + "\7c\2\2\u0387\u0388\7n\2\2\u0388\u0389\7u\2\2\u0389\u038b\7g\2\2\u038a"+ + "\u0381\3\2\2\2\u038a\u0385\3\2\2\2\u038b\u00be\3\2\2\2\u038c\u038d\7}"+ + "\2\2\u038d\u038e\7}\2\2\u038e\u0392\3\2\2\2\u038f\u0391\13\2\2\2\u0390"+ + "\u038f\3\2\2\2\u0391\u0394\3\2\2\2\u0392\u0393\3\2\2\2\u0392\u0390\3\2"+ + "\2\2\u0393\u0395\3\2\2\2\u0394\u0392\3\2\2\2\u0395\u0396\7\177\2\2\u0396"+ + "\u0397\7\177\2\2\u0397\u00c0\3\2\2\2\u0398\u0399\7%\2\2\u0399\u039a\7"+ + "k\2\2\u039a\u039b\7o\2\2\u039b\u039c\7r\2\2\u039c\u039d\7q\2\2\u039d\u039e"+ + "\7t\2\2\u039e\u039f\7v\2\2\u039f\u03a0\3\2\2\2\u03a0\u03a1\b`\4\2\u03a1"+ + "\u00c2\3\2\2\2\u03a2\u03a3\7%\2\2\u03a3\u03a4\7k\2\2\u03a4\u03a5\7p\2"+ + "\2\u03a5\u03a6\7e\2\2\u03a6\u03a7\7n\2\2\u03a7\u03a8\7w\2\2\u03a8\u03a9"+ + "\7f\2\2\u03a9\u03aa\7g\2\2\u03aa\u03ab\3\2\2\2\u03ab\u03ac\ba\5\2\u03ac"+ + "\u00c4\3\2\2\2\u03ad\u03ae\7%\2\2\u03ae\u03af\7r\2\2\u03af\u03b0\7t\2"+ + "\2\u03b0\u03b1\7c\2\2\u03b1\u03b2\7i\2\2\u03b2\u03b3\7o\2\2\u03b3\u03b4"+ + "\7c\2\2\u03b4\u00c6\3\2\2\2\u03b5\u03b6\7%\2\2\u03b6\u03b7\7f\2\2\u03b7"+ + "\u03b8\7g\2\2\u03b8\u03b9\7h\2\2\u03b9\u03ba\7k\2\2\u03ba\u03bb\7p\2\2"+ + "\u03bb\u03bc\7g\2\2\u03bc\u00c8\3\2\2\2\u03bd\u03be\7^\2\2\u03be\u03c3"+ + "\7\f\2\2\u03bf\u03c0\7^\2\2\u03c0\u03c1\7\17\2\2\u03c1\u03c3\7\f\2\2\u03c2"+ + "\u03bd\3\2\2\2\u03c2\u03bf\3\2\2\2\u03c3\u00ca\3\2\2\2\u03c4\u03c5\7%"+ + "\2\2\u03c5\u03c6\7w\2\2\u03c6\u03c7\7p\2\2\u03c7\u03c8\7f\2\2\u03c8\u03c9"+ + "\7g\2\2\u03c9\u03ca\7h\2\2\u03ca\u00cc\3\2\2\2\u03cb\u03cc\7%\2\2\u03cc"+ + "\u03cd\7k\2\2\u03cd\u03ce\7h\2\2\u03ce\u03cf\7f\2\2\u03cf\u03d0\7g\2\2"+ + "\u03d0\u03d1\7h\2\2\u03d1\u00ce\3\2\2\2\u03d2\u03d3\7%\2\2\u03d3\u03d4"+ + "\7k\2\2\u03d4\u03d5\7h\2\2\u03d5\u03d6\7p\2\2\u03d6\u03d7\7f\2\2\u03d7"+ + "\u03d8\7g\2\2\u03d8\u03d9\7h\2\2\u03d9\u00d0\3\2\2\2\u03da\u03db\7%\2"+ + "\2\u03db\u03dc\7k\2\2\u03dc\u03dd\7h\2\2\u03dd\u00d2\3\2\2\2\u03de\u03df"+ + "\7%\2\2\u03df\u03e0\7g\2\2\u03e0\u03e1\7n\2\2\u03e1\u03e2\7k\2\2\u03e2"+ + "\u03e3\7h\2\2\u03e3\u00d4\3\2\2\2\u03e4\u03e5\7%\2\2\u03e5\u03e6\7g\2"+ + "\2\u03e6\u03e7\7n\2\2\u03e7\u03e8\7u\2\2\u03e8\u03e9\7g\2\2\u03e9\u00d6"+ + "\3\2\2\2\u03ea\u03eb\7%\2\2\u03eb\u03ec\7g\2\2\u03ec\u03ed\7p\2\2\u03ed"+ + "\u03ee\7f\2\2\u03ee\u03ef\7k\2\2\u03ef\u03f0\7h\2\2\u03f0\u00d8\3\2\2"+ + "\2\u03f1\u03f4\5\u00dbm\2\u03f2\u03f4\5\u00e3q\2\u03f3\u03f1\3\2\2\2\u03f3"+ + "\u03f2\3\2\2\2\u03f4\u00da\3\2\2\2\u03f5\u03f9\5\u00ddn\2\u03f6\u03f9"+ + "\5\u00dfo\2\u03f7\u03f9\5\u00e1p\2\u03f8\u03f5\3\2\2\2\u03f8\u03f6\3\2"+ + "\2\2\u03f8\u03f7\3\2\2\2\u03f9\u00dc\3\2\2\2\u03fa\u0400\7\'\2\2\u03fb"+ + "\u03fc\7\62\2\2\u03fc\u0400\7d\2\2\u03fd\u03fe\7\62\2\2\u03fe\u0400\7"+ + "D\2\2\u03ff\u03fa\3\2\2\2\u03ff\u03fb\3\2\2\2\u03ff\u03fd\3\2\2\2\u0400"+ + "\u0404\3\2\2\2\u0401\u0403\5\u00ebu\2\u0402\u0401\3\2\2\2\u0403\u0406"+ + "\3\2\2\2\u0404\u0402\3\2\2\2\u0404\u0405\3\2\2\2\u0405\u0407\3\2\2\2\u0406"+ + "\u0404\3\2\2\2\u0407\u0409\7\60\2\2\u0408\u040a\5\u00ebu\2\u0409\u0408"+ + "\3\2\2\2\u040a\u040b\3\2\2\2\u040b\u0409\3\2\2\2\u040b\u040c\3\2\2\2\u040c"+ + "\u00de\3\2\2\2\u040d\u040f\5\u00edv\2\u040e\u040d\3\2\2\2\u040f\u0412"+ + "\3\2\2\2\u0410\u040e\3\2\2\2\u0410\u0411\3\2\2\2\u0411\u0413\3\2\2\2\u0412"+ + "\u0410\3\2\2\2\u0413\u0415\7\60\2\2\u0414\u0416\5\u00edv\2\u0415\u0414"+ + "\3\2\2\2\u0416\u0417\3\2\2\2\u0417\u0415\3\2\2\2\u0417\u0418\3\2\2\2\u0418"+ + "\u00e0\3\2\2\2\u0419\u041f\7&\2\2\u041a\u041b\7\62\2\2\u041b\u041f\7z"+ + "\2\2\u041c\u041d\7\62\2\2\u041d\u041f\7Z\2\2\u041e\u0419\3\2\2\2\u041e"+ + "\u041a\3\2\2\2\u041e\u041c\3\2\2\2\u041f\u0423\3\2\2\2\u0420\u0422\5\u00ef"+ + "w\2\u0421\u0420\3\2\2\2\u0422\u0425\3\2\2\2\u0423\u0421\3\2\2\2\u0423"+ + "\u0424\3\2\2\2\u0424\u0426\3\2\2\2\u0425\u0423\3\2\2\2\u0426\u0428\7\60"+ + "\2\2\u0427\u0429\5\u00efw\2\u0428\u0427\3\2\2\2\u0429\u042a\3\2\2\2\u042a"+ + "\u0428\3\2\2\2\u042a\u042b\3\2\2\2\u042b\u00e2\3\2\2\2\u042c\u0430\5\u00e7"+ + "s\2\u042d\u0430\5\u00e9t\2\u042e\u0430\5\u00e5r\2\u042f\u042c\3\2\2\2"+ + "\u042f\u042d\3\2\2\2\u042f\u042e\3\2\2\2\u0430\u0434\3\2\2\2\u0431\u0432"+ + "\t\2\2\2\u0432\u0435\t\3\2\2\u0433\u0435\7n\2\2\u0434\u0431\3\2\2\2\u0434"+ + "\u0433\3\2\2\2\u0434\u0435\3\2\2\2\u0435\u00e4\3\2\2\2\u0436\u0437\7\62"+ + "\2\2\u0437\u0439\t\4\2\2\u0438\u043a\5\u00ebu\2\u0439\u0438\3\2\2\2\u043a"+ + "\u043b\3\2\2\2\u043b\u0439\3\2\2\2\u043b\u043c\3\2\2\2\u043c\u0444\3\2"+ + "\2\2\u043d\u043f\7\'\2\2\u043e\u0440\5\u00ebu\2\u043f\u043e\3\2\2\2\u0440"+ + "\u0441\3\2\2\2\u0441\u043f\3\2\2\2\u0441\u0442\3\2\2\2\u0442\u0444\3\2"+ + "\2\2\u0443\u0436\3\2\2\2\u0443\u043d\3\2\2\2\u0444\u00e6\3\2\2\2\u0445"+ + "\u0447\5\u00edv\2\u0446\u0445\3\2\2\2\u0447\u0448\3\2\2\2\u0448\u0446"+ + "\3\2\2\2\u0448\u0449\3\2\2\2\u0449\u00e8\3\2\2\2\u044a\u0450\7&\2\2\u044b"+ + "\u044c\7\62\2\2\u044c\u0450\7z\2\2\u044d\u044e\7\62\2\2\u044e\u0450\7"+ + "Z\2\2\u044f\u044a\3\2\2\2\u044f\u044b\3\2\2\2\u044f\u044d\3\2\2\2\u0450"+ + "\u0452\3\2\2\2\u0451\u0453\5\u00efw\2\u0452\u0451\3\2\2\2\u0453\u0454"+ + "\3\2\2\2\u0454\u0452\3\2\2\2\u0454\u0455\3\2\2\2\u0455\u00ea\3\2\2\2\u0456"+ + "\u0457\t\5\2\2\u0457\u00ec\3\2\2\2\u0458\u0459\t\6\2\2\u0459\u00ee\3\2"+ + "\2\2\u045a\u045b\t\7\2\2\u045b\u00f0\3\2\2\2\u045c\u0460\5\u00f3y\2\u045d"+ + "\u045f\5\u00f5z\2\u045e\u045d\3\2\2\2\u045f\u0462\3\2\2\2\u0460\u045e"+ + "\3\2\2\2\u0460\u0461\3\2\2\2\u0461\u0463\3\2\2\2\u0462\u0460\3\2\2\2\u0463"+ + "\u0464\bx\6\2\u0464\u00f2\3\2\2\2\u0465\u0466\t\b\2\2\u0466\u00f4\3\2"+ + "\2\2\u0467\u0468\t\t\2\2\u0468\u00f6\3\2\2\2\u0469\u046f\7$\2\2\u046a"+ + "\u046b\7^\2\2\u046b\u046e\7$\2\2\u046c\u046e\n\n\2\2\u046d\u046a\3\2\2"+ + "\2\u046d\u046c\3\2\2\2\u046e\u0471\3\2\2\2\u046f\u046d\3\2\2\2\u046f\u0470"+ + "\3\2\2\2\u0470\u0472\3\2\2\2\u0471\u046f\3\2\2\2\u0472\u0474\7$\2\2\u0473"+ + "\u0475\t\13\2\2\u0474\u0473\3\2\2\2\u0474\u0475\3\2\2\2\u0475\u047a\3"+ + "\2\2\2\u0476\u0478\t\f\2\2\u0477\u0479\t\r\2\2\u0478\u0477\3\2\2\2\u0478"+ + "\u0479\3\2\2\2\u0479\u047b\3\2\2\2\u047a\u0476\3\2\2\2\u047a\u047b\3\2"+ + "\2\2\u047b\u047d\3\2\2\2\u047c\u047e\t\13\2\2\u047d\u047c\3\2\2\2\u047d"+ + "\u047e\3\2\2\2\u047e\u00f8\3\2\2\2\u047f\u0488\7)\2\2\u0480\u0485\7^\2"+ + "\2\u0481\u0486\t\16\2\2\u0482\u0483\7z\2\2\u0483\u0484\t\17\2\2\u0484"+ + "\u0486\t\17\2\2\u0485\u0481\3\2\2\2\u0485\u0482\3\2\2\2\u0486\u0489\3"+ + "\2\2\2\u0487\u0489\n\20\2\2\u0488\u0480\3\2\2\2\u0488\u0487\3\2\2\2\u0489"+ + "\u048a\3\2\2\2\u048a\u048b\7)\2\2\u048b\u00fa\3\2\2\2\u048c\u048e\t\21"+ + "\2\2\u048d\u048c\3\2\2\2\u048e\u048f\3\2\2\2\u048f\u048d\3\2\2\2\u048f"+ + "\u0490\3\2\2\2\u0490\u0491\3\2\2\2\u0491\u0492\b}\7\2\u0492\u00fc\3\2"+ + "\2\2\u0493\u0494\7\61\2\2\u0494\u0495\7\61\2\2\u0495\u0499\3\2\2\2\u0496"+ + "\u0498\n\22\2\2\u0497\u0496\3\2\2\2\u0498\u049b\3\2\2\2\u0499\u0497\3"+ + "\2\2\2\u0499\u049a\3\2\2\2\u049a\u049c\3\2\2\2\u049b\u0499\3\2\2\2\u049c"+ + "\u049d\b~\b\2\u049d\u00fe\3\2\2\2\u049e\u049f\7\61\2\2\u049f\u04a0\7,"+ + "\2\2\u04a0\u04a4\3\2\2\2\u04a1\u04a3\13\2\2\2\u04a2\u04a1\3\2\2\2\u04a3"+ + "\u04a6\3\2\2\2\u04a4\u04a5\3\2\2\2\u04a4\u04a2\3\2\2\2\u04a5\u04a7\3\2"+ + "\2\2\u04a6\u04a4\3\2\2\2\u04a7\u04a8\7,\2\2\u04a8\u04a9\7\61\2\2\u04a9"+ + "\u04aa\3\2\2\2\u04aa\u04ab\b\177\b\2\u04ab\u0100\3\2\2\2\u04ac\u04ad\7"+ + "\60\2\2\u04ad\u04ae\7d\2\2\u04ae\u04af\7{\2\2\u04af\u04b0\7v\2\2\u04b0"+ + "\u04b1\7g\2\2\u04b1\u0102\3\2\2\2\u04b2\u04b3\7d\2\2\u04b3\u04b4\7t\2"+ + "\2\u04b4\u0591\7m\2\2\u04b5\u04b6\7q\2\2\u04b6\u04b7\7t\2\2\u04b7\u0591"+ + "\7c\2\2\u04b8\u04b9\7m\2\2\u04b9\u04ba\7k\2\2\u04ba\u0591\7n\2\2\u04bb"+ + "\u04bc\7u\2\2\u04bc\u04bd\7n\2\2\u04bd\u0591\7q\2\2\u04be\u04bf\7p\2\2"+ + "\u04bf\u04c0\7q\2\2\u04c0\u0591\7r\2\2\u04c1\u04c2\7c\2\2\u04c2\u04c3"+ + "\7u\2\2\u04c3\u0591\7n\2\2\u04c4\u04c5\7r\2\2\u04c5\u04c6\7j\2\2\u04c6"+ + "\u0591\7r\2\2\u04c7\u04c8\7c\2\2\u04c8\u04c9\7p\2\2\u04c9\u0591\7e\2\2"+ + "\u04ca\u04cb\7d\2\2\u04cb\u04cc\7r\2\2\u04cc\u0591\7n\2\2\u04cd\u04ce"+ + "\7e\2\2\u04ce\u04cf\7n\2\2\u04cf\u0591\7e\2\2\u04d0\u04d1\7l\2\2\u04d1"+ + "\u04d2\7u\2\2\u04d2\u0591\7t\2\2\u04d3\u04d4\7c\2\2\u04d4\u04d5\7p\2\2"+ + "\u04d5\u0591\7f\2\2\u04d6\u04d7\7t\2\2\u04d7\u04d8\7n\2\2\u04d8\u0591"+ + "\7c\2\2\u04d9\u04da\7d\2\2\u04da\u04db\7k\2\2\u04db\u0591\7v\2\2\u04dc"+ + "\u04dd\7t\2\2\u04dd\u04de\7q\2\2\u04de\u0591\7n\2\2\u04df\u04e0\7r\2\2"+ + "\u04e0\u04e1\7n\2\2\u04e1\u0591\7c\2\2\u04e2\u04e3\7r\2\2\u04e3\u04e4"+ + "\7n\2\2\u04e4\u0591\7r\2\2\u04e5\u04e6\7d\2\2\u04e6\u04e7\7o\2\2\u04e7"+ + "\u0591\7k\2\2\u04e8\u04e9\7u\2\2\u04e9\u04ea\7g\2\2\u04ea\u0591\7e\2\2"+ + "\u04eb\u04ec\7t\2\2\u04ec\u04ed\7v\2\2\u04ed\u0591\7k\2\2\u04ee\u04ef"+ + "\7g\2\2\u04ef\u04f0\7q\2\2\u04f0\u0591\7t\2\2\u04f1\u04f2\7u\2\2\u04f2"+ + "\u04f3\7t\2\2\u04f3\u0591\7g\2\2\u04f4\u04f5\7n\2\2\u04f5\u04f6\7u\2\2"+ + "\u04f6\u0591\7t\2\2\u04f7\u04f8\7r\2\2\u04f8\u04f9\7j\2\2\u04f9\u0591"+ + "\7c\2\2\u04fa\u04fb\7c\2\2\u04fb\u04fc\7n\2\2\u04fc\u0591\7t\2\2\u04fd"+ + "\u04fe\7l\2\2\u04fe\u04ff\7o\2\2\u04ff\u0591\7r\2\2\u0500\u0501\7d\2\2"+ + "\u0501\u0502\7x\2\2\u0502\u0591\7e\2\2\u0503\u0504\7e\2\2\u0504\u0505"+ + "\7n\2\2\u0505\u0591\7k\2\2\u0506\u0507\7t\2\2\u0507\u0508\7v\2\2\u0508"+ + "\u0591\7u\2\2\u0509\u050a\7c\2\2\u050a\u050b\7f\2\2\u050b\u0591\7e\2\2"+ + "\u050c\u050d\7t\2\2\u050d\u050e\7t\2\2\u050e\u0591\7c\2\2\u050f\u0510"+ + "\7d\2\2\u0510\u0511\7x\2\2\u0511\u0591\7u\2\2\u0512\u0513\7u\2\2\u0513"+ + "\u0514\7g\2\2\u0514\u0591\7k\2\2\u0515\u0516\7u\2\2\u0516\u0517\7c\2\2"+ + "\u0517\u0591\7z\2\2\u0518\u0519\7u\2\2\u0519\u051a\7v\2\2\u051a\u0591"+ + "\7{\2\2\u051b\u051c\7u\2\2\u051c\u051d\7v\2\2\u051d\u0591\7c\2\2\u051e"+ + "\u051f\7u\2\2\u051f\u0520\7v\2\2\u0520\u0591\7z\2\2\u0521\u0522\7f\2\2"+ + "\u0522\u0523\7g\2\2\u0523\u0591\7{\2\2\u0524\u0525\7v\2\2\u0525\u0526"+ + "\7z\2\2\u0526\u0591\7c\2\2\u0527\u0528\7z\2\2\u0528\u0529\7c\2\2\u0529"+ + "\u0591\7c\2\2\u052a\u052b\7d\2\2\u052b\u052c\7e\2\2\u052c\u0591\7e\2\2"+ + "\u052d\u052e\7c\2\2\u052e\u052f\7j\2\2\u052f\u0591\7z\2\2\u0530\u0531"+ + "\7v\2\2\u0531\u0532\7{\2\2\u0532\u0591\7c\2\2\u0533\u0534\7v\2\2\u0534"+ + "\u0535\7z\2\2\u0535\u0591\7u\2\2\u0536\u0537\7v\2\2\u0537\u0538\7c\2\2"+ + "\u0538\u0591\7u\2\2\u0539\u053a\7u\2\2\u053a\u053b\7j\2\2\u053b\u0591"+ + "\7{\2\2\u053c\u053d\7u\2\2\u053d\u053e\7j\2\2\u053e\u0591\7z\2\2\u053f"+ + "\u0540\7n\2\2\u0540\u0541\7f\2\2\u0541\u0591\7{\2\2\u0542\u0543\7n\2\2"+ + "\u0543\u0544\7f\2\2\u0544\u0591\7c\2\2\u0545\u0546\7n\2\2\u0546\u0547"+ + "\7f\2\2\u0547\u0591\7z\2\2\u0548\u0549\7n\2\2\u0549\u054a\7c\2\2\u054a"+ + "\u0591\7z\2\2\u054b\u054c\7v\2\2\u054c\u054d\7c\2\2\u054d\u0591\7{\2\2"+ + "\u054e\u054f\7v\2\2\u054f\u0550\7c\2\2\u0550\u0591\7z\2\2\u0551\u0552"+ + "\7d\2\2\u0552\u0553\7e\2\2\u0553\u0591\7u\2\2\u0554\u0555\7e\2\2\u0555"+ + "\u0556\7n\2\2\u0556\u0591\7x\2\2\u0557\u0558\7v\2\2\u0558\u0559\7u\2\2"+ + "\u0559\u0591\7z\2\2\u055a\u055b\7n\2\2\u055b\u055c\7c\2\2\u055c\u0591"+ + "\7u\2\2\u055d\u055e\7e\2\2\u055e\u055f\7r\2\2\u055f\u0591\7{\2\2\u0560"+ + "\u0561\7e\2\2\u0561\u0562\7o\2\2\u0562\u0591\7r\2\2\u0563\u0564\7e\2\2"+ + "\u0564\u0565\7r\2\2\u0565\u0591\7z\2\2\u0566\u0567\7f\2\2\u0567\u0568"+ + "\7e\2\2\u0568\u0591\7r\2\2\u0569\u056a\7f\2\2\u056a\u056b\7g\2\2\u056b"+ + "\u0591\7e\2\2\u056c\u056d\7k\2\2\u056d\u056e\7p\2\2\u056e\u0591\7e\2\2"+ + "\u056f\u0570\7c\2\2\u0570\u0571\7z\2\2\u0571\u0591\7u\2\2\u0572\u0573"+ + "\7d\2\2\u0573\u0574\7p\2\2\u0574\u0591\7g\2\2\u0575\u0576\7e\2\2\u0576"+ + "\u0577\7n\2\2\u0577\u0591\7f\2\2\u0578\u0579\7u\2\2\u0579\u057a\7d\2\2"+ + "\u057a\u0591\7e\2\2\u057b\u057c\7k\2\2\u057c\u057d\7u\2\2\u057d\u0591"+ + "\7e\2\2\u057e\u057f\7k\2\2\u057f\u0580\7p\2\2\u0580\u0591\7z\2\2\u0581"+ + "\u0582\7d\2\2\u0582\u0583\7g\2\2\u0583\u0591\7s\2\2\u0584\u0585\7u\2\2"+ + "\u0585\u0586\7g\2\2\u0586\u0591\7f\2\2\u0587\u0588\7f\2\2\u0588\u0589"+ + "\7g\2\2\u0589\u0591\7z\2\2\u058a\u058b\7k\2\2\u058b\u058c\7p\2\2\u058c"+ + "\u0591\7{\2\2\u058d\u058e\7t\2\2\u058e\u058f\7q\2\2\u058f\u0591\7t\2\2"+ + "\u0590\u04b2\3\2\2\2\u0590\u04b5\3\2\2\2\u0590\u04b8\3\2\2\2\u0590\u04bb"+ + "\3\2\2\2\u0590\u04be\3\2\2\2\u0590\u04c1\3\2\2\2\u0590\u04c4\3\2\2\2\u0590"+ + "\u04c7\3\2\2\2\u0590\u04ca\3\2\2\2\u0590\u04cd\3\2\2\2\u0590\u04d0\3\2"+ + "\2\2\u0590\u04d3\3\2\2\2\u0590\u04d6\3\2\2\2\u0590\u04d9\3\2\2\2\u0590"+ + "\u04dc\3\2\2\2\u0590\u04df\3\2\2\2\u0590\u04e2\3\2\2\2\u0590\u04e5\3\2"+ + "\2\2\u0590\u04e8\3\2\2\2\u0590\u04eb\3\2\2\2\u0590\u04ee\3\2\2\2\u0590"+ + "\u04f1\3\2\2\2\u0590\u04f4\3\2\2\2\u0590\u04f7\3\2\2\2\u0590\u04fa\3\2"+ + "\2\2\u0590\u04fd\3\2\2\2\u0590\u0500\3\2\2\2\u0590\u0503\3\2\2\2\u0590"+ + "\u0506\3\2\2\2\u0590\u0509\3\2\2\2\u0590\u050c\3\2\2\2\u0590\u050f\3\2"+ + "\2\2\u0590\u0512\3\2\2\2\u0590\u0515\3\2\2\2\u0590\u0518\3\2\2\2\u0590"+ + "\u051b\3\2\2\2\u0590\u051e\3\2\2\2\u0590\u0521\3\2\2\2\u0590\u0524\3\2"+ + "\2\2\u0590\u0527\3\2\2\2\u0590\u052a\3\2\2\2\u0590\u052d\3\2\2\2\u0590"+ + "\u0530\3\2\2\2\u0590\u0533\3\2\2\2\u0590\u0536\3\2\2\2\u0590\u0539\3\2"+ + "\2\2\u0590\u053c\3\2\2\2\u0590\u053f\3\2\2\2\u0590\u0542\3\2\2\2\u0590"+ + "\u0545\3\2\2\2\u0590\u0548\3\2\2\2\u0590\u054b\3\2\2\2\u0590\u054e\3\2"+ + "\2\2\u0590\u0551\3\2\2\2\u0590\u0554\3\2\2\2\u0590\u0557\3\2\2\2\u0590"+ + "\u055a\3\2\2\2\u0590\u055d\3\2\2\2\u0590\u0560\3\2\2\2\u0590\u0563\3\2"+ + "\2\2\u0590\u0566\3\2\2\2\u0590\u0569\3\2\2\2\u0590\u056c\3\2\2\2\u0590"+ + "\u056f\3\2\2\2\u0590\u0572\3\2\2\2\u0590\u0575\3\2\2\2\u0590\u0578\3\2"+ + "\2\2\u0590\u057b\3\2\2\2\u0590\u057e\3\2\2\2\u0590\u0581\3\2\2\2\u0590"+ + "\u0584\3\2\2\2\u0590\u0587\3\2\2\2\u0590\u058a\3\2\2\2\u0590\u058d\3\2"+ + "\2\2\u0591\u0104\3\2\2\2\u0592\u0593\7%\2\2\u0593\u0106\3\2\2\2\u0594"+ + "\u0595\7<\2\2\u0595\u0108\3\2\2\2\u0596\u0597\7.\2\2\u0597\u010a\3\2\2"+ + "\2\u0598\u0599\7*\2\2\u0599\u010c\3\2\2\2\u059a\u059b\7+\2\2\u059b\u010e"+ + "\3\2\2\2\u059c\u059d\7]\2\2\u059d\u0110\3\2\2\2\u059e\u059f\7_\2\2\u059f"+ + "\u0112\3\2\2\2\u05a0\u05a1\7\60\2\2\u05a1\u0114\3\2\2\2\u05a2\u05a3\7"+ + ">\2\2\u05a3\u05a4\7>\2\2\u05a4\u0116\3\2\2\2\u05a5\u05a6\7@\2\2\u05a6"+ + "\u05a7\7@\2\2\u05a7\u0118\3\2\2\2\u05a8\u05a9\7-\2\2\u05a9\u011a\3\2\2"+ + "\2\u05aa\u05ab\7/\2\2\u05ab\u011c\3\2\2\2\u05ac\u05ad\7>\2\2\u05ad\u011e"+ + "\3\2\2\2\u05ae\u05af\7@\2\2\u05af\u0120\3\2\2\2\u05b0\u05b1\7,\2\2\u05b1"+ + "\u0122\3\2\2\2\u05b2\u05b3\7\61\2\2\u05b3\u0124\3\2\2\2\u05b4\u05b5\7"+ + "}\2\2\u05b5\u05b6\b\u0092\t\2\u05b6\u0126\3\2\2\2\u05b7\u05b8\7\177\2"+ + "\2\u05b8\u05b9\b\u0093\n\2\u05b9\u0128\3\2\2\2\u05ba\u05bd\5\u012b\u0095"+ + "\2\u05bb\u05bd\5\u0133\u0099\2\u05bc\u05ba\3\2\2\2\u05bc\u05bb\3\2\2\2"+ + "\u05bd\u012a\3\2\2\2\u05be\u05c2\5\u012d\u0096\2\u05bf\u05c2\5\u012f\u0097"+ + "\2\u05c0\u05c2\5\u0131\u0098\2\u05c1\u05be\3\2\2\2\u05c1\u05bf\3\2\2\2"+ + "\u05c1\u05c0\3\2\2\2\u05c2\u012c\3\2\2\2\u05c3\u05c7\7\'\2\2\u05c4\u05c6"+ + "\5\u013b\u009d\2\u05c5\u05c4\3\2\2\2\u05c6\u05c9\3\2\2\2\u05c7\u05c5\3"+ + "\2\2\2\u05c7\u05c8\3\2\2\2\u05c8\u05ca\3\2\2\2\u05c9\u05c7\3\2\2\2\u05ca"+ + "\u05cc\7\60\2\2\u05cb\u05cd\5\u013b\u009d\2\u05cc\u05cb\3\2\2\2\u05cd"+ + "\u05ce\3\2\2\2\u05ce\u05cc\3\2\2\2\u05ce\u05cf\3\2\2\2\u05cf\u012e\3\2"+ + "\2\2\u05d0\u05d2\5\u013d\u009e\2\u05d1\u05d0\3\2\2\2\u05d2\u05d5\3\2\2"+ + "\2\u05d3\u05d1\3\2\2\2\u05d3\u05d4\3\2\2\2\u05d4\u05d6\3\2\2\2\u05d5\u05d3"+ + "\3\2\2\2\u05d6\u05d8\7\60\2\2\u05d7\u05d9\5\u013d\u009e\2\u05d8\u05d7"+ + "\3\2\2\2\u05d9\u05da\3\2\2\2\u05da\u05d8\3\2\2\2\u05da\u05db\3\2\2\2\u05db"+ + "\u0130\3\2\2\2\u05dc\u05e0\7&\2\2\u05dd\u05df\5\u013f\u009f\2\u05de\u05dd"+ + "\3\2\2\2\u05df\u05e2\3\2\2\2\u05e0\u05de\3\2\2\2\u05e0\u05e1\3\2\2\2\u05e1"+ + "\u05e3\3\2\2\2\u05e2\u05e0\3\2\2\2\u05e3\u05e5\7\60\2\2\u05e4\u05e6\5"+ + "\u013f\u009f\2\u05e5\u05e4\3\2\2\2\u05e6\u05e7\3\2\2\2\u05e7\u05e5\3\2"+ + "\2\2\u05e7\u05e8\3\2\2\2\u05e8\u0132\3\2\2\2\u05e9\u05ed\5\u0137\u009b"+ + "\2\u05ea\u05ed\5\u0139\u009c\2\u05eb\u05ed\5\u0135\u009a\2\u05ec\u05e9"+ + "\3\2\2\2\u05ec\u05ea\3\2\2\2\u05ec\u05eb\3\2\2\2\u05ed\u0134\3\2\2\2\u05ee"+ + "\u05f0\7\'\2\2\u05ef\u05f1\5\u013b\u009d\2\u05f0\u05ef\3\2\2\2\u05f1\u05f2"+ + "\3\2\2\2\u05f2\u05f0\3\2\2\2\u05f2\u05f3\3\2\2\2\u05f3\u0136\3\2\2\2\u05f4"+ + "\u05f6\5\u013d\u009e\2\u05f5\u05f4\3\2\2\2\u05f6\u05f7\3\2\2\2\u05f7\u05f5"+ + "\3\2\2\2\u05f7\u05f8\3\2\2\2\u05f8\u0138\3\2\2\2\u05f9\u05fb\7&\2\2\u05fa"+ + "\u05fc\5\u013f\u009f\2\u05fb\u05fa\3\2\2\2\u05fc\u05fd\3\2\2\2\u05fd\u05fb"+ + "\3\2\2\2\u05fd\u05fe\3\2\2\2\u05fe\u013a\3\2\2\2\u05ff\u0600\t\5\2\2\u0600"+ + "\u013c\3\2\2\2\u0601\u0602\t\6\2\2\u0602\u013e\3\2\2\2\u0603\u0604\t\7"+ + "\2\2\u0604\u0140\3\2\2\2\u0605\u0609\7)\2\2\u0606\u0607\7^\2\2\u0607\u060a"+ + "\t\16\2\2\u0608\u060a\n\20\2\2\u0609\u0606\3\2\2\2\u0609\u0608\3\2\2\2"+ + "\u060a\u060b\3\2\2\2\u060b\u060c\7)\2\2\u060c\u0142\3\2\2\2\u060d\u060f"+ + "\5\u0145\u00a2\2\u060e\u0610\t\23\2\2\u060f\u060e\3\2\2\2\u0610\u0611"+ + "\3\2\2\2\u0611\u060f\3\2\2\2\u0611\u0612\3\2\2\2\u0612\u0144\3\2\2\2\u0613"+ + "\u0617\7#\2\2\u0614\u0616\5\u014b\u00a5\2\u0615\u0614\3\2\2\2\u0616\u0619"+ + "\3\2\2\2\u0617\u0615\3\2\2\2\u0617\u0618\3\2\2\2\u0618\u0146\3\2\2\2\u0619"+ + "\u0617\3\2\2\2\u061a\u061e\5\u0149\u00a4\2\u061b\u061d\5\u014b\u00a5\2"+ + "\u061c\u061b\3\2\2\2\u061d\u0620\3\2\2\2\u061e\u061c\3\2\2\2\u061e\u061f"+ + "\3\2\2\2\u061f\u0148\3\2\2\2\u0620\u061e\3\2\2\2\u0621\u0622\t\b\2\2\u0622"+ + "\u014a\3\2\2\2\u0623\u0624\t\t\2\2\u0624\u014c\3\2\2\2\u0625\u0627\t\21"+ + "\2\2\u0626\u0625\3\2\2\2\u0627\u0628\3\2\2\2\u0628\u0626\3\2\2\2\u0628"+ + "\u0629\3\2\2\2\u0629\u062a\3\2\2\2\u062a\u062b\b\u00a6\7\2\u062b\u014e"+ + "\3\2\2\2\u062c\u062d\7\61\2\2\u062d\u062e\7\61\2\2\u062e\u0632\3\2\2\2"+ + "\u062f\u0631\n\22\2\2\u0630\u062f\3\2\2\2\u0631\u0634\3\2\2\2\u0632\u0630"+ + "\3\2\2\2\u0632\u0633\3\2\2\2\u0633\u0635\3\2\2\2\u0634\u0632\3\2\2\2\u0635"+ + "\u0636\b\u00a7\b\2\u0636\u0150\3\2\2\2\u0637\u0638\7\61\2\2\u0638\u0639"+ + "\7,\2\2\u0639\u063d\3\2\2\2\u063a\u063c\13\2\2\2\u063b\u063a\3\2\2\2\u063c"+ + "\u063f\3\2\2\2\u063d\u063e\3\2\2\2\u063d\u063b\3\2\2\2\u063e\u0640\3\2"+ + "\2\2\u063f\u063d\3\2\2\2\u0640\u0641\7,\2\2\u0641\u0642\7\61\2\2\u0642"+ + "\u0643\3\2\2\2\u0643\u0644\b\u00a8\b\2\u0644\u0152\3\2\2\2\u0645\u0647"+ + "\7>\2\2\u0646\u0648\t\24\2\2\u0647\u0646\3\2\2\2\u0648\u0649\3\2\2\2\u0649"+ + "\u0647\3\2\2\2\u0649\u064a\3\2\2\2\u064a\u064b\3\2\2\2\u064b\u064c\7@"+ + "\2\2\u064c\u064d\b\u00a9\13\2\u064d\u0154\3\2\2\2\u064e\u0654\7$\2\2\u064f"+ + "\u0650\7^\2\2\u0650\u0653\7$\2\2\u0651\u0653\n\n\2\2\u0652\u064f\3\2\2"+ + "\2\u0652\u0651\3\2\2\2\u0653\u0656\3\2\2\2\u0654\u0652\3\2\2\2\u0654\u0655"+ + "\3\2\2\2\u0655\u0657\3\2\2\2\u0656\u0654\3\2\2\2\u0657\u0658\7$\2\2\u0658"+ + "\u0659\b\u00aa\f\2\u0659\u0156\3\2\2\2\u065a\u065c\t\21\2\2\u065b\u065a"+ + "\3\2\2\2\u065c\u065d\3\2\2\2\u065d\u065b\3\2\2\2\u065d\u065e\3\2\2\2\u065e"+ + "\u065f\3\2\2\2\u065f\u0660\b\u00ab\7\2\u0660\u0158\3\2\2\2\u0661\u0662"+ + "\7\61\2\2\u0662\u0663\7\61\2\2\u0663\u0667\3\2\2\2\u0664\u0666\n\22\2"+ + "\2\u0665\u0664\3\2\2\2\u0666\u0669\3\2\2\2\u0667\u0665\3\2\2\2\u0667\u0668"+ + "\3\2\2\2\u0668\u066a\3\2\2\2\u0669\u0667\3\2\2\2\u066a\u066b\b\u00ac\b"+ + "\2\u066b\u015a\3\2\2\2\u066c\u066d\7\61\2\2\u066d\u066e\7,\2\2\u066e\u0672"+ + "\3\2\2\2\u066f\u0671\13\2\2\2\u0670\u066f\3\2\2\2\u0671\u0674\3\2\2\2"+ + "\u0672\u0673\3\2\2\2\u0672\u0670\3\2\2\2\u0673\u0675\3\2\2\2\u0674\u0672"+ + "\3\2\2\2\u0675\u0676\7,\2\2\u0676\u0677\7\61\2\2\u0677\u0678\3\2\2\2\u0678"+ + "\u0679\b\u00ad\b\2\u0679\u015c\3\2\2\2D\2\3\4\u01ca\u02a9\u0358\u037f"+ + "\u038a\u0392\u03c2\u03f3\u03f8\u03ff\u0404\u040b\u0410\u0417\u041e\u0423"+ + "\u042a\u042f\u0434\u043b\u0441\u0443\u0448\u044f\u0454\u0460\u046d\u046f"+ + "\u0474\u0478\u047a\u047d\u0485\u0488\u048f\u0499\u04a4\u0590\u05bc\u05c1"+ + "\u05c7\u05ce\u05d3\u05da\u05e0\u05e7\u05ec\u05f2\u05f7\u05fd\u0609\u0611"+ + "\u0617\u061e\u0628\u0632\u063d\u0649\u0652\u0654\u065d\u0667\u0672\r\3"+ + "\2\2\3M\3\3`\4\3a\5\3x\6\2\3\2\2\4\2\3\u0092\7\3\u0093\b\3\u00a9\t\3\u00aa"+ + "\n"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens index 57fa1a354..506086c67 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCLexer.tokens @@ -41,125 +41,126 @@ RESERVE=40 PC=41 TARGET=42 LINK=43 -EMULATOR=44 -CPU=45 -CODESEG=46 -DATASEG=47 -ENCODING=48 -CONST=49 -EXTERN=50 -EXPORT=51 -ALIGN=52 -INLINE=53 -VOLATILE=54 -STATIC=55 -INTERRUPT=56 -REGISTER=57 -ADDRESS=58 -ADDRESS_ZEROPAGE=59 -ADDRESS_MAINMEM=60 -FORM_SSA=61 -FORM_MA=62 -INTRINSIC=63 -CALLING=64 -CALLINGCONVENTION=65 -VARMODEL=66 -IF=67 -ELSE=68 -WHILE=69 -DO=70 -FOR=71 -SWITCH=72 -RETURN=73 -BREAK=74 -CONTINUE=75 -ASM=76 -DEFAULT=77 -CASE=78 -STRUCT=79 -ENUM=80 -SIZEOF=81 -TYPEID=82 -DEFINED=83 -KICKASM=84 -RESOURCE=85 -USES=86 -CLOBBERS=87 -BYTES=88 -CYCLES=89 -LOGIC_NOT=90 -SIGNEDNESS=91 -SIMPLETYPE=92 -BOOLEAN=93 -KICKASM_BODY=94 -IMPORT=95 -INCLUDE=96 -PRAGMA=97 -DEFINE=98 -DEFINE_CONTINUE=99 -UNDEF=100 -IFDEF=101 -IFNDEF=102 -IFIF=103 -ELIF=104 -IFELSE=105 -ENDIF=106 -NUMBER=107 -NUMFLOAT=108 -BINFLOAT=109 -DECFLOAT=110 -HEXFLOAT=111 -NUMINT=112 -BININTEGER=113 -DECINTEGER=114 -HEXINTEGER=115 -NAME=116 -STRING=117 -CHAR=118 -WS=119 -COMMENT_LINE=120 -COMMENT_BLOCK=121 -ASM_BYTE=122 -ASM_MNEMONIC=123 -ASM_IMM=124 -ASM_COLON=125 -ASM_COMMA=126 -ASM_PAR_BEGIN=127 -ASM_PAR_END=128 -ASM_BRACKET_BEGIN=129 -ASM_BRACKET_END=130 -ASM_DOT=131 -ASM_SHIFT_LEFT=132 -ASM_SHIFT_RIGHT=133 -ASM_PLUS=134 -ASM_MINUS=135 -ASM_LESS_THAN=136 -ASM_GREATER_THAN=137 -ASM_MULTIPLY=138 -ASM_DIVIDE=139 -ASM_CURLY_BEGIN=140 -ASM_CURLY_END=141 -ASM_NUMBER=142 -ASM_NUMFLOAT=143 -ASM_BINFLOAT=144 -ASM_DECFLOAT=145 -ASM_HEXFLOAT=146 -ASM_NUMINT=147 -ASM_BININTEGER=148 -ASM_DECINTEGER=149 -ASM_HEXINTEGER=150 -ASM_CHAR=151 -ASM_MULTI_REL=152 -ASM_MULTI_NAME=153 -ASM_NAME=154 -ASM_WS=155 -ASM_COMMENT_LINE=156 -ASM_COMMENT_BLOCK=157 -IMPORT_SYSTEMFILE=158 -IMPORT_LOCALFILE=159 -IMPORT_WS=160 -IMPORT_COMMENT_LINE=161 -IMPORT_COMMENT_BLOCK=162 +EXTENSION=44 +EMULATOR=45 +CPU=46 +CODESEG=47 +DATASEG=48 +ENCODING=49 +CONST=50 +EXTERN=51 +EXPORT=52 +ALIGN=53 +INLINE=54 +VOLATILE=55 +STATIC=56 +INTERRUPT=57 +REGISTER=58 +ADDRESS=59 +ADDRESS_ZEROPAGE=60 +ADDRESS_MAINMEM=61 +FORM_SSA=62 +FORM_MA=63 +INTRINSIC=64 +CALLING=65 +CALLINGCONVENTION=66 +VARMODEL=67 +IF=68 +ELSE=69 +WHILE=70 +DO=71 +FOR=72 +SWITCH=73 +RETURN=74 +BREAK=75 +CONTINUE=76 +ASM=77 +DEFAULT=78 +CASE=79 +STRUCT=80 +ENUM=81 +SIZEOF=82 +TYPEID=83 +DEFINED=84 +KICKASM=85 +RESOURCE=86 +USES=87 +CLOBBERS=88 +BYTES=89 +CYCLES=90 +LOGIC_NOT=91 +SIGNEDNESS=92 +SIMPLETYPE=93 +BOOLEAN=94 +KICKASM_BODY=95 +IMPORT=96 +INCLUDE=97 +PRAGMA=98 +DEFINE=99 +DEFINE_CONTINUE=100 +UNDEF=101 +IFDEF=102 +IFNDEF=103 +IFIF=104 +ELIF=105 +IFELSE=106 +ENDIF=107 +NUMBER=108 +NUMFLOAT=109 +BINFLOAT=110 +DECFLOAT=111 +HEXFLOAT=112 +NUMINT=113 +BININTEGER=114 +DECINTEGER=115 +HEXINTEGER=116 +NAME=117 +STRING=118 +CHAR=119 +WS=120 +COMMENT_LINE=121 +COMMENT_BLOCK=122 +ASM_BYTE=123 +ASM_MNEMONIC=124 +ASM_IMM=125 +ASM_COLON=126 +ASM_COMMA=127 +ASM_PAR_BEGIN=128 +ASM_PAR_END=129 +ASM_BRACKET_BEGIN=130 +ASM_BRACKET_END=131 +ASM_DOT=132 +ASM_SHIFT_LEFT=133 +ASM_SHIFT_RIGHT=134 +ASM_PLUS=135 +ASM_MINUS=136 +ASM_LESS_THAN=137 +ASM_GREATER_THAN=138 +ASM_MULTIPLY=139 +ASM_DIVIDE=140 +ASM_CURLY_BEGIN=141 +ASM_CURLY_END=142 +ASM_NUMBER=143 +ASM_NUMFLOAT=144 +ASM_BINFLOAT=145 +ASM_DECFLOAT=146 +ASM_HEXFLOAT=147 +ASM_NUMINT=148 +ASM_BININTEGER=149 +ASM_DECINTEGER=150 +ASM_HEXINTEGER=151 +ASM_CHAR=152 +ASM_MULTI_REL=153 +ASM_MULTI_NAME=154 +ASM_NAME=155 +ASM_WS=156 +ASM_COMMENT_LINE=157 +ASM_COMMENT_BLOCK=158 +IMPORT_SYSTEMFILE=159 +IMPORT_LOCALFILE=160 +IMPORT_WS=161 +IMPORT_COMMENT_LINE=162 +IMPORT_COMMENT_BLOCK=163 ';'=8 '..'=11 '...'=12 @@ -184,62 +185,63 @@ IMPORT_COMMENT_BLOCK=162 'pc'=41 'target'=42 'link'=43 -'emulator'=44 -'cpu'=45 -'code_seg'=46 -'data_seg'=47 -'encoding'=48 -'const'=49 -'extern'=50 -'export'=51 -'align'=52 -'inline'=53 -'volatile'=54 -'static'=55 -'interrupt'=56 -'register'=57 -'__address'=58 -'__zp'=59 -'__mem'=60 -'__ssa'=61 -'__ma'=62 -'__intrinsic'=63 -'calling'=64 -'var_model'=66 -'if'=67 -'else'=68 -'while'=69 -'do'=70 -'for'=71 -'switch'=72 -'return'=73 -'break'=74 -'continue'=75 -'asm'=76 -'default'=77 -'case'=78 -'struct'=79 -'enum'=80 -'sizeof'=81 -'typeid'=82 -'defined'=83 -'kickasm'=84 -'resource'=85 -'uses'=86 -'clobbers'=87 -'bytes'=88 -'cycles'=89 -'!'=90 -'#import'=95 -'#include'=96 -'#pragma'=97 -'#define'=98 -'#undef'=100 -'#ifdef'=101 -'#ifndef'=102 -'#if'=103 -'#elif'=104 -'#else'=105 -'#endif'=106 -'.byte'=122 -'#'=124 +'extension'=44 +'emulator'=45 +'cpu'=46 +'code_seg'=47 +'data_seg'=48 +'encoding'=49 +'const'=50 +'extern'=51 +'export'=52 +'align'=53 +'inline'=54 +'volatile'=55 +'static'=56 +'interrupt'=57 +'register'=58 +'__address'=59 +'__zp'=60 +'__mem'=61 +'__ssa'=62 +'__ma'=63 +'__intrinsic'=64 +'calling'=65 +'var_model'=67 +'if'=68 +'else'=69 +'while'=70 +'do'=71 +'for'=72 +'switch'=73 +'return'=74 +'break'=75 +'continue'=76 +'asm'=77 +'default'=78 +'case'=79 +'struct'=80 +'enum'=81 +'sizeof'=82 +'typeid'=83 +'defined'=84 +'kickasm'=85 +'resource'=86 +'uses'=87 +'clobbers'=88 +'bytes'=89 +'cycles'=90 +'!'=91 +'#import'=96 +'#include'=97 +'#pragma'=98 +'#define'=99 +'#undef'=101 +'#ifdef'=102 +'#ifndef'=103 +'#if'=104 +'#elif'=105 +'#else'=106 +'#endif'=107 +'.byte'=123 +'#'=125 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 index 18108b8f3..b60197126 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.g4 @@ -149,6 +149,7 @@ globalDirective : (PRAGMA TARGET) PAR_BEGIN NAME PAR_END #globalDirectivePlatform | (PRAGMA CPU) PAR_BEGIN NAME PAR_END #globalDirectiveCpu | (PRAGMA LINK) PAR_BEGIN STRING PAR_END #globalDirectiveLinkScript + | (PRAGMA EXTENSION) PAR_BEGIN STRING PAR_END #globalDirectiveExtension | (PRAGMA EMULATOR) PAR_BEGIN STRING PAR_END #globalDirectiveEmulator | (PRAGMA RESERVE) PAR_BEGIN NUMBER ( COMMA NUMBER )* PAR_END #globalDirectiveReserve | (PRAGMA PC) PAR_BEGIN NUMBER PAR_END #globalDirectivePc diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp index bd9b71831..285890599 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.interp @@ -43,6 +43,7 @@ null 'pc' 'target' 'link' +'extension' 'emulator' 'cpu' 'code_seg' @@ -208,6 +209,7 @@ RESERVE PC TARGET LINK +EXTENSION EMULATOR CPU CODESEG @@ -379,4 +381,4 @@ asmExpr atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 164, 899, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 5, 3, 5, 5, 5, 111, 10, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 5, 6, 119, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 136, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 143, 10, 9, 12, 9, 14, 9, 146, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 153, 10, 9, 12, 9, 14, 9, 156, 11, 9, 3, 9, 7, 9, 159, 10, 9, 12, 9, 14, 9, 162, 11, 9, 3, 10, 3, 10, 3, 10, 7, 10, 167, 10, 10, 12, 10, 14, 10, 170, 11, 10, 3, 10, 3, 10, 7, 10, 174, 10, 10, 12, 10, 14, 10, 177, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 7, 11, 183, 10, 11, 12, 11, 14, 11, 186, 11, 11, 3, 11, 3, 11, 5, 11, 190, 10, 11, 3, 11, 3, 11, 7, 11, 194, 10, 11, 12, 11, 14, 11, 197, 11, 11, 3, 11, 3, 11, 5, 11, 201, 10, 11, 3, 12, 7, 12, 204, 10, 12, 12, 12, 14, 12, 207, 11, 12, 3, 12, 3, 12, 7, 12, 211, 10, 12, 12, 12, 14, 12, 214, 11, 12, 3, 13, 3, 13, 7, 13, 218, 10, 13, 12, 13, 14, 13, 221, 11, 13, 3, 14, 3, 14, 5, 14, 225, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 237, 10, 15, 3, 15, 7, 15, 240, 10, 15, 12, 15, 14, 15, 243, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 253, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 260, 10, 16, 3, 16, 3, 16, 3, 16, 5, 16, 265, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 271, 10, 16, 12, 16, 14, 16, 274, 11, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 5, 18, 281, 10, 18, 3, 18, 3, 18, 6, 18, 285, 10, 18, 13, 18, 14, 18, 286, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 299, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 311, 10, 22, 12, 22, 14, 22, 314, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 319, 10, 23, 3, 24, 3, 24, 7, 24, 323, 10, 24, 12, 24, 14, 24, 326, 11, 24, 3, 24, 3, 24, 3, 24, 5, 24, 331, 10, 24, 3, 24, 3, 24, 3, 24, 5, 24, 336, 10, 24, 3, 25, 3, 25, 5, 25, 340, 10, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 7, 26, 347, 10, 26, 12, 26, 14, 26, 350, 11, 26, 3, 27, 3, 27, 7, 27, 354, 10, 27, 12, 27, 14, 27, 357, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 363, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 372, 10, 28, 12, 28, 14, 28, 375, 11, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 439, 10, 28, 12, 28, 14, 28, 442, 11, 28, 3, 28, 5, 28, 445, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 456, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 476, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 483, 10, 29, 12, 29, 14, 29, 486, 11, 29, 3, 29, 3, 29, 5, 29, 490, 10, 29, 3, 30, 6, 30, 493, 10, 30, 13, 30, 14, 30, 494, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 502, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 515, 10, 31, 3, 31, 7, 31, 518, 10, 31, 12, 31, 14, 31, 521, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 530, 10, 31, 12, 31, 14, 31, 533, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 544, 10, 31, 12, 31, 14, 31, 547, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 565, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 574, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 581, 10, 31, 3, 32, 6, 32, 584, 10, 32, 13, 32, 14, 32, 585, 3, 32, 3, 32, 3, 32, 5, 32, 591, 10, 32, 5, 32, 593, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 599, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 606, 10, 34, 3, 34, 3, 34, 7, 34, 610, 10, 34, 12, 34, 14, 34, 613, 11, 34, 5, 34, 615, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 623, 10, 34, 3, 35, 5, 35, 626, 10, 35, 3, 35, 5, 35, 629, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 637, 10, 36, 12, 36, 14, 36, 640, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 651, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 659, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 665, 10, 37, 3, 37, 3, 37, 5, 37, 669, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 688, 10, 37, 12, 37, 14, 37, 691, 11, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 6, 37, 698, 10, 37, 13, 37, 14, 37, 699, 3, 37, 3, 37, 5, 37, 704, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 754, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 764, 10, 37, 12, 37, 14, 37, 767, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 772, 10, 38, 12, 38, 14, 38, 775, 11, 38, 3, 39, 3, 39, 5, 39, 779, 10, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 787, 10, 40, 12, 40, 14, 40, 790, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 807, 10, 41, 5, 41, 809, 10, 41, 3, 42, 7, 42, 812, 10, 42, 12, 42, 14, 42, 815, 11, 42, 3, 43, 3, 43, 3, 43, 5, 43, 820, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 826, 10, 44, 3, 45, 3, 45, 5, 45, 830, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 836, 10, 46, 12, 46, 14, 46, 839, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 864, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 880, 10, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 7, 48, 894, 10, 48, 12, 48, 14, 48, 897, 11, 48, 3, 48, 2, 9, 16, 28, 30, 42, 70, 72, 94, 49, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 2, 13, 3, 2, 23, 24, 5, 2, 18, 19, 25, 26, 92, 92, 4, 2, 33, 33, 36, 36, 3, 2, 29, 30, 3, 2, 20, 22, 3, 2, 18, 19, 3, 2, 31, 36, 3, 2, 136, 139, 3, 2, 134, 135, 3, 2, 140, 141, 3, 2, 136, 137, 2, 1031, 2, 96, 3, 2, 2, 2, 4, 99, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 110, 3, 2, 2, 2, 10, 118, 3, 2, 2, 2, 12, 135, 3, 2, 2, 2, 14, 137, 3, 2, 2, 2, 16, 140, 3, 2, 2, 2, 18, 163, 3, 2, 2, 2, 20, 200, 3, 2, 2, 2, 22, 205, 3, 2, 2, 2, 24, 215, 3, 2, 2, 2, 26, 222, 3, 2, 2, 2, 28, 228, 3, 2, 2, 2, 30, 259, 3, 2, 2, 2, 32, 275, 3, 2, 2, 2, 34, 278, 3, 2, 2, 2, 36, 290, 3, 2, 2, 2, 38, 293, 3, 2, 2, 2, 40, 296, 3, 2, 2, 2, 42, 304, 3, 2, 2, 2, 44, 315, 3, 2, 2, 2, 46, 320, 3, 2, 2, 2, 48, 337, 3, 2, 2, 2, 50, 343, 3, 2, 2, 2, 52, 362, 3, 2, 2, 2, 54, 444, 3, 2, 2, 2, 56, 489, 3, 2, 2, 2, 58, 492, 3, 2, 2, 2, 60, 580, 3, 2, 2, 2, 62, 583, 3, 2, 2, 2, 64, 594, 3, 2, 2, 2, 66, 622, 3, 2, 2, 2, 68, 628, 3, 2, 2, 2, 70, 630, 3, 2, 2, 2, 72, 703, 3, 2, 2, 2, 74, 768, 3, 2, 2, 2, 76, 776, 3, 2, 2, 2, 78, 782, 3, 2, 2, 2, 80, 808, 3, 2, 2, 2, 82, 813, 3, 2, 2, 2, 84, 819, 3, 2, 2, 2, 86, 825, 3, 2, 2, 2, 88, 827, 3, 2, 2, 2, 90, 831, 3, 2, 2, 2, 92, 863, 3, 2, 2, 2, 94, 879, 3, 2, 2, 2, 96, 97, 5, 6, 4, 2, 97, 98, 7, 2, 2, 3, 98, 3, 3, 2, 2, 2, 99, 100, 5, 82, 42, 2, 100, 101, 7, 2, 2, 3, 101, 5, 3, 2, 2, 2, 102, 104, 5, 8, 5, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 7, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 111, 5, 12, 7, 2, 109, 111, 5, 10, 6, 2, 110, 108, 3, 2, 2, 2, 110, 109, 3, 2, 2, 2, 111, 9, 3, 2, 2, 2, 112, 113, 7, 97, 2, 2, 113, 119, 7, 161, 2, 2, 114, 115, 7, 98, 2, 2, 115, 119, 7, 161, 2, 2, 116, 117, 7, 98, 2, 2, 117, 119, 7, 160, 2, 2, 118, 112, 3, 2, 2, 2, 118, 114, 3, 2, 2, 2, 118, 116, 3, 2, 2, 2, 119, 11, 3, 2, 2, 2, 120, 121, 5, 14, 8, 2, 121, 122, 7, 10, 2, 2, 122, 136, 3, 2, 2, 2, 123, 124, 5, 34, 18, 2, 124, 125, 7, 10, 2, 2, 125, 136, 3, 2, 2, 2, 126, 127, 5, 40, 21, 2, 127, 128, 7, 10, 2, 2, 128, 136, 3, 2, 2, 2, 129, 136, 5, 46, 24, 2, 130, 136, 5, 76, 39, 2, 131, 136, 5, 54, 28, 2, 132, 133, 5, 18, 10, 2, 133, 134, 7, 10, 2, 2, 134, 136, 3, 2, 2, 2, 135, 120, 3, 2, 2, 2, 135, 123, 3, 2, 2, 2, 135, 126, 3, 2, 2, 2, 135, 129, 3, 2, 2, 2, 135, 130, 3, 2, 2, 2, 135, 131, 3, 2, 2, 2, 135, 132, 3, 2, 2, 2, 136, 13, 3, 2, 2, 2, 137, 138, 5, 22, 12, 2, 138, 139, 5, 16, 9, 2, 139, 15, 3, 2, 2, 2, 140, 144, 8, 9, 1, 2, 141, 143, 5, 24, 13, 2, 142, 141, 3, 2, 2, 2, 143, 146, 3, 2, 2, 2, 144, 142, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 147, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 147, 148, 5, 20, 11, 2, 148, 160, 3, 2, 2, 2, 149, 150, 12, 3, 2, 2, 150, 154, 7, 12, 2, 2, 151, 153, 5, 24, 13, 2, 152, 151, 3, 2, 2, 2, 153, 156, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 157, 3, 2, 2, 2, 156, 154, 3, 2, 2, 2, 157, 159, 5, 20, 11, 2, 158, 149, 3, 2, 2, 2, 159, 162, 3, 2, 2, 2, 160, 158, 3, 2, 2, 2, 160, 161, 3, 2, 2, 2, 161, 17, 3, 2, 2, 2, 162, 160, 3, 2, 2, 2, 163, 164, 7, 41, 2, 2, 164, 168, 5, 22, 12, 2, 165, 167, 5, 24, 13, 2, 166, 165, 3, 2, 2, 2, 167, 170, 3, 2, 2, 2, 168, 166, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 171, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 171, 175, 7, 118, 2, 2, 172, 174, 5, 26, 14, 2, 173, 172, 3, 2, 2, 2, 174, 177, 3, 2, 2, 2, 175, 173, 3, 2, 2, 2, 175, 176, 3, 2, 2, 2, 176, 178, 3, 2, 2, 2, 177, 175, 3, 2, 2, 2, 178, 179, 8, 10, 1, 2, 179, 19, 3, 2, 2, 2, 180, 184, 7, 118, 2, 2, 181, 183, 5, 26, 14, 2, 182, 181, 3, 2, 2, 2, 183, 186, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 184, 185, 3, 2, 2, 2, 185, 189, 3, 2, 2, 2, 186, 184, 3, 2, 2, 2, 187, 188, 7, 39, 2, 2, 188, 190, 5, 72, 37, 2, 189, 187, 3, 2, 2, 2, 189, 190, 3, 2, 2, 2, 190, 201, 3, 2, 2, 2, 191, 195, 7, 118, 2, 2, 192, 194, 5, 26, 14, 2, 193, 192, 3, 2, 2, 2, 194, 197, 3, 2, 2, 2, 195, 193, 3, 2, 2, 2, 195, 196, 3, 2, 2, 2, 196, 198, 3, 2, 2, 2, 197, 195, 3, 2, 2, 2, 198, 199, 7, 39, 2, 2, 199, 201, 5, 76, 39, 2, 200, 180, 3, 2, 2, 2, 200, 191, 3, 2, 2, 2, 201, 21, 3, 2, 2, 2, 202, 204, 5, 56, 29, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 208, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 212, 5, 30, 16, 2, 209, 211, 5, 56, 29, 2, 210, 209, 3, 2, 2, 2, 211, 214, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 23, 3, 2, 2, 2, 214, 212, 3, 2, 2, 2, 215, 219, 7, 20, 2, 2, 216, 218, 5, 56, 29, 2, 217, 216, 3, 2, 2, 2, 218, 221, 3, 2, 2, 2, 219, 217, 3, 2, 2, 2, 219, 220, 3, 2, 2, 2, 220, 25, 3, 2, 2, 2, 221, 219, 3, 2, 2, 2, 222, 224, 7, 6, 2, 2, 223, 225, 5, 72, 37, 2, 224, 223, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 227, 7, 7, 2, 2, 227, 27, 3, 2, 2, 2, 228, 229, 8, 15, 1, 2, 229, 230, 5, 30, 16, 2, 230, 241, 3, 2, 2, 2, 231, 232, 12, 4, 2, 2, 232, 240, 7, 20, 2, 2, 233, 234, 12, 3, 2, 2, 234, 236, 7, 6, 2, 2, 235, 237, 5, 72, 37, 2, 236, 235, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 238, 3, 2, 2, 2, 238, 240, 7, 7, 2, 2, 239, 231, 3, 2, 2, 2, 239, 233, 3, 2, 2, 2, 240, 243, 3, 2, 2, 2, 241, 239, 3, 2, 2, 2, 241, 242, 3, 2, 2, 2, 242, 29, 3, 2, 2, 2, 243, 241, 3, 2, 2, 2, 244, 245, 8, 16, 1, 2, 245, 246, 7, 8, 2, 2, 246, 247, 5, 30, 16, 2, 247, 248, 7, 9, 2, 2, 248, 260, 3, 2, 2, 2, 249, 260, 7, 94, 2, 2, 250, 252, 7, 93, 2, 2, 251, 253, 7, 94, 2, 2, 252, 251, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 260, 3, 2, 2, 2, 254, 260, 5, 34, 18, 2, 255, 260, 5, 32, 17, 2, 256, 260, 5, 40, 21, 2, 257, 260, 5, 38, 20, 2, 258, 260, 7, 3, 2, 2, 259, 244, 3, 2, 2, 2, 259, 249, 3, 2, 2, 2, 259, 250, 3, 2, 2, 2, 259, 254, 3, 2, 2, 2, 259, 255, 3, 2, 2, 2, 259, 256, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 258, 3, 2, 2, 2, 260, 272, 3, 2, 2, 2, 261, 262, 12, 9, 2, 2, 262, 264, 7, 6, 2, 2, 263, 265, 5, 72, 37, 2, 264, 263, 3, 2, 2, 2, 264, 265, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 271, 7, 7, 2, 2, 267, 268, 12, 8, 2, 2, 268, 269, 7, 8, 2, 2, 269, 271, 7, 9, 2, 2, 270, 261, 3, 2, 2, 2, 270, 267, 3, 2, 2, 2, 271, 274, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 31, 3, 2, 2, 2, 274, 272, 3, 2, 2, 2, 275, 276, 7, 81, 2, 2, 276, 277, 7, 118, 2, 2, 277, 33, 3, 2, 2, 2, 278, 280, 7, 81, 2, 2, 279, 281, 7, 118, 2, 2, 280, 279, 3, 2, 2, 2, 280, 281, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 284, 7, 4, 2, 2, 283, 285, 5, 36, 19, 2, 284, 283, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 284, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 289, 7, 5, 2, 2, 289, 35, 3, 2, 2, 2, 290, 291, 5, 14, 8, 2, 291, 292, 7, 10, 2, 2, 292, 37, 3, 2, 2, 2, 293, 294, 7, 82, 2, 2, 294, 295, 7, 118, 2, 2, 295, 39, 3, 2, 2, 2, 296, 298, 7, 82, 2, 2, 297, 299, 7, 118, 2, 2, 298, 297, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 301, 7, 4, 2, 2, 301, 302, 5, 42, 22, 2, 302, 303, 7, 5, 2, 2, 303, 41, 3, 2, 2, 2, 304, 305, 8, 22, 1, 2, 305, 306, 5, 44, 23, 2, 306, 312, 3, 2, 2, 2, 307, 308, 12, 3, 2, 2, 308, 309, 7, 12, 2, 2, 309, 311, 5, 44, 23, 2, 310, 307, 3, 2, 2, 2, 311, 314, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 43, 3, 2, 2, 2, 314, 312, 3, 2, 2, 2, 315, 318, 7, 118, 2, 2, 316, 317, 7, 39, 2, 2, 317, 319, 5, 72, 37, 2, 318, 316, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 45, 3, 2, 2, 2, 320, 324, 5, 22, 12, 2, 321, 323, 5, 24, 13, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 327, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 118, 2, 2, 328, 330, 7, 8, 2, 2, 329, 331, 5, 50, 26, 2, 330, 329, 3, 2, 2, 2, 330, 331, 3, 2, 2, 2, 331, 332, 3, 2, 2, 2, 332, 335, 7, 9, 2, 2, 333, 336, 5, 48, 25, 2, 334, 336, 7, 10, 2, 2, 335, 333, 3, 2, 2, 2, 335, 334, 3, 2, 2, 2, 336, 47, 3, 2, 2, 2, 337, 339, 7, 4, 2, 2, 338, 340, 5, 58, 30, 2, 339, 338, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 341, 3, 2, 2, 2, 341, 342, 7, 5, 2, 2, 342, 49, 3, 2, 2, 2, 343, 348, 5, 52, 27, 2, 344, 345, 7, 12, 2, 2, 345, 347, 5, 52, 27, 2, 346, 344, 3, 2, 2, 2, 347, 350, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 348, 349, 3, 2, 2, 2, 349, 51, 3, 2, 2, 2, 350, 348, 3, 2, 2, 2, 351, 355, 5, 22, 12, 2, 352, 354, 5, 24, 13, 2, 353, 352, 3, 2, 2, 2, 354, 357, 3, 2, 2, 2, 355, 353, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 358, 3, 2, 2, 2, 357, 355, 3, 2, 2, 2, 358, 359, 7, 118, 2, 2, 359, 363, 3, 2, 2, 2, 360, 363, 7, 94, 2, 2, 361, 363, 7, 14, 2, 2, 362, 351, 3, 2, 2, 2, 362, 360, 3, 2, 2, 2, 362, 361, 3, 2, 2, 2, 363, 53, 3, 2, 2, 2, 364, 365, 7, 99, 2, 2, 365, 366, 7, 42, 2, 2, 366, 367, 3, 2, 2, 2, 367, 368, 7, 8, 2, 2, 368, 373, 7, 109, 2, 2, 369, 370, 7, 12, 2, 2, 370, 372, 7, 109, 2, 2, 371, 369, 3, 2, 2, 2, 372, 375, 3, 2, 2, 2, 373, 371, 3, 2, 2, 2, 373, 374, 3, 2, 2, 2, 374, 376, 3, 2, 2, 2, 375, 373, 3, 2, 2, 2, 376, 445, 7, 9, 2, 2, 377, 378, 7, 99, 2, 2, 378, 379, 7, 43, 2, 2, 379, 380, 3, 2, 2, 2, 380, 381, 7, 8, 2, 2, 381, 382, 7, 109, 2, 2, 382, 445, 7, 9, 2, 2, 383, 384, 7, 99, 2, 2, 384, 385, 7, 44, 2, 2, 385, 386, 3, 2, 2, 2, 386, 387, 7, 8, 2, 2, 387, 388, 7, 118, 2, 2, 388, 445, 7, 9, 2, 2, 389, 390, 7, 99, 2, 2, 390, 391, 7, 47, 2, 2, 391, 392, 3, 2, 2, 2, 392, 393, 7, 8, 2, 2, 393, 394, 7, 118, 2, 2, 394, 445, 7, 9, 2, 2, 395, 396, 7, 99, 2, 2, 396, 397, 7, 45, 2, 2, 397, 398, 3, 2, 2, 2, 398, 399, 7, 8, 2, 2, 399, 400, 7, 119, 2, 2, 400, 445, 7, 9, 2, 2, 401, 402, 7, 99, 2, 2, 402, 403, 7, 46, 2, 2, 403, 404, 3, 2, 2, 2, 404, 405, 7, 8, 2, 2, 405, 406, 7, 119, 2, 2, 406, 445, 7, 9, 2, 2, 407, 408, 7, 99, 2, 2, 408, 409, 7, 48, 2, 2, 409, 410, 3, 2, 2, 2, 410, 411, 7, 8, 2, 2, 411, 412, 7, 118, 2, 2, 412, 445, 7, 9, 2, 2, 413, 414, 7, 99, 2, 2, 414, 415, 7, 49, 2, 2, 415, 416, 3, 2, 2, 2, 416, 417, 7, 8, 2, 2, 417, 418, 7, 118, 2, 2, 418, 445, 7, 9, 2, 2, 419, 420, 7, 99, 2, 2, 420, 421, 7, 50, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 7, 8, 2, 2, 423, 424, 7, 118, 2, 2, 424, 445, 7, 9, 2, 2, 425, 426, 7, 99, 2, 2, 426, 427, 7, 66, 2, 2, 427, 428, 3, 2, 2, 2, 428, 429, 7, 8, 2, 2, 429, 430, 7, 67, 2, 2, 430, 445, 7, 9, 2, 2, 431, 432, 7, 99, 2, 2, 432, 433, 7, 68, 2, 2, 433, 434, 3, 2, 2, 2, 434, 435, 7, 8, 2, 2, 435, 440, 7, 118, 2, 2, 436, 437, 7, 12, 2, 2, 437, 439, 7, 118, 2, 2, 438, 436, 3, 2, 2, 2, 439, 442, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 443, 3, 2, 2, 2, 442, 440, 3, 2, 2, 2, 443, 445, 7, 9, 2, 2, 444, 364, 3, 2, 2, 2, 444, 377, 3, 2, 2, 2, 444, 383, 3, 2, 2, 2, 444, 389, 3, 2, 2, 2, 444, 395, 3, 2, 2, 2, 444, 401, 3, 2, 2, 2, 444, 407, 3, 2, 2, 2, 444, 413, 3, 2, 2, 2, 444, 419, 3, 2, 2, 2, 444, 425, 3, 2, 2, 2, 444, 431, 3, 2, 2, 2, 445, 55, 3, 2, 2, 2, 446, 490, 7, 51, 2, 2, 447, 448, 7, 54, 2, 2, 448, 449, 7, 8, 2, 2, 449, 450, 7, 109, 2, 2, 450, 490, 7, 9, 2, 2, 451, 455, 7, 59, 2, 2, 452, 453, 7, 8, 2, 2, 453, 454, 7, 118, 2, 2, 454, 456, 7, 9, 2, 2, 455, 452, 3, 2, 2, 2, 455, 456, 3, 2, 2, 2, 456, 490, 3, 2, 2, 2, 457, 490, 7, 61, 2, 2, 458, 490, 7, 62, 2, 2, 459, 460, 7, 60, 2, 2, 460, 461, 7, 8, 2, 2, 461, 462, 7, 109, 2, 2, 462, 490, 7, 9, 2, 2, 463, 490, 7, 56, 2, 2, 464, 490, 7, 57, 2, 2, 465, 490, 7, 63, 2, 2, 466, 490, 7, 64, 2, 2, 467, 490, 7, 52, 2, 2, 468, 490, 7, 53, 2, 2, 469, 490, 7, 55, 2, 2, 470, 490, 7, 65, 2, 2, 471, 475, 7, 58, 2, 2, 472, 473, 7, 8, 2, 2, 473, 474, 7, 118, 2, 2, 474, 476, 7, 9, 2, 2, 475, 472, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 490, 3, 2, 2, 2, 477, 478, 7, 42, 2, 2, 478, 479, 7, 8, 2, 2, 479, 484, 7, 109, 2, 2, 480, 481, 7, 12, 2, 2, 481, 483, 7, 109, 2, 2, 482, 480, 3, 2, 2, 2, 483, 486, 3, 2, 2, 2, 484, 482, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 487, 3, 2, 2, 2, 486, 484, 3, 2, 2, 2, 487, 490, 7, 9, 2, 2, 488, 490, 7, 67, 2, 2, 489, 446, 3, 2, 2, 2, 489, 447, 3, 2, 2, 2, 489, 451, 3, 2, 2, 2, 489, 457, 3, 2, 2, 2, 489, 458, 3, 2, 2, 2, 489, 459, 3, 2, 2, 2, 489, 463, 3, 2, 2, 2, 489, 464, 3, 2, 2, 2, 489, 465, 3, 2, 2, 2, 489, 466, 3, 2, 2, 2, 489, 467, 3, 2, 2, 2, 489, 468, 3, 2, 2, 2, 489, 469, 3, 2, 2, 2, 489, 470, 3, 2, 2, 2, 489, 471, 3, 2, 2, 2, 489, 477, 3, 2, 2, 2, 489, 488, 3, 2, 2, 2, 490, 57, 3, 2, 2, 2, 491, 493, 5, 60, 31, 2, 492, 491, 3, 2, 2, 2, 493, 494, 3, 2, 2, 2, 494, 492, 3, 2, 2, 2, 494, 495, 3, 2, 2, 2, 495, 59, 3, 2, 2, 2, 496, 497, 5, 14, 8, 2, 497, 498, 7, 10, 2, 2, 498, 581, 3, 2, 2, 2, 499, 501, 7, 4, 2, 2, 500, 502, 5, 58, 30, 2, 501, 500, 3, 2, 2, 2, 501, 502, 3, 2, 2, 2, 502, 503, 3, 2, 2, 2, 503, 581, 7, 5, 2, 2, 504, 505, 5, 70, 36, 2, 505, 506, 7, 10, 2, 2, 506, 581, 3, 2, 2, 2, 507, 508, 7, 69, 2, 2, 508, 509, 7, 8, 2, 2, 509, 510, 5, 70, 36, 2, 510, 511, 7, 9, 2, 2, 511, 514, 5, 60, 31, 2, 512, 513, 7, 70, 2, 2, 513, 515, 5, 60, 31, 2, 514, 512, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 581, 3, 2, 2, 2, 516, 518, 5, 56, 29, 2, 517, 516, 3, 2, 2, 2, 518, 521, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 522, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 522, 523, 7, 71, 2, 2, 523, 524, 7, 8, 2, 2, 524, 525, 5, 70, 36, 2, 525, 526, 7, 9, 2, 2, 526, 527, 5, 60, 31, 2, 527, 581, 3, 2, 2, 2, 528, 530, 5, 56, 29, 2, 529, 528, 3, 2, 2, 2, 530, 533, 3, 2, 2, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 534, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 534, 535, 7, 72, 2, 2, 535, 536, 5, 60, 31, 2, 536, 537, 7, 71, 2, 2, 537, 538, 7, 8, 2, 2, 538, 539, 5, 70, 36, 2, 539, 540, 7, 9, 2, 2, 540, 541, 7, 10, 2, 2, 541, 581, 3, 2, 2, 2, 542, 544, 5, 56, 29, 2, 543, 542, 3, 2, 2, 2, 544, 547, 3, 2, 2, 2, 545, 543, 3, 2, 2, 2, 545, 546, 3, 2, 2, 2, 546, 548, 3, 2, 2, 2, 547, 545, 3, 2, 2, 2, 548, 549, 7, 73, 2, 2, 549, 550, 7, 8, 2, 2, 550, 551, 5, 66, 34, 2, 551, 552, 7, 9, 2, 2, 552, 553, 5, 60, 31, 2, 553, 581, 3, 2, 2, 2, 554, 555, 7, 74, 2, 2, 555, 556, 7, 8, 2, 2, 556, 557, 5, 70, 36, 2, 557, 558, 7, 9, 2, 2, 558, 559, 7, 4, 2, 2, 559, 560, 5, 62, 32, 2, 560, 561, 7, 5, 2, 2, 561, 581, 3, 2, 2, 2, 562, 564, 7, 75, 2, 2, 563, 565, 5, 70, 36, 2, 564, 563, 3, 2, 2, 2, 564, 565, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 581, 7, 10, 2, 2, 567, 568, 7, 76, 2, 2, 568, 581, 7, 10, 2, 2, 569, 570, 7, 77, 2, 2, 570, 581, 7, 10, 2, 2, 571, 573, 7, 78, 2, 2, 572, 574, 5, 78, 40, 2, 573, 572, 3, 2, 2, 2, 573, 574, 3, 2, 2, 2, 574, 575, 3, 2, 2, 2, 575, 576, 7, 4, 2, 2, 576, 577, 5, 82, 42, 2, 577, 578, 7, 143, 2, 2, 578, 581, 3, 2, 2, 2, 579, 581, 5, 76, 39, 2, 580, 496, 3, 2, 2, 2, 580, 499, 3, 2, 2, 2, 580, 504, 3, 2, 2, 2, 580, 507, 3, 2, 2, 2, 580, 519, 3, 2, 2, 2, 580, 531, 3, 2, 2, 2, 580, 545, 3, 2, 2, 2, 580, 554, 3, 2, 2, 2, 580, 562, 3, 2, 2, 2, 580, 567, 3, 2, 2, 2, 580, 569, 3, 2, 2, 2, 580, 571, 3, 2, 2, 2, 580, 579, 3, 2, 2, 2, 581, 61, 3, 2, 2, 2, 582, 584, 5, 64, 33, 2, 583, 582, 3, 2, 2, 2, 584, 585, 3, 2, 2, 2, 585, 583, 3, 2, 2, 2, 585, 586, 3, 2, 2, 2, 586, 592, 3, 2, 2, 2, 587, 588, 7, 79, 2, 2, 588, 590, 7, 11, 2, 2, 589, 591, 5, 58, 30, 2, 590, 589, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 593, 3, 2, 2, 2, 592, 587, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 63, 3, 2, 2, 2, 594, 595, 7, 80, 2, 2, 595, 596, 5, 72, 37, 2, 596, 598, 7, 11, 2, 2, 597, 599, 5, 58, 30, 2, 598, 597, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 65, 3, 2, 2, 2, 600, 601, 5, 68, 35, 2, 601, 602, 7, 10, 2, 2, 602, 603, 5, 70, 36, 2, 603, 605, 7, 10, 2, 2, 604, 606, 5, 70, 36, 2, 605, 604, 3, 2, 2, 2, 605, 606, 3, 2, 2, 2, 606, 623, 3, 2, 2, 2, 607, 611, 5, 22, 12, 2, 608, 610, 5, 24, 13, 2, 609, 608, 3, 2, 2, 2, 610, 613, 3, 2, 2, 2, 611, 609, 3, 2, 2, 2, 611, 612, 3, 2, 2, 2, 612, 615, 3, 2, 2, 2, 613, 611, 3, 2, 2, 2, 614, 607, 3, 2, 2, 2, 614, 615, 3, 2, 2, 2, 615, 616, 3, 2, 2, 2, 616, 617, 7, 118, 2, 2, 617, 618, 7, 11, 2, 2, 618, 619, 5, 72, 37, 2, 619, 620, 7, 13, 2, 2, 620, 621, 5, 72, 37, 2, 621, 623, 3, 2, 2, 2, 622, 600, 3, 2, 2, 2, 622, 614, 3, 2, 2, 2, 623, 67, 3, 2, 2, 2, 624, 626, 5, 14, 8, 2, 625, 624, 3, 2, 2, 2, 625, 626, 3, 2, 2, 2, 626, 629, 3, 2, 2, 2, 627, 629, 5, 70, 36, 2, 628, 625, 3, 2, 2, 2, 628, 627, 3, 2, 2, 2, 629, 69, 3, 2, 2, 2, 630, 631, 8, 36, 1, 2, 631, 632, 5, 72, 37, 2, 632, 638, 3, 2, 2, 2, 633, 634, 12, 3, 2, 2, 634, 635, 7, 12, 2, 2, 635, 637, 5, 72, 37, 2, 636, 633, 3, 2, 2, 2, 637, 640, 3, 2, 2, 2, 638, 636, 3, 2, 2, 2, 638, 639, 3, 2, 2, 2, 639, 71, 3, 2, 2, 2, 640, 638, 3, 2, 2, 2, 641, 642, 8, 37, 1, 2, 642, 643, 7, 8, 2, 2, 643, 644, 5, 70, 36, 2, 644, 645, 7, 9, 2, 2, 645, 704, 3, 2, 2, 2, 646, 647, 7, 83, 2, 2, 647, 650, 7, 8, 2, 2, 648, 651, 5, 72, 37, 2, 649, 651, 5, 28, 15, 2, 650, 648, 3, 2, 2, 2, 650, 649, 3, 2, 2, 2, 651, 652, 3, 2, 2, 2, 652, 653, 7, 9, 2, 2, 653, 704, 3, 2, 2, 2, 654, 655, 7, 84, 2, 2, 655, 658, 7, 8, 2, 2, 656, 659, 5, 72, 37, 2, 657, 659, 5, 28, 15, 2, 658, 656, 3, 2, 2, 2, 658, 657, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 661, 7, 9, 2, 2, 661, 704, 3, 2, 2, 2, 662, 664, 7, 85, 2, 2, 663, 665, 7, 8, 2, 2, 664, 663, 3, 2, 2, 2, 664, 665, 3, 2, 2, 2, 665, 666, 3, 2, 2, 2, 666, 668, 7, 118, 2, 2, 667, 669, 7, 9, 2, 2, 668, 667, 3, 2, 2, 2, 668, 669, 3, 2, 2, 2, 669, 704, 3, 2, 2, 2, 670, 671, 7, 8, 2, 2, 671, 672, 5, 28, 15, 2, 672, 673, 7, 9, 2, 2, 673, 674, 5, 72, 37, 26, 674, 704, 3, 2, 2, 2, 675, 676, 9, 2, 2, 2, 676, 704, 5, 72, 37, 25, 677, 678, 7, 20, 2, 2, 678, 704, 5, 72, 37, 23, 679, 680, 9, 3, 2, 2, 680, 704, 5, 72, 37, 22, 681, 682, 9, 4, 2, 2, 682, 704, 5, 72, 37, 18, 683, 684, 7, 4, 2, 2, 684, 689, 5, 72, 37, 2, 685, 686, 7, 12, 2, 2, 686, 688, 5, 72, 37, 2, 687, 685, 3, 2, 2, 2, 688, 691, 3, 2, 2, 2, 689, 687, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 692, 3, 2, 2, 2, 691, 689, 3, 2, 2, 2, 692, 693, 7, 5, 2, 2, 693, 704, 3, 2, 2, 2, 694, 704, 7, 118, 2, 2, 695, 704, 7, 109, 2, 2, 696, 698, 7, 119, 2, 2, 697, 696, 3, 2, 2, 2, 698, 699, 3, 2, 2, 2, 699, 697, 3, 2, 2, 2, 699, 700, 3, 2, 2, 2, 700, 704, 3, 2, 2, 2, 701, 704, 7, 120, 2, 2, 702, 704, 7, 95, 2, 2, 703, 641, 3, 2, 2, 2, 703, 646, 3, 2, 2, 2, 703, 654, 3, 2, 2, 2, 703, 662, 3, 2, 2, 2, 703, 670, 3, 2, 2, 2, 703, 675, 3, 2, 2, 2, 703, 677, 3, 2, 2, 2, 703, 679, 3, 2, 2, 2, 703, 681, 3, 2, 2, 2, 703, 683, 3, 2, 2, 2, 703, 694, 3, 2, 2, 2, 703, 695, 3, 2, 2, 2, 703, 697, 3, 2, 2, 2, 703, 701, 3, 2, 2, 2, 703, 702, 3, 2, 2, 2, 704, 765, 3, 2, 2, 2, 705, 706, 12, 21, 2, 2, 706, 707, 9, 5, 2, 2, 707, 764, 5, 72, 37, 22, 708, 709, 12, 20, 2, 2, 709, 710, 9, 6, 2, 2, 710, 764, 5, 72, 37, 21, 711, 712, 12, 19, 2, 2, 712, 713, 9, 7, 2, 2, 713, 764, 5, 72, 37, 20, 714, 715, 12, 17, 2, 2, 715, 716, 9, 8, 2, 2, 716, 764, 5, 72, 37, 18, 717, 718, 12, 16, 2, 2, 718, 719, 7, 25, 2, 2, 719, 764, 5, 72, 37, 17, 720, 721, 12, 15, 2, 2, 721, 722, 7, 27, 2, 2, 722, 764, 5, 72, 37, 16, 723, 724, 12, 14, 2, 2, 724, 725, 7, 28, 2, 2, 725, 764, 5, 72, 37, 15, 726, 727, 12, 13, 2, 2, 727, 728, 7, 37, 2, 2, 728, 764, 5, 72, 37, 14, 729, 730, 12, 12, 2, 2, 730, 731, 7, 38, 2, 2, 731, 764, 5, 72, 37, 13, 732, 733, 12, 11, 2, 2, 733, 734, 7, 15, 2, 2, 734, 735, 5, 72, 37, 2, 735, 736, 7, 11, 2, 2, 736, 737, 5, 72, 37, 12, 737, 764, 3, 2, 2, 2, 738, 739, 12, 10, 2, 2, 739, 740, 7, 39, 2, 2, 740, 764, 5, 72, 37, 10, 741, 742, 12, 9, 2, 2, 742, 743, 7, 40, 2, 2, 743, 764, 5, 72, 37, 9, 744, 745, 12, 33, 2, 2, 745, 746, 7, 16, 2, 2, 746, 764, 7, 118, 2, 2, 747, 748, 12, 32, 2, 2, 748, 749, 7, 17, 2, 2, 749, 764, 7, 118, 2, 2, 750, 751, 12, 31, 2, 2, 751, 753, 7, 8, 2, 2, 752, 754, 5, 74, 38, 2, 753, 752, 3, 2, 2, 2, 753, 754, 3, 2, 2, 2, 754, 755, 3, 2, 2, 2, 755, 764, 7, 9, 2, 2, 756, 757, 12, 27, 2, 2, 757, 758, 7, 6, 2, 2, 758, 759, 5, 70, 36, 2, 759, 760, 7, 7, 2, 2, 760, 764, 3, 2, 2, 2, 761, 762, 12, 24, 2, 2, 762, 764, 9, 2, 2, 2, 763, 705, 3, 2, 2, 2, 763, 708, 3, 2, 2, 2, 763, 711, 3, 2, 2, 2, 763, 714, 3, 2, 2, 2, 763, 717, 3, 2, 2, 2, 763, 720, 3, 2, 2, 2, 763, 723, 3, 2, 2, 2, 763, 726, 3, 2, 2, 2, 763, 729, 3, 2, 2, 2, 763, 732, 3, 2, 2, 2, 763, 738, 3, 2, 2, 2, 763, 741, 3, 2, 2, 2, 763, 744, 3, 2, 2, 2, 763, 747, 3, 2, 2, 2, 763, 750, 3, 2, 2, 2, 763, 756, 3, 2, 2, 2, 763, 761, 3, 2, 2, 2, 764, 767, 3, 2, 2, 2, 765, 763, 3, 2, 2, 2, 765, 766, 3, 2, 2, 2, 766, 73, 3, 2, 2, 2, 767, 765, 3, 2, 2, 2, 768, 773, 5, 72, 37, 2, 769, 770, 7, 12, 2, 2, 770, 772, 5, 72, 37, 2, 771, 769, 3, 2, 2, 2, 772, 775, 3, 2, 2, 2, 773, 771, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 75, 3, 2, 2, 2, 775, 773, 3, 2, 2, 2, 776, 778, 7, 86, 2, 2, 777, 779, 5, 78, 40, 2, 778, 777, 3, 2, 2, 2, 778, 779, 3, 2, 2, 2, 779, 780, 3, 2, 2, 2, 780, 781, 7, 96, 2, 2, 781, 77, 3, 2, 2, 2, 782, 783, 7, 8, 2, 2, 783, 788, 5, 80, 41, 2, 784, 785, 7, 12, 2, 2, 785, 787, 5, 80, 41, 2, 786, 784, 3, 2, 2, 2, 787, 790, 3, 2, 2, 2, 788, 786, 3, 2, 2, 2, 788, 789, 3, 2, 2, 2, 789, 791, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 791, 792, 7, 9, 2, 2, 792, 79, 3, 2, 2, 2, 793, 794, 7, 87, 2, 2, 794, 809, 7, 119, 2, 2, 795, 796, 7, 88, 2, 2, 796, 809, 7, 118, 2, 2, 797, 798, 7, 89, 2, 2, 798, 809, 7, 119, 2, 2, 799, 800, 7, 90, 2, 2, 800, 809, 5, 72, 37, 2, 801, 802, 7, 91, 2, 2, 802, 809, 5, 72, 37, 2, 803, 806, 7, 43, 2, 2, 804, 807, 7, 55, 2, 2, 805, 807, 5, 72, 37, 2, 806, 804, 3, 2, 2, 2, 806, 805, 3, 2, 2, 2, 807, 809, 3, 2, 2, 2, 808, 793, 3, 2, 2, 2, 808, 795, 3, 2, 2, 2, 808, 797, 3, 2, 2, 2, 808, 799, 3, 2, 2, 2, 808, 801, 3, 2, 2, 2, 808, 803, 3, 2, 2, 2, 809, 81, 3, 2, 2, 2, 810, 812, 5, 84, 43, 2, 811, 810, 3, 2, 2, 2, 812, 815, 3, 2, 2, 2, 813, 811, 3, 2, 2, 2, 813, 814, 3, 2, 2, 2, 814, 83, 3, 2, 2, 2, 815, 813, 3, 2, 2, 2, 816, 820, 5, 86, 44, 2, 817, 820, 5, 88, 45, 2, 818, 820, 5, 90, 46, 2, 819, 816, 3, 2, 2, 2, 819, 817, 3, 2, 2, 2, 819, 818, 3, 2, 2, 2, 820, 85, 3, 2, 2, 2, 821, 822, 7, 156, 2, 2, 822, 826, 7, 127, 2, 2, 823, 824, 7, 155, 2, 2, 824, 826, 7, 127, 2, 2, 825, 821, 3, 2, 2, 2, 825, 823, 3, 2, 2, 2, 826, 87, 3, 2, 2, 2, 827, 829, 7, 125, 2, 2, 828, 830, 5, 92, 47, 2, 829, 828, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 89, 3, 2, 2, 2, 831, 832, 7, 124, 2, 2, 832, 837, 5, 94, 48, 2, 833, 834, 7, 128, 2, 2, 834, 836, 5, 94, 48, 2, 835, 833, 3, 2, 2, 2, 836, 839, 3, 2, 2, 2, 837, 835, 3, 2, 2, 2, 837, 838, 3, 2, 2, 2, 838, 91, 3, 2, 2, 2, 839, 837, 3, 2, 2, 2, 840, 864, 5, 94, 48, 2, 841, 842, 7, 126, 2, 2, 842, 864, 5, 94, 48, 2, 843, 844, 5, 94, 48, 2, 844, 845, 7, 128, 2, 2, 845, 846, 7, 156, 2, 2, 846, 864, 3, 2, 2, 2, 847, 848, 7, 129, 2, 2, 848, 849, 5, 94, 48, 2, 849, 850, 7, 130, 2, 2, 850, 851, 7, 128, 2, 2, 851, 852, 7, 156, 2, 2, 852, 864, 3, 2, 2, 2, 853, 854, 7, 129, 2, 2, 854, 855, 5, 94, 48, 2, 855, 856, 7, 128, 2, 2, 856, 857, 7, 156, 2, 2, 857, 858, 7, 130, 2, 2, 858, 864, 3, 2, 2, 2, 859, 860, 7, 129, 2, 2, 860, 861, 5, 94, 48, 2, 861, 862, 7, 130, 2, 2, 862, 864, 3, 2, 2, 2, 863, 840, 3, 2, 2, 2, 863, 841, 3, 2, 2, 2, 863, 843, 3, 2, 2, 2, 863, 847, 3, 2, 2, 2, 863, 853, 3, 2, 2, 2, 863, 859, 3, 2, 2, 2, 864, 93, 3, 2, 2, 2, 865, 866, 8, 48, 1, 2, 866, 867, 7, 131, 2, 2, 867, 868, 5, 94, 48, 2, 868, 869, 7, 132, 2, 2, 869, 880, 3, 2, 2, 2, 870, 871, 9, 9, 2, 2, 871, 880, 5, 94, 48, 10, 872, 880, 7, 156, 2, 2, 873, 880, 7, 154, 2, 2, 874, 875, 7, 142, 2, 2, 875, 876, 7, 156, 2, 2, 876, 880, 7, 143, 2, 2, 877, 880, 7, 144, 2, 2, 878, 880, 7, 153, 2, 2, 879, 865, 3, 2, 2, 2, 879, 870, 3, 2, 2, 2, 879, 872, 3, 2, 2, 2, 879, 873, 3, 2, 2, 2, 879, 874, 3, 2, 2, 2, 879, 877, 3, 2, 2, 2, 879, 878, 3, 2, 2, 2, 880, 895, 3, 2, 2, 2, 881, 882, 12, 12, 2, 2, 882, 883, 7, 133, 2, 2, 883, 894, 5, 94, 48, 13, 884, 885, 12, 11, 2, 2, 885, 886, 9, 10, 2, 2, 886, 894, 5, 94, 48, 12, 887, 888, 12, 9, 2, 2, 888, 889, 9, 11, 2, 2, 889, 894, 5, 94, 48, 10, 890, 891, 12, 8, 2, 2, 891, 892, 9, 12, 2, 2, 892, 894, 5, 94, 48, 9, 893, 881, 3, 2, 2, 2, 893, 884, 3, 2, 2, 2, 893, 887, 3, 2, 2, 2, 893, 890, 3, 2, 2, 2, 894, 897, 3, 2, 2, 2, 895, 893, 3, 2, 2, 2, 895, 896, 3, 2, 2, 2, 896, 95, 3, 2, 2, 2, 897, 895, 3, 2, 2, 2, 90, 105, 110, 118, 135, 144, 154, 160, 168, 175, 184, 189, 195, 200, 205, 212, 219, 224, 236, 239, 241, 252, 259, 264, 270, 272, 280, 286, 298, 312, 318, 324, 330, 335, 339, 348, 355, 362, 373, 440, 444, 455, 475, 484, 489, 494, 501, 514, 519, 531, 545, 564, 573, 580, 585, 590, 592, 598, 605, 611, 614, 622, 625, 628, 638, 650, 658, 664, 668, 689, 699, 703, 753, 763, 765, 773, 778, 788, 806, 808, 813, 819, 825, 829, 837, 863, 879, 893, 895] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 165, 905, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 7, 4, 104, 10, 4, 12, 4, 14, 4, 107, 11, 4, 3, 5, 3, 5, 5, 5, 111, 10, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 5, 6, 119, 10, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 136, 10, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 7, 9, 143, 10, 9, 12, 9, 14, 9, 146, 11, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 153, 10, 9, 12, 9, 14, 9, 156, 11, 9, 3, 9, 7, 9, 159, 10, 9, 12, 9, 14, 9, 162, 11, 9, 3, 10, 3, 10, 3, 10, 7, 10, 167, 10, 10, 12, 10, 14, 10, 170, 11, 10, 3, 10, 3, 10, 7, 10, 174, 10, 10, 12, 10, 14, 10, 177, 11, 10, 3, 10, 3, 10, 3, 11, 3, 11, 7, 11, 183, 10, 11, 12, 11, 14, 11, 186, 11, 11, 3, 11, 3, 11, 5, 11, 190, 10, 11, 3, 11, 3, 11, 7, 11, 194, 10, 11, 12, 11, 14, 11, 197, 11, 11, 3, 11, 3, 11, 5, 11, 201, 10, 11, 3, 12, 7, 12, 204, 10, 12, 12, 12, 14, 12, 207, 11, 12, 3, 12, 3, 12, 7, 12, 211, 10, 12, 12, 12, 14, 12, 214, 11, 12, 3, 13, 3, 13, 7, 13, 218, 10, 13, 12, 13, 14, 13, 221, 11, 13, 3, 14, 3, 14, 5, 14, 225, 10, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 5, 15, 237, 10, 15, 3, 15, 7, 15, 240, 10, 15, 12, 15, 14, 15, 243, 11, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 253, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 5, 16, 260, 10, 16, 3, 16, 3, 16, 3, 16, 5, 16, 265, 10, 16, 3, 16, 3, 16, 3, 16, 3, 16, 7, 16, 271, 10, 16, 12, 16, 14, 16, 274, 11, 16, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 5, 18, 281, 10, 18, 3, 18, 3, 18, 6, 18, 285, 10, 18, 13, 18, 14, 18, 286, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 299, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 311, 10, 22, 12, 22, 14, 22, 314, 11, 22, 3, 23, 3, 23, 3, 23, 5, 23, 319, 10, 23, 3, 24, 3, 24, 7, 24, 323, 10, 24, 12, 24, 14, 24, 326, 11, 24, 3, 24, 3, 24, 3, 24, 5, 24, 331, 10, 24, 3, 24, 3, 24, 3, 24, 5, 24, 336, 10, 24, 3, 25, 3, 25, 5, 25, 340, 10, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 7, 26, 347, 10, 26, 12, 26, 14, 26, 350, 11, 26, 3, 27, 3, 27, 7, 27, 354, 10, 27, 12, 27, 14, 27, 357, 11, 27, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 363, 10, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 402, 10, 28, 12, 28, 14, 28, 405, 11, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 445, 10, 28, 12, 28, 14, 28, 448, 11, 28, 3, 28, 5, 28, 451, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 462, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 482, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 489, 10, 29, 12, 29, 14, 29, 492, 11, 29, 3, 29, 3, 29, 5, 29, 496, 10, 29, 3, 30, 6, 30, 499, 10, 30, 13, 30, 14, 30, 500, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 508, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 521, 10, 31, 3, 31, 7, 31, 524, 10, 31, 12, 31, 14, 31, 527, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 536, 10, 31, 12, 31, 14, 31, 539, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 550, 10, 31, 12, 31, 14, 31, 553, 11, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 571, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 580, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 587, 10, 31, 3, 32, 6, 32, 590, 10, 32, 13, 32, 14, 32, 591, 3, 32, 3, 32, 3, 32, 5, 32, 597, 10, 32, 5, 32, 599, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 605, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 612, 10, 34, 3, 34, 3, 34, 7, 34, 616, 10, 34, 12, 34, 14, 34, 619, 11, 34, 5, 34, 621, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 629, 10, 34, 3, 35, 5, 35, 632, 10, 35, 3, 35, 5, 35, 635, 10, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 7, 36, 643, 10, 36, 12, 36, 14, 36, 646, 11, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 657, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 665, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 671, 10, 37, 3, 37, 3, 37, 5, 37, 675, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 694, 10, 37, 12, 37, 14, 37, 697, 11, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 6, 37, 704, 10, 37, 13, 37, 14, 37, 705, 3, 37, 3, 37, 5, 37, 710, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 760, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 770, 10, 37, 12, 37, 14, 37, 773, 11, 37, 3, 38, 3, 38, 3, 38, 7, 38, 778, 10, 38, 12, 38, 14, 38, 781, 11, 38, 3, 39, 3, 39, 5, 39, 785, 10, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 793, 10, 40, 12, 40, 14, 40, 796, 11, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 813, 10, 41, 5, 41, 815, 10, 41, 3, 42, 7, 42, 818, 10, 42, 12, 42, 14, 42, 821, 11, 42, 3, 43, 3, 43, 3, 43, 5, 43, 826, 10, 43, 3, 44, 3, 44, 3, 44, 3, 44, 5, 44, 832, 10, 44, 3, 45, 3, 45, 5, 45, 836, 10, 45, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 842, 10, 46, 12, 46, 14, 46, 845, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 5, 47, 870, 10, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 886, 10, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 7, 48, 900, 10, 48, 12, 48, 14, 48, 903, 11, 48, 3, 48, 2, 9, 16, 28, 30, 42, 70, 72, 94, 49, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 2, 13, 3, 2, 23, 24, 5, 2, 18, 19, 25, 26, 93, 93, 4, 2, 33, 33, 36, 36, 3, 2, 29, 30, 3, 2, 20, 22, 3, 2, 18, 19, 3, 2, 31, 36, 3, 2, 137, 140, 3, 2, 135, 136, 3, 2, 141, 142, 3, 2, 137, 138, 2, 1038, 2, 96, 3, 2, 2, 2, 4, 99, 3, 2, 2, 2, 6, 105, 3, 2, 2, 2, 8, 110, 3, 2, 2, 2, 10, 118, 3, 2, 2, 2, 12, 135, 3, 2, 2, 2, 14, 137, 3, 2, 2, 2, 16, 140, 3, 2, 2, 2, 18, 163, 3, 2, 2, 2, 20, 200, 3, 2, 2, 2, 22, 205, 3, 2, 2, 2, 24, 215, 3, 2, 2, 2, 26, 222, 3, 2, 2, 2, 28, 228, 3, 2, 2, 2, 30, 259, 3, 2, 2, 2, 32, 275, 3, 2, 2, 2, 34, 278, 3, 2, 2, 2, 36, 290, 3, 2, 2, 2, 38, 293, 3, 2, 2, 2, 40, 296, 3, 2, 2, 2, 42, 304, 3, 2, 2, 2, 44, 315, 3, 2, 2, 2, 46, 320, 3, 2, 2, 2, 48, 337, 3, 2, 2, 2, 50, 343, 3, 2, 2, 2, 52, 362, 3, 2, 2, 2, 54, 450, 3, 2, 2, 2, 56, 495, 3, 2, 2, 2, 58, 498, 3, 2, 2, 2, 60, 586, 3, 2, 2, 2, 62, 589, 3, 2, 2, 2, 64, 600, 3, 2, 2, 2, 66, 628, 3, 2, 2, 2, 68, 634, 3, 2, 2, 2, 70, 636, 3, 2, 2, 2, 72, 709, 3, 2, 2, 2, 74, 774, 3, 2, 2, 2, 76, 782, 3, 2, 2, 2, 78, 788, 3, 2, 2, 2, 80, 814, 3, 2, 2, 2, 82, 819, 3, 2, 2, 2, 84, 825, 3, 2, 2, 2, 86, 831, 3, 2, 2, 2, 88, 833, 3, 2, 2, 2, 90, 837, 3, 2, 2, 2, 92, 869, 3, 2, 2, 2, 94, 885, 3, 2, 2, 2, 96, 97, 5, 6, 4, 2, 97, 98, 7, 2, 2, 3, 98, 3, 3, 2, 2, 2, 99, 100, 5, 82, 42, 2, 100, 101, 7, 2, 2, 3, 101, 5, 3, 2, 2, 2, 102, 104, 5, 8, 5, 2, 103, 102, 3, 2, 2, 2, 104, 107, 3, 2, 2, 2, 105, 103, 3, 2, 2, 2, 105, 106, 3, 2, 2, 2, 106, 7, 3, 2, 2, 2, 107, 105, 3, 2, 2, 2, 108, 111, 5, 12, 7, 2, 109, 111, 5, 10, 6, 2, 110, 108, 3, 2, 2, 2, 110, 109, 3, 2, 2, 2, 111, 9, 3, 2, 2, 2, 112, 113, 7, 98, 2, 2, 113, 119, 7, 162, 2, 2, 114, 115, 7, 99, 2, 2, 115, 119, 7, 162, 2, 2, 116, 117, 7, 99, 2, 2, 117, 119, 7, 161, 2, 2, 118, 112, 3, 2, 2, 2, 118, 114, 3, 2, 2, 2, 118, 116, 3, 2, 2, 2, 119, 11, 3, 2, 2, 2, 120, 121, 5, 14, 8, 2, 121, 122, 7, 10, 2, 2, 122, 136, 3, 2, 2, 2, 123, 124, 5, 34, 18, 2, 124, 125, 7, 10, 2, 2, 125, 136, 3, 2, 2, 2, 126, 127, 5, 40, 21, 2, 127, 128, 7, 10, 2, 2, 128, 136, 3, 2, 2, 2, 129, 136, 5, 46, 24, 2, 130, 136, 5, 76, 39, 2, 131, 136, 5, 54, 28, 2, 132, 133, 5, 18, 10, 2, 133, 134, 7, 10, 2, 2, 134, 136, 3, 2, 2, 2, 135, 120, 3, 2, 2, 2, 135, 123, 3, 2, 2, 2, 135, 126, 3, 2, 2, 2, 135, 129, 3, 2, 2, 2, 135, 130, 3, 2, 2, 2, 135, 131, 3, 2, 2, 2, 135, 132, 3, 2, 2, 2, 136, 13, 3, 2, 2, 2, 137, 138, 5, 22, 12, 2, 138, 139, 5, 16, 9, 2, 139, 15, 3, 2, 2, 2, 140, 144, 8, 9, 1, 2, 141, 143, 5, 24, 13, 2, 142, 141, 3, 2, 2, 2, 143, 146, 3, 2, 2, 2, 144, 142, 3, 2, 2, 2, 144, 145, 3, 2, 2, 2, 145, 147, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 147, 148, 5, 20, 11, 2, 148, 160, 3, 2, 2, 2, 149, 150, 12, 3, 2, 2, 150, 154, 7, 12, 2, 2, 151, 153, 5, 24, 13, 2, 152, 151, 3, 2, 2, 2, 153, 156, 3, 2, 2, 2, 154, 152, 3, 2, 2, 2, 154, 155, 3, 2, 2, 2, 155, 157, 3, 2, 2, 2, 156, 154, 3, 2, 2, 2, 157, 159, 5, 20, 11, 2, 158, 149, 3, 2, 2, 2, 159, 162, 3, 2, 2, 2, 160, 158, 3, 2, 2, 2, 160, 161, 3, 2, 2, 2, 161, 17, 3, 2, 2, 2, 162, 160, 3, 2, 2, 2, 163, 164, 7, 41, 2, 2, 164, 168, 5, 22, 12, 2, 165, 167, 5, 24, 13, 2, 166, 165, 3, 2, 2, 2, 167, 170, 3, 2, 2, 2, 168, 166, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 171, 3, 2, 2, 2, 170, 168, 3, 2, 2, 2, 171, 175, 7, 119, 2, 2, 172, 174, 5, 26, 14, 2, 173, 172, 3, 2, 2, 2, 174, 177, 3, 2, 2, 2, 175, 173, 3, 2, 2, 2, 175, 176, 3, 2, 2, 2, 176, 178, 3, 2, 2, 2, 177, 175, 3, 2, 2, 2, 178, 179, 8, 10, 1, 2, 179, 19, 3, 2, 2, 2, 180, 184, 7, 119, 2, 2, 181, 183, 5, 26, 14, 2, 182, 181, 3, 2, 2, 2, 183, 186, 3, 2, 2, 2, 184, 182, 3, 2, 2, 2, 184, 185, 3, 2, 2, 2, 185, 189, 3, 2, 2, 2, 186, 184, 3, 2, 2, 2, 187, 188, 7, 39, 2, 2, 188, 190, 5, 72, 37, 2, 189, 187, 3, 2, 2, 2, 189, 190, 3, 2, 2, 2, 190, 201, 3, 2, 2, 2, 191, 195, 7, 119, 2, 2, 192, 194, 5, 26, 14, 2, 193, 192, 3, 2, 2, 2, 194, 197, 3, 2, 2, 2, 195, 193, 3, 2, 2, 2, 195, 196, 3, 2, 2, 2, 196, 198, 3, 2, 2, 2, 197, 195, 3, 2, 2, 2, 198, 199, 7, 39, 2, 2, 199, 201, 5, 76, 39, 2, 200, 180, 3, 2, 2, 2, 200, 191, 3, 2, 2, 2, 201, 21, 3, 2, 2, 2, 202, 204, 5, 56, 29, 2, 203, 202, 3, 2, 2, 2, 204, 207, 3, 2, 2, 2, 205, 203, 3, 2, 2, 2, 205, 206, 3, 2, 2, 2, 206, 208, 3, 2, 2, 2, 207, 205, 3, 2, 2, 2, 208, 212, 5, 30, 16, 2, 209, 211, 5, 56, 29, 2, 210, 209, 3, 2, 2, 2, 211, 214, 3, 2, 2, 2, 212, 210, 3, 2, 2, 2, 212, 213, 3, 2, 2, 2, 213, 23, 3, 2, 2, 2, 214, 212, 3, 2, 2, 2, 215, 219, 7, 20, 2, 2, 216, 218, 5, 56, 29, 2, 217, 216, 3, 2, 2, 2, 218, 221, 3, 2, 2, 2, 219, 217, 3, 2, 2, 2, 219, 220, 3, 2, 2, 2, 220, 25, 3, 2, 2, 2, 221, 219, 3, 2, 2, 2, 222, 224, 7, 6, 2, 2, 223, 225, 5, 72, 37, 2, 224, 223, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 227, 7, 7, 2, 2, 227, 27, 3, 2, 2, 2, 228, 229, 8, 15, 1, 2, 229, 230, 5, 30, 16, 2, 230, 241, 3, 2, 2, 2, 231, 232, 12, 4, 2, 2, 232, 240, 7, 20, 2, 2, 233, 234, 12, 3, 2, 2, 234, 236, 7, 6, 2, 2, 235, 237, 5, 72, 37, 2, 236, 235, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 238, 3, 2, 2, 2, 238, 240, 7, 7, 2, 2, 239, 231, 3, 2, 2, 2, 239, 233, 3, 2, 2, 2, 240, 243, 3, 2, 2, 2, 241, 239, 3, 2, 2, 2, 241, 242, 3, 2, 2, 2, 242, 29, 3, 2, 2, 2, 243, 241, 3, 2, 2, 2, 244, 245, 8, 16, 1, 2, 245, 246, 7, 8, 2, 2, 246, 247, 5, 30, 16, 2, 247, 248, 7, 9, 2, 2, 248, 260, 3, 2, 2, 2, 249, 260, 7, 95, 2, 2, 250, 252, 7, 94, 2, 2, 251, 253, 7, 95, 2, 2, 252, 251, 3, 2, 2, 2, 252, 253, 3, 2, 2, 2, 253, 260, 3, 2, 2, 2, 254, 260, 5, 34, 18, 2, 255, 260, 5, 32, 17, 2, 256, 260, 5, 40, 21, 2, 257, 260, 5, 38, 20, 2, 258, 260, 7, 3, 2, 2, 259, 244, 3, 2, 2, 2, 259, 249, 3, 2, 2, 2, 259, 250, 3, 2, 2, 2, 259, 254, 3, 2, 2, 2, 259, 255, 3, 2, 2, 2, 259, 256, 3, 2, 2, 2, 259, 257, 3, 2, 2, 2, 259, 258, 3, 2, 2, 2, 260, 272, 3, 2, 2, 2, 261, 262, 12, 9, 2, 2, 262, 264, 7, 6, 2, 2, 263, 265, 5, 72, 37, 2, 264, 263, 3, 2, 2, 2, 264, 265, 3, 2, 2, 2, 265, 266, 3, 2, 2, 2, 266, 271, 7, 7, 2, 2, 267, 268, 12, 8, 2, 2, 268, 269, 7, 8, 2, 2, 269, 271, 7, 9, 2, 2, 270, 261, 3, 2, 2, 2, 270, 267, 3, 2, 2, 2, 271, 274, 3, 2, 2, 2, 272, 270, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 31, 3, 2, 2, 2, 274, 272, 3, 2, 2, 2, 275, 276, 7, 82, 2, 2, 276, 277, 7, 119, 2, 2, 277, 33, 3, 2, 2, 2, 278, 280, 7, 82, 2, 2, 279, 281, 7, 119, 2, 2, 280, 279, 3, 2, 2, 2, 280, 281, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 284, 7, 4, 2, 2, 283, 285, 5, 36, 19, 2, 284, 283, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 284, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 289, 7, 5, 2, 2, 289, 35, 3, 2, 2, 2, 290, 291, 5, 14, 8, 2, 291, 292, 7, 10, 2, 2, 292, 37, 3, 2, 2, 2, 293, 294, 7, 83, 2, 2, 294, 295, 7, 119, 2, 2, 295, 39, 3, 2, 2, 2, 296, 298, 7, 83, 2, 2, 297, 299, 7, 119, 2, 2, 298, 297, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 301, 7, 4, 2, 2, 301, 302, 5, 42, 22, 2, 302, 303, 7, 5, 2, 2, 303, 41, 3, 2, 2, 2, 304, 305, 8, 22, 1, 2, 305, 306, 5, 44, 23, 2, 306, 312, 3, 2, 2, 2, 307, 308, 12, 3, 2, 2, 308, 309, 7, 12, 2, 2, 309, 311, 5, 44, 23, 2, 310, 307, 3, 2, 2, 2, 311, 314, 3, 2, 2, 2, 312, 310, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 43, 3, 2, 2, 2, 314, 312, 3, 2, 2, 2, 315, 318, 7, 119, 2, 2, 316, 317, 7, 39, 2, 2, 317, 319, 5, 72, 37, 2, 318, 316, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 45, 3, 2, 2, 2, 320, 324, 5, 22, 12, 2, 321, 323, 5, 24, 13, 2, 322, 321, 3, 2, 2, 2, 323, 326, 3, 2, 2, 2, 324, 322, 3, 2, 2, 2, 324, 325, 3, 2, 2, 2, 325, 327, 3, 2, 2, 2, 326, 324, 3, 2, 2, 2, 327, 328, 7, 119, 2, 2, 328, 330, 7, 8, 2, 2, 329, 331, 5, 50, 26, 2, 330, 329, 3, 2, 2, 2, 330, 331, 3, 2, 2, 2, 331, 332, 3, 2, 2, 2, 332, 335, 7, 9, 2, 2, 333, 336, 5, 48, 25, 2, 334, 336, 7, 10, 2, 2, 335, 333, 3, 2, 2, 2, 335, 334, 3, 2, 2, 2, 336, 47, 3, 2, 2, 2, 337, 339, 7, 4, 2, 2, 338, 340, 5, 58, 30, 2, 339, 338, 3, 2, 2, 2, 339, 340, 3, 2, 2, 2, 340, 341, 3, 2, 2, 2, 341, 342, 7, 5, 2, 2, 342, 49, 3, 2, 2, 2, 343, 348, 5, 52, 27, 2, 344, 345, 7, 12, 2, 2, 345, 347, 5, 52, 27, 2, 346, 344, 3, 2, 2, 2, 347, 350, 3, 2, 2, 2, 348, 346, 3, 2, 2, 2, 348, 349, 3, 2, 2, 2, 349, 51, 3, 2, 2, 2, 350, 348, 3, 2, 2, 2, 351, 355, 5, 22, 12, 2, 352, 354, 5, 24, 13, 2, 353, 352, 3, 2, 2, 2, 354, 357, 3, 2, 2, 2, 355, 353, 3, 2, 2, 2, 355, 356, 3, 2, 2, 2, 356, 358, 3, 2, 2, 2, 357, 355, 3, 2, 2, 2, 358, 359, 7, 119, 2, 2, 359, 363, 3, 2, 2, 2, 360, 363, 7, 95, 2, 2, 361, 363, 7, 14, 2, 2, 362, 351, 3, 2, 2, 2, 362, 360, 3, 2, 2, 2, 362, 361, 3, 2, 2, 2, 363, 53, 3, 2, 2, 2, 364, 365, 7, 100, 2, 2, 365, 366, 7, 44, 2, 2, 366, 367, 3, 2, 2, 2, 367, 368, 7, 8, 2, 2, 368, 369, 7, 119, 2, 2, 369, 451, 7, 9, 2, 2, 370, 371, 7, 100, 2, 2, 371, 372, 7, 48, 2, 2, 372, 373, 3, 2, 2, 2, 373, 374, 7, 8, 2, 2, 374, 375, 7, 119, 2, 2, 375, 451, 7, 9, 2, 2, 376, 377, 7, 100, 2, 2, 377, 378, 7, 45, 2, 2, 378, 379, 3, 2, 2, 2, 379, 380, 7, 8, 2, 2, 380, 381, 7, 120, 2, 2, 381, 451, 7, 9, 2, 2, 382, 383, 7, 100, 2, 2, 383, 384, 7, 46, 2, 2, 384, 385, 3, 2, 2, 2, 385, 386, 7, 8, 2, 2, 386, 387, 7, 120, 2, 2, 387, 451, 7, 9, 2, 2, 388, 389, 7, 100, 2, 2, 389, 390, 7, 47, 2, 2, 390, 391, 3, 2, 2, 2, 391, 392, 7, 8, 2, 2, 392, 393, 7, 120, 2, 2, 393, 451, 7, 9, 2, 2, 394, 395, 7, 100, 2, 2, 395, 396, 7, 42, 2, 2, 396, 397, 3, 2, 2, 2, 397, 398, 7, 8, 2, 2, 398, 403, 7, 110, 2, 2, 399, 400, 7, 12, 2, 2, 400, 402, 7, 110, 2, 2, 401, 399, 3, 2, 2, 2, 402, 405, 3, 2, 2, 2, 403, 401, 3, 2, 2, 2, 403, 404, 3, 2, 2, 2, 404, 406, 3, 2, 2, 2, 405, 403, 3, 2, 2, 2, 406, 451, 7, 9, 2, 2, 407, 408, 7, 100, 2, 2, 408, 409, 7, 43, 2, 2, 409, 410, 3, 2, 2, 2, 410, 411, 7, 8, 2, 2, 411, 412, 7, 110, 2, 2, 412, 451, 7, 9, 2, 2, 413, 414, 7, 100, 2, 2, 414, 415, 7, 49, 2, 2, 415, 416, 3, 2, 2, 2, 416, 417, 7, 8, 2, 2, 417, 418, 7, 119, 2, 2, 418, 451, 7, 9, 2, 2, 419, 420, 7, 100, 2, 2, 420, 421, 7, 50, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 7, 8, 2, 2, 423, 424, 7, 119, 2, 2, 424, 451, 7, 9, 2, 2, 425, 426, 7, 100, 2, 2, 426, 427, 7, 51, 2, 2, 427, 428, 3, 2, 2, 2, 428, 429, 7, 8, 2, 2, 429, 430, 7, 119, 2, 2, 430, 451, 7, 9, 2, 2, 431, 432, 7, 100, 2, 2, 432, 433, 7, 67, 2, 2, 433, 434, 3, 2, 2, 2, 434, 435, 7, 8, 2, 2, 435, 436, 7, 68, 2, 2, 436, 451, 7, 9, 2, 2, 437, 438, 7, 100, 2, 2, 438, 439, 7, 69, 2, 2, 439, 440, 3, 2, 2, 2, 440, 441, 7, 8, 2, 2, 441, 446, 7, 119, 2, 2, 442, 443, 7, 12, 2, 2, 443, 445, 7, 119, 2, 2, 444, 442, 3, 2, 2, 2, 445, 448, 3, 2, 2, 2, 446, 444, 3, 2, 2, 2, 446, 447, 3, 2, 2, 2, 447, 449, 3, 2, 2, 2, 448, 446, 3, 2, 2, 2, 449, 451, 7, 9, 2, 2, 450, 364, 3, 2, 2, 2, 450, 370, 3, 2, 2, 2, 450, 376, 3, 2, 2, 2, 450, 382, 3, 2, 2, 2, 450, 388, 3, 2, 2, 2, 450, 394, 3, 2, 2, 2, 450, 407, 3, 2, 2, 2, 450, 413, 3, 2, 2, 2, 450, 419, 3, 2, 2, 2, 450, 425, 3, 2, 2, 2, 450, 431, 3, 2, 2, 2, 450, 437, 3, 2, 2, 2, 451, 55, 3, 2, 2, 2, 452, 496, 7, 52, 2, 2, 453, 454, 7, 55, 2, 2, 454, 455, 7, 8, 2, 2, 455, 456, 7, 110, 2, 2, 456, 496, 7, 9, 2, 2, 457, 461, 7, 60, 2, 2, 458, 459, 7, 8, 2, 2, 459, 460, 7, 119, 2, 2, 460, 462, 7, 9, 2, 2, 461, 458, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 496, 3, 2, 2, 2, 463, 496, 7, 62, 2, 2, 464, 496, 7, 63, 2, 2, 465, 466, 7, 61, 2, 2, 466, 467, 7, 8, 2, 2, 467, 468, 7, 110, 2, 2, 468, 496, 7, 9, 2, 2, 469, 496, 7, 57, 2, 2, 470, 496, 7, 58, 2, 2, 471, 496, 7, 64, 2, 2, 472, 496, 7, 65, 2, 2, 473, 496, 7, 53, 2, 2, 474, 496, 7, 54, 2, 2, 475, 496, 7, 56, 2, 2, 476, 496, 7, 66, 2, 2, 477, 481, 7, 59, 2, 2, 478, 479, 7, 8, 2, 2, 479, 480, 7, 119, 2, 2, 480, 482, 7, 9, 2, 2, 481, 478, 3, 2, 2, 2, 481, 482, 3, 2, 2, 2, 482, 496, 3, 2, 2, 2, 483, 484, 7, 42, 2, 2, 484, 485, 7, 8, 2, 2, 485, 490, 7, 110, 2, 2, 486, 487, 7, 12, 2, 2, 487, 489, 7, 110, 2, 2, 488, 486, 3, 2, 2, 2, 489, 492, 3, 2, 2, 2, 490, 488, 3, 2, 2, 2, 490, 491, 3, 2, 2, 2, 491, 493, 3, 2, 2, 2, 492, 490, 3, 2, 2, 2, 493, 496, 7, 9, 2, 2, 494, 496, 7, 68, 2, 2, 495, 452, 3, 2, 2, 2, 495, 453, 3, 2, 2, 2, 495, 457, 3, 2, 2, 2, 495, 463, 3, 2, 2, 2, 495, 464, 3, 2, 2, 2, 495, 465, 3, 2, 2, 2, 495, 469, 3, 2, 2, 2, 495, 470, 3, 2, 2, 2, 495, 471, 3, 2, 2, 2, 495, 472, 3, 2, 2, 2, 495, 473, 3, 2, 2, 2, 495, 474, 3, 2, 2, 2, 495, 475, 3, 2, 2, 2, 495, 476, 3, 2, 2, 2, 495, 477, 3, 2, 2, 2, 495, 483, 3, 2, 2, 2, 495, 494, 3, 2, 2, 2, 496, 57, 3, 2, 2, 2, 497, 499, 5, 60, 31, 2, 498, 497, 3, 2, 2, 2, 499, 500, 3, 2, 2, 2, 500, 498, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 59, 3, 2, 2, 2, 502, 503, 5, 14, 8, 2, 503, 504, 7, 10, 2, 2, 504, 587, 3, 2, 2, 2, 505, 507, 7, 4, 2, 2, 506, 508, 5, 58, 30, 2, 507, 506, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 509, 3, 2, 2, 2, 509, 587, 7, 5, 2, 2, 510, 511, 5, 70, 36, 2, 511, 512, 7, 10, 2, 2, 512, 587, 3, 2, 2, 2, 513, 514, 7, 70, 2, 2, 514, 515, 7, 8, 2, 2, 515, 516, 5, 70, 36, 2, 516, 517, 7, 9, 2, 2, 517, 520, 5, 60, 31, 2, 518, 519, 7, 71, 2, 2, 519, 521, 5, 60, 31, 2, 520, 518, 3, 2, 2, 2, 520, 521, 3, 2, 2, 2, 521, 587, 3, 2, 2, 2, 522, 524, 5, 56, 29, 2, 523, 522, 3, 2, 2, 2, 524, 527, 3, 2, 2, 2, 525, 523, 3, 2, 2, 2, 525, 526, 3, 2, 2, 2, 526, 528, 3, 2, 2, 2, 527, 525, 3, 2, 2, 2, 528, 529, 7, 72, 2, 2, 529, 530, 7, 8, 2, 2, 530, 531, 5, 70, 36, 2, 531, 532, 7, 9, 2, 2, 532, 533, 5, 60, 31, 2, 533, 587, 3, 2, 2, 2, 534, 536, 5, 56, 29, 2, 535, 534, 3, 2, 2, 2, 536, 539, 3, 2, 2, 2, 537, 535, 3, 2, 2, 2, 537, 538, 3, 2, 2, 2, 538, 540, 3, 2, 2, 2, 539, 537, 3, 2, 2, 2, 540, 541, 7, 73, 2, 2, 541, 542, 5, 60, 31, 2, 542, 543, 7, 72, 2, 2, 543, 544, 7, 8, 2, 2, 544, 545, 5, 70, 36, 2, 545, 546, 7, 9, 2, 2, 546, 547, 7, 10, 2, 2, 547, 587, 3, 2, 2, 2, 548, 550, 5, 56, 29, 2, 549, 548, 3, 2, 2, 2, 550, 553, 3, 2, 2, 2, 551, 549, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 554, 3, 2, 2, 2, 553, 551, 3, 2, 2, 2, 554, 555, 7, 74, 2, 2, 555, 556, 7, 8, 2, 2, 556, 557, 5, 66, 34, 2, 557, 558, 7, 9, 2, 2, 558, 559, 5, 60, 31, 2, 559, 587, 3, 2, 2, 2, 560, 561, 7, 75, 2, 2, 561, 562, 7, 8, 2, 2, 562, 563, 5, 70, 36, 2, 563, 564, 7, 9, 2, 2, 564, 565, 7, 4, 2, 2, 565, 566, 5, 62, 32, 2, 566, 567, 7, 5, 2, 2, 567, 587, 3, 2, 2, 2, 568, 570, 7, 76, 2, 2, 569, 571, 5, 70, 36, 2, 570, 569, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 572, 3, 2, 2, 2, 572, 587, 7, 10, 2, 2, 573, 574, 7, 77, 2, 2, 574, 587, 7, 10, 2, 2, 575, 576, 7, 78, 2, 2, 576, 587, 7, 10, 2, 2, 577, 579, 7, 79, 2, 2, 578, 580, 5, 78, 40, 2, 579, 578, 3, 2, 2, 2, 579, 580, 3, 2, 2, 2, 580, 581, 3, 2, 2, 2, 581, 582, 7, 4, 2, 2, 582, 583, 5, 82, 42, 2, 583, 584, 7, 144, 2, 2, 584, 587, 3, 2, 2, 2, 585, 587, 5, 76, 39, 2, 586, 502, 3, 2, 2, 2, 586, 505, 3, 2, 2, 2, 586, 510, 3, 2, 2, 2, 586, 513, 3, 2, 2, 2, 586, 525, 3, 2, 2, 2, 586, 537, 3, 2, 2, 2, 586, 551, 3, 2, 2, 2, 586, 560, 3, 2, 2, 2, 586, 568, 3, 2, 2, 2, 586, 573, 3, 2, 2, 2, 586, 575, 3, 2, 2, 2, 586, 577, 3, 2, 2, 2, 586, 585, 3, 2, 2, 2, 587, 61, 3, 2, 2, 2, 588, 590, 5, 64, 33, 2, 589, 588, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 589, 3, 2, 2, 2, 591, 592, 3, 2, 2, 2, 592, 598, 3, 2, 2, 2, 593, 594, 7, 80, 2, 2, 594, 596, 7, 11, 2, 2, 595, 597, 5, 58, 30, 2, 596, 595, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 599, 3, 2, 2, 2, 598, 593, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 63, 3, 2, 2, 2, 600, 601, 7, 81, 2, 2, 601, 602, 5, 72, 37, 2, 602, 604, 7, 11, 2, 2, 603, 605, 5, 58, 30, 2, 604, 603, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 65, 3, 2, 2, 2, 606, 607, 5, 68, 35, 2, 607, 608, 7, 10, 2, 2, 608, 609, 5, 70, 36, 2, 609, 611, 7, 10, 2, 2, 610, 612, 5, 70, 36, 2, 611, 610, 3, 2, 2, 2, 611, 612, 3, 2, 2, 2, 612, 629, 3, 2, 2, 2, 613, 617, 5, 22, 12, 2, 614, 616, 5, 24, 13, 2, 615, 614, 3, 2, 2, 2, 616, 619, 3, 2, 2, 2, 617, 615, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 621, 3, 2, 2, 2, 619, 617, 3, 2, 2, 2, 620, 613, 3, 2, 2, 2, 620, 621, 3, 2, 2, 2, 621, 622, 3, 2, 2, 2, 622, 623, 7, 119, 2, 2, 623, 624, 7, 11, 2, 2, 624, 625, 5, 72, 37, 2, 625, 626, 7, 13, 2, 2, 626, 627, 5, 72, 37, 2, 627, 629, 3, 2, 2, 2, 628, 606, 3, 2, 2, 2, 628, 620, 3, 2, 2, 2, 629, 67, 3, 2, 2, 2, 630, 632, 5, 14, 8, 2, 631, 630, 3, 2, 2, 2, 631, 632, 3, 2, 2, 2, 632, 635, 3, 2, 2, 2, 633, 635, 5, 70, 36, 2, 634, 631, 3, 2, 2, 2, 634, 633, 3, 2, 2, 2, 635, 69, 3, 2, 2, 2, 636, 637, 8, 36, 1, 2, 637, 638, 5, 72, 37, 2, 638, 644, 3, 2, 2, 2, 639, 640, 12, 3, 2, 2, 640, 641, 7, 12, 2, 2, 641, 643, 5, 72, 37, 2, 642, 639, 3, 2, 2, 2, 643, 646, 3, 2, 2, 2, 644, 642, 3, 2, 2, 2, 644, 645, 3, 2, 2, 2, 645, 71, 3, 2, 2, 2, 646, 644, 3, 2, 2, 2, 647, 648, 8, 37, 1, 2, 648, 649, 7, 8, 2, 2, 649, 650, 5, 70, 36, 2, 650, 651, 7, 9, 2, 2, 651, 710, 3, 2, 2, 2, 652, 653, 7, 84, 2, 2, 653, 656, 7, 8, 2, 2, 654, 657, 5, 72, 37, 2, 655, 657, 5, 28, 15, 2, 656, 654, 3, 2, 2, 2, 656, 655, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 659, 7, 9, 2, 2, 659, 710, 3, 2, 2, 2, 660, 661, 7, 85, 2, 2, 661, 664, 7, 8, 2, 2, 662, 665, 5, 72, 37, 2, 663, 665, 5, 28, 15, 2, 664, 662, 3, 2, 2, 2, 664, 663, 3, 2, 2, 2, 665, 666, 3, 2, 2, 2, 666, 667, 7, 9, 2, 2, 667, 710, 3, 2, 2, 2, 668, 670, 7, 86, 2, 2, 669, 671, 7, 8, 2, 2, 670, 669, 3, 2, 2, 2, 670, 671, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 674, 7, 119, 2, 2, 673, 675, 7, 9, 2, 2, 674, 673, 3, 2, 2, 2, 674, 675, 3, 2, 2, 2, 675, 710, 3, 2, 2, 2, 676, 677, 7, 8, 2, 2, 677, 678, 5, 28, 15, 2, 678, 679, 7, 9, 2, 2, 679, 680, 5, 72, 37, 26, 680, 710, 3, 2, 2, 2, 681, 682, 9, 2, 2, 2, 682, 710, 5, 72, 37, 25, 683, 684, 7, 20, 2, 2, 684, 710, 5, 72, 37, 23, 685, 686, 9, 3, 2, 2, 686, 710, 5, 72, 37, 22, 687, 688, 9, 4, 2, 2, 688, 710, 5, 72, 37, 18, 689, 690, 7, 4, 2, 2, 690, 695, 5, 72, 37, 2, 691, 692, 7, 12, 2, 2, 692, 694, 5, 72, 37, 2, 693, 691, 3, 2, 2, 2, 694, 697, 3, 2, 2, 2, 695, 693, 3, 2, 2, 2, 695, 696, 3, 2, 2, 2, 696, 698, 3, 2, 2, 2, 697, 695, 3, 2, 2, 2, 698, 699, 7, 5, 2, 2, 699, 710, 3, 2, 2, 2, 700, 710, 7, 119, 2, 2, 701, 710, 7, 110, 2, 2, 702, 704, 7, 120, 2, 2, 703, 702, 3, 2, 2, 2, 704, 705, 3, 2, 2, 2, 705, 703, 3, 2, 2, 2, 705, 706, 3, 2, 2, 2, 706, 710, 3, 2, 2, 2, 707, 710, 7, 121, 2, 2, 708, 710, 7, 96, 2, 2, 709, 647, 3, 2, 2, 2, 709, 652, 3, 2, 2, 2, 709, 660, 3, 2, 2, 2, 709, 668, 3, 2, 2, 2, 709, 676, 3, 2, 2, 2, 709, 681, 3, 2, 2, 2, 709, 683, 3, 2, 2, 2, 709, 685, 3, 2, 2, 2, 709, 687, 3, 2, 2, 2, 709, 689, 3, 2, 2, 2, 709, 700, 3, 2, 2, 2, 709, 701, 3, 2, 2, 2, 709, 703, 3, 2, 2, 2, 709, 707, 3, 2, 2, 2, 709, 708, 3, 2, 2, 2, 710, 771, 3, 2, 2, 2, 711, 712, 12, 21, 2, 2, 712, 713, 9, 5, 2, 2, 713, 770, 5, 72, 37, 22, 714, 715, 12, 20, 2, 2, 715, 716, 9, 6, 2, 2, 716, 770, 5, 72, 37, 21, 717, 718, 12, 19, 2, 2, 718, 719, 9, 7, 2, 2, 719, 770, 5, 72, 37, 20, 720, 721, 12, 17, 2, 2, 721, 722, 9, 8, 2, 2, 722, 770, 5, 72, 37, 18, 723, 724, 12, 16, 2, 2, 724, 725, 7, 25, 2, 2, 725, 770, 5, 72, 37, 17, 726, 727, 12, 15, 2, 2, 727, 728, 7, 27, 2, 2, 728, 770, 5, 72, 37, 16, 729, 730, 12, 14, 2, 2, 730, 731, 7, 28, 2, 2, 731, 770, 5, 72, 37, 15, 732, 733, 12, 13, 2, 2, 733, 734, 7, 37, 2, 2, 734, 770, 5, 72, 37, 14, 735, 736, 12, 12, 2, 2, 736, 737, 7, 38, 2, 2, 737, 770, 5, 72, 37, 13, 738, 739, 12, 11, 2, 2, 739, 740, 7, 15, 2, 2, 740, 741, 5, 72, 37, 2, 741, 742, 7, 11, 2, 2, 742, 743, 5, 72, 37, 12, 743, 770, 3, 2, 2, 2, 744, 745, 12, 10, 2, 2, 745, 746, 7, 39, 2, 2, 746, 770, 5, 72, 37, 10, 747, 748, 12, 9, 2, 2, 748, 749, 7, 40, 2, 2, 749, 770, 5, 72, 37, 9, 750, 751, 12, 33, 2, 2, 751, 752, 7, 16, 2, 2, 752, 770, 7, 119, 2, 2, 753, 754, 12, 32, 2, 2, 754, 755, 7, 17, 2, 2, 755, 770, 7, 119, 2, 2, 756, 757, 12, 31, 2, 2, 757, 759, 7, 8, 2, 2, 758, 760, 5, 74, 38, 2, 759, 758, 3, 2, 2, 2, 759, 760, 3, 2, 2, 2, 760, 761, 3, 2, 2, 2, 761, 770, 7, 9, 2, 2, 762, 763, 12, 27, 2, 2, 763, 764, 7, 6, 2, 2, 764, 765, 5, 70, 36, 2, 765, 766, 7, 7, 2, 2, 766, 770, 3, 2, 2, 2, 767, 768, 12, 24, 2, 2, 768, 770, 9, 2, 2, 2, 769, 711, 3, 2, 2, 2, 769, 714, 3, 2, 2, 2, 769, 717, 3, 2, 2, 2, 769, 720, 3, 2, 2, 2, 769, 723, 3, 2, 2, 2, 769, 726, 3, 2, 2, 2, 769, 729, 3, 2, 2, 2, 769, 732, 3, 2, 2, 2, 769, 735, 3, 2, 2, 2, 769, 738, 3, 2, 2, 2, 769, 744, 3, 2, 2, 2, 769, 747, 3, 2, 2, 2, 769, 750, 3, 2, 2, 2, 769, 753, 3, 2, 2, 2, 769, 756, 3, 2, 2, 2, 769, 762, 3, 2, 2, 2, 769, 767, 3, 2, 2, 2, 770, 773, 3, 2, 2, 2, 771, 769, 3, 2, 2, 2, 771, 772, 3, 2, 2, 2, 772, 73, 3, 2, 2, 2, 773, 771, 3, 2, 2, 2, 774, 779, 5, 72, 37, 2, 775, 776, 7, 12, 2, 2, 776, 778, 5, 72, 37, 2, 777, 775, 3, 2, 2, 2, 778, 781, 3, 2, 2, 2, 779, 777, 3, 2, 2, 2, 779, 780, 3, 2, 2, 2, 780, 75, 3, 2, 2, 2, 781, 779, 3, 2, 2, 2, 782, 784, 7, 87, 2, 2, 783, 785, 5, 78, 40, 2, 784, 783, 3, 2, 2, 2, 784, 785, 3, 2, 2, 2, 785, 786, 3, 2, 2, 2, 786, 787, 7, 97, 2, 2, 787, 77, 3, 2, 2, 2, 788, 789, 7, 8, 2, 2, 789, 794, 5, 80, 41, 2, 790, 791, 7, 12, 2, 2, 791, 793, 5, 80, 41, 2, 792, 790, 3, 2, 2, 2, 793, 796, 3, 2, 2, 2, 794, 792, 3, 2, 2, 2, 794, 795, 3, 2, 2, 2, 795, 797, 3, 2, 2, 2, 796, 794, 3, 2, 2, 2, 797, 798, 7, 9, 2, 2, 798, 79, 3, 2, 2, 2, 799, 800, 7, 88, 2, 2, 800, 815, 7, 120, 2, 2, 801, 802, 7, 89, 2, 2, 802, 815, 7, 119, 2, 2, 803, 804, 7, 90, 2, 2, 804, 815, 7, 120, 2, 2, 805, 806, 7, 91, 2, 2, 806, 815, 5, 72, 37, 2, 807, 808, 7, 92, 2, 2, 808, 815, 5, 72, 37, 2, 809, 812, 7, 43, 2, 2, 810, 813, 7, 56, 2, 2, 811, 813, 5, 72, 37, 2, 812, 810, 3, 2, 2, 2, 812, 811, 3, 2, 2, 2, 813, 815, 3, 2, 2, 2, 814, 799, 3, 2, 2, 2, 814, 801, 3, 2, 2, 2, 814, 803, 3, 2, 2, 2, 814, 805, 3, 2, 2, 2, 814, 807, 3, 2, 2, 2, 814, 809, 3, 2, 2, 2, 815, 81, 3, 2, 2, 2, 816, 818, 5, 84, 43, 2, 817, 816, 3, 2, 2, 2, 818, 821, 3, 2, 2, 2, 819, 817, 3, 2, 2, 2, 819, 820, 3, 2, 2, 2, 820, 83, 3, 2, 2, 2, 821, 819, 3, 2, 2, 2, 822, 826, 5, 86, 44, 2, 823, 826, 5, 88, 45, 2, 824, 826, 5, 90, 46, 2, 825, 822, 3, 2, 2, 2, 825, 823, 3, 2, 2, 2, 825, 824, 3, 2, 2, 2, 826, 85, 3, 2, 2, 2, 827, 828, 7, 157, 2, 2, 828, 832, 7, 128, 2, 2, 829, 830, 7, 156, 2, 2, 830, 832, 7, 128, 2, 2, 831, 827, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 87, 3, 2, 2, 2, 833, 835, 7, 126, 2, 2, 834, 836, 5, 92, 47, 2, 835, 834, 3, 2, 2, 2, 835, 836, 3, 2, 2, 2, 836, 89, 3, 2, 2, 2, 837, 838, 7, 125, 2, 2, 838, 843, 5, 94, 48, 2, 839, 840, 7, 129, 2, 2, 840, 842, 5, 94, 48, 2, 841, 839, 3, 2, 2, 2, 842, 845, 3, 2, 2, 2, 843, 841, 3, 2, 2, 2, 843, 844, 3, 2, 2, 2, 844, 91, 3, 2, 2, 2, 845, 843, 3, 2, 2, 2, 846, 870, 5, 94, 48, 2, 847, 848, 7, 127, 2, 2, 848, 870, 5, 94, 48, 2, 849, 850, 5, 94, 48, 2, 850, 851, 7, 129, 2, 2, 851, 852, 7, 157, 2, 2, 852, 870, 3, 2, 2, 2, 853, 854, 7, 130, 2, 2, 854, 855, 5, 94, 48, 2, 855, 856, 7, 131, 2, 2, 856, 857, 7, 129, 2, 2, 857, 858, 7, 157, 2, 2, 858, 870, 3, 2, 2, 2, 859, 860, 7, 130, 2, 2, 860, 861, 5, 94, 48, 2, 861, 862, 7, 129, 2, 2, 862, 863, 7, 157, 2, 2, 863, 864, 7, 131, 2, 2, 864, 870, 3, 2, 2, 2, 865, 866, 7, 130, 2, 2, 866, 867, 5, 94, 48, 2, 867, 868, 7, 131, 2, 2, 868, 870, 3, 2, 2, 2, 869, 846, 3, 2, 2, 2, 869, 847, 3, 2, 2, 2, 869, 849, 3, 2, 2, 2, 869, 853, 3, 2, 2, 2, 869, 859, 3, 2, 2, 2, 869, 865, 3, 2, 2, 2, 870, 93, 3, 2, 2, 2, 871, 872, 8, 48, 1, 2, 872, 873, 7, 132, 2, 2, 873, 874, 5, 94, 48, 2, 874, 875, 7, 133, 2, 2, 875, 886, 3, 2, 2, 2, 876, 877, 9, 9, 2, 2, 877, 886, 5, 94, 48, 10, 878, 886, 7, 157, 2, 2, 879, 886, 7, 155, 2, 2, 880, 881, 7, 143, 2, 2, 881, 882, 7, 157, 2, 2, 882, 886, 7, 144, 2, 2, 883, 886, 7, 145, 2, 2, 884, 886, 7, 154, 2, 2, 885, 871, 3, 2, 2, 2, 885, 876, 3, 2, 2, 2, 885, 878, 3, 2, 2, 2, 885, 879, 3, 2, 2, 2, 885, 880, 3, 2, 2, 2, 885, 883, 3, 2, 2, 2, 885, 884, 3, 2, 2, 2, 886, 901, 3, 2, 2, 2, 887, 888, 12, 12, 2, 2, 888, 889, 7, 134, 2, 2, 889, 900, 5, 94, 48, 13, 890, 891, 12, 11, 2, 2, 891, 892, 9, 10, 2, 2, 892, 900, 5, 94, 48, 12, 893, 894, 12, 9, 2, 2, 894, 895, 9, 11, 2, 2, 895, 900, 5, 94, 48, 10, 896, 897, 12, 8, 2, 2, 897, 898, 9, 12, 2, 2, 898, 900, 5, 94, 48, 9, 899, 887, 3, 2, 2, 2, 899, 890, 3, 2, 2, 2, 899, 893, 3, 2, 2, 2, 899, 896, 3, 2, 2, 2, 900, 903, 3, 2, 2, 2, 901, 899, 3, 2, 2, 2, 901, 902, 3, 2, 2, 2, 902, 95, 3, 2, 2, 2, 903, 901, 3, 2, 2, 2, 90, 105, 110, 118, 135, 144, 154, 160, 168, 175, 184, 189, 195, 200, 205, 212, 219, 224, 236, 239, 241, 252, 259, 264, 270, 272, 280, 286, 298, 312, 318, 324, 330, 335, 339, 348, 355, 362, 403, 446, 450, 461, 481, 490, 495, 500, 507, 520, 525, 537, 551, 570, 579, 586, 591, 596, 598, 604, 611, 617, 620, 628, 631, 634, 644, 656, 664, 670, 674, 695, 705, 709, 759, 769, 771, 779, 784, 794, 812, 814, 819, 825, 831, 835, 843, 869, 885, 899, 901] \ No newline at end of file diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java index 79ec9e434..64bda78e5 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.java @@ -26,29 +26,29 @@ public class KickCParser extends Parser { SHIFT_LEFT=27, SHIFT_RIGHT=28, EQUAL=29, NOT_EQUAL=30, LESS_THAN=31, LESS_THAN_EQUAL=32, GREATER_THAN_EQUAL=33, GREATER_THAN=34, LOGIC_AND=35, LOGIC_OR=36, ASSIGN=37, ASSIGN_COMPOUND=38, TYPEDEF=39, RESERVE=40, PC=41, TARGET=42, LINK=43, - EMULATOR=44, CPU=45, CODESEG=46, DATASEG=47, ENCODING=48, CONST=49, EXTERN=50, - EXPORT=51, ALIGN=52, INLINE=53, VOLATILE=54, STATIC=55, INTERRUPT=56, - REGISTER=57, ADDRESS=58, ADDRESS_ZEROPAGE=59, ADDRESS_MAINMEM=60, FORM_SSA=61, - FORM_MA=62, INTRINSIC=63, CALLING=64, CALLINGCONVENTION=65, VARMODEL=66, - IF=67, ELSE=68, WHILE=69, DO=70, FOR=71, SWITCH=72, RETURN=73, BREAK=74, - CONTINUE=75, ASM=76, DEFAULT=77, CASE=78, STRUCT=79, ENUM=80, SIZEOF=81, - TYPEID=82, DEFINED=83, KICKASM=84, RESOURCE=85, USES=86, CLOBBERS=87, - BYTES=88, CYCLES=89, LOGIC_NOT=90, SIGNEDNESS=91, SIMPLETYPE=92, BOOLEAN=93, - KICKASM_BODY=94, IMPORT=95, INCLUDE=96, PRAGMA=97, DEFINE=98, DEFINE_CONTINUE=99, - UNDEF=100, IFDEF=101, IFNDEF=102, IFIF=103, ELIF=104, IFELSE=105, ENDIF=106, - NUMBER=107, NUMFLOAT=108, BINFLOAT=109, DECFLOAT=110, HEXFLOAT=111, NUMINT=112, - BININTEGER=113, DECINTEGER=114, HEXINTEGER=115, NAME=116, STRING=117, - CHAR=118, WS=119, COMMENT_LINE=120, COMMENT_BLOCK=121, ASM_BYTE=122, ASM_MNEMONIC=123, - ASM_IMM=124, ASM_COLON=125, ASM_COMMA=126, ASM_PAR_BEGIN=127, ASM_PAR_END=128, - ASM_BRACKET_BEGIN=129, ASM_BRACKET_END=130, ASM_DOT=131, ASM_SHIFT_LEFT=132, - ASM_SHIFT_RIGHT=133, ASM_PLUS=134, ASM_MINUS=135, ASM_LESS_THAN=136, ASM_GREATER_THAN=137, - ASM_MULTIPLY=138, ASM_DIVIDE=139, ASM_CURLY_BEGIN=140, ASM_CURLY_END=141, - ASM_NUMBER=142, ASM_NUMFLOAT=143, ASM_BINFLOAT=144, ASM_DECFLOAT=145, - ASM_HEXFLOAT=146, ASM_NUMINT=147, ASM_BININTEGER=148, ASM_DECINTEGER=149, - ASM_HEXINTEGER=150, ASM_CHAR=151, ASM_MULTI_REL=152, ASM_MULTI_NAME=153, - ASM_NAME=154, ASM_WS=155, ASM_COMMENT_LINE=156, ASM_COMMENT_BLOCK=157, - IMPORT_SYSTEMFILE=158, IMPORT_LOCALFILE=159, IMPORT_WS=160, IMPORT_COMMENT_LINE=161, - IMPORT_COMMENT_BLOCK=162; + EXTENSION=44, EMULATOR=45, CPU=46, CODESEG=47, DATASEG=48, ENCODING=49, + CONST=50, EXTERN=51, EXPORT=52, ALIGN=53, INLINE=54, VOLATILE=55, STATIC=56, + INTERRUPT=57, REGISTER=58, ADDRESS=59, ADDRESS_ZEROPAGE=60, ADDRESS_MAINMEM=61, + FORM_SSA=62, FORM_MA=63, INTRINSIC=64, CALLING=65, CALLINGCONVENTION=66, + VARMODEL=67, IF=68, ELSE=69, WHILE=70, DO=71, FOR=72, SWITCH=73, RETURN=74, + BREAK=75, CONTINUE=76, ASM=77, DEFAULT=78, CASE=79, STRUCT=80, ENUM=81, + SIZEOF=82, TYPEID=83, DEFINED=84, KICKASM=85, RESOURCE=86, USES=87, CLOBBERS=88, + BYTES=89, CYCLES=90, LOGIC_NOT=91, SIGNEDNESS=92, SIMPLETYPE=93, BOOLEAN=94, + KICKASM_BODY=95, IMPORT=96, INCLUDE=97, PRAGMA=98, DEFINE=99, DEFINE_CONTINUE=100, + UNDEF=101, IFDEF=102, IFNDEF=103, IFIF=104, ELIF=105, IFELSE=106, ENDIF=107, + NUMBER=108, NUMFLOAT=109, BINFLOAT=110, DECFLOAT=111, HEXFLOAT=112, NUMINT=113, + BININTEGER=114, DECINTEGER=115, HEXINTEGER=116, NAME=117, STRING=118, + CHAR=119, WS=120, COMMENT_LINE=121, COMMENT_BLOCK=122, ASM_BYTE=123, ASM_MNEMONIC=124, + ASM_IMM=125, ASM_COLON=126, ASM_COMMA=127, ASM_PAR_BEGIN=128, ASM_PAR_END=129, + ASM_BRACKET_BEGIN=130, ASM_BRACKET_END=131, ASM_DOT=132, ASM_SHIFT_LEFT=133, + ASM_SHIFT_RIGHT=134, ASM_PLUS=135, ASM_MINUS=136, ASM_LESS_THAN=137, ASM_GREATER_THAN=138, + ASM_MULTIPLY=139, ASM_DIVIDE=140, ASM_CURLY_BEGIN=141, ASM_CURLY_END=142, + ASM_NUMBER=143, ASM_NUMFLOAT=144, ASM_BINFLOAT=145, ASM_DECFLOAT=146, + ASM_HEXFLOAT=147, ASM_NUMINT=148, ASM_BININTEGER=149, ASM_DECINTEGER=150, + ASM_HEXINTEGER=151, ASM_CHAR=152, ASM_MULTI_REL=153, ASM_MULTI_NAME=154, + ASM_NAME=155, ASM_WS=156, ASM_COMMENT_LINE=157, ASM_COMMENT_BLOCK=158, + IMPORT_SYSTEMFILE=159, IMPORT_LOCALFILE=160, IMPORT_WS=161, IMPORT_COMMENT_LINE=162, + IMPORT_COMMENT_BLOCK=163; public static final int RULE_file = 0, RULE_asmFile = 1, RULE_declSeq = 2, RULE_declOrImport = 3, RULE_importDecl = 4, RULE_decl = 5, RULE_declVariables = 6, RULE_declVariableList = 7, @@ -84,9 +84,9 @@ public class KickCParser extends Parser { "'...'", "'?'", null, "'->'", null, null, null, null, "'%'", "'++'", "'--'", "'&'", "'~'", "'^'", "'|'", null, null, "'=='", "'!='", null, "'<='", "'>='", null, "'&&'", "'||'", "'='", null, "'typedef'", "'reserve'", - "'pc'", "'target'", "'link'", "'emulator'", "'cpu'", "'code_seg'", "'data_seg'", - "'encoding'", "'const'", "'extern'", "'export'", "'align'", "'inline'", - "'volatile'", "'static'", "'interrupt'", "'register'", "'__address'", + "'pc'", "'target'", "'link'", "'extension'", "'emulator'", "'cpu'", "'code_seg'", + "'data_seg'", "'encoding'", "'const'", "'extern'", "'export'", "'align'", + "'inline'", "'volatile'", "'static'", "'interrupt'", "'register'", "'__address'", "'__zp'", "'__mem'", "'__ssa'", "'__ma'", "'__intrinsic'", "'calling'", null, "'var_model'", "'if'", "'else'", "'while'", "'do'", "'for'", "'switch'", "'return'", "'break'", "'continue'", "'asm'", "'default'", "'case'", @@ -107,27 +107,27 @@ public class KickCParser extends Parser { "INC", "DEC", "AND", "BIT_NOT", "BIT_XOR", "BIT_OR", "SHIFT_LEFT", "SHIFT_RIGHT", "EQUAL", "NOT_EQUAL", "LESS_THAN", "LESS_THAN_EQUAL", "GREATER_THAN_EQUAL", "GREATER_THAN", "LOGIC_AND", "LOGIC_OR", "ASSIGN", "ASSIGN_COMPOUND", - "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EMULATOR", "CPU", "CODESEG", - "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", "ALIGN", "INLINE", - "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", "ADDRESS_ZEROPAGE", - "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", "CALLING", "CALLINGCONVENTION", - "VARMODEL", "IF", "ELSE", "WHILE", "DO", "FOR", "SWITCH", "RETURN", "BREAK", - "CONTINUE", "ASM", "DEFAULT", "CASE", "STRUCT", "ENUM", "SIZEOF", "TYPEID", - "DEFINED", "KICKASM", "RESOURCE", "USES", "CLOBBERS", "BYTES", "CYCLES", - "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", "BOOLEAN", "KICKASM_BODY", "IMPORT", - "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", "UNDEF", "IFDEF", "IFNDEF", - "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", "NUMFLOAT", "BINFLOAT", - "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", "DECINTEGER", "HEXINTEGER", - "NAME", "STRING", "CHAR", "WS", "COMMENT_LINE", "COMMENT_BLOCK", "ASM_BYTE", - "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", "ASM_COMMA", "ASM_PAR_BEGIN", - "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", "ASM_DOT", "ASM_SHIFT_LEFT", - "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", "ASM_LESS_THAN", "ASM_GREATER_THAN", - "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", "ASM_CURLY_END", "ASM_NUMBER", - "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", "ASM_HEXFLOAT", "ASM_NUMINT", - "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", "ASM_CHAR", "ASM_MULTI_REL", - "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK", - "IMPORT_SYSTEMFILE", "IMPORT_LOCALFILE", "IMPORT_WS", "IMPORT_COMMENT_LINE", - "IMPORT_COMMENT_BLOCK" + "TYPEDEF", "RESERVE", "PC", "TARGET", "LINK", "EXTENSION", "EMULATOR", + "CPU", "CODESEG", "DATASEG", "ENCODING", "CONST", "EXTERN", "EXPORT", + "ALIGN", "INLINE", "VOLATILE", "STATIC", "INTERRUPT", "REGISTER", "ADDRESS", + "ADDRESS_ZEROPAGE", "ADDRESS_MAINMEM", "FORM_SSA", "FORM_MA", "INTRINSIC", + "CALLING", "CALLINGCONVENTION", "VARMODEL", "IF", "ELSE", "WHILE", "DO", + "FOR", "SWITCH", "RETURN", "BREAK", "CONTINUE", "ASM", "DEFAULT", "CASE", + "STRUCT", "ENUM", "SIZEOF", "TYPEID", "DEFINED", "KICKASM", "RESOURCE", + "USES", "CLOBBERS", "BYTES", "CYCLES", "LOGIC_NOT", "SIGNEDNESS", "SIMPLETYPE", + "BOOLEAN", "KICKASM_BODY", "IMPORT", "INCLUDE", "PRAGMA", "DEFINE", "DEFINE_CONTINUE", + "UNDEF", "IFDEF", "IFNDEF", "IFIF", "ELIF", "IFELSE", "ENDIF", "NUMBER", + "NUMFLOAT", "BINFLOAT", "DECFLOAT", "HEXFLOAT", "NUMINT", "BININTEGER", + "DECINTEGER", "HEXINTEGER", "NAME", "STRING", "CHAR", "WS", "COMMENT_LINE", + "COMMENT_BLOCK", "ASM_BYTE", "ASM_MNEMONIC", "ASM_IMM", "ASM_COLON", + "ASM_COMMA", "ASM_PAR_BEGIN", "ASM_PAR_END", "ASM_BRACKET_BEGIN", "ASM_BRACKET_END", + "ASM_DOT", "ASM_SHIFT_LEFT", "ASM_SHIFT_RIGHT", "ASM_PLUS", "ASM_MINUS", + "ASM_LESS_THAN", "ASM_GREATER_THAN", "ASM_MULTIPLY", "ASM_DIVIDE", "ASM_CURLY_BEGIN", + "ASM_CURLY_END", "ASM_NUMBER", "ASM_NUMFLOAT", "ASM_BINFLOAT", "ASM_DECFLOAT", + "ASM_HEXFLOAT", "ASM_NUMINT", "ASM_BININTEGER", "ASM_DECINTEGER", "ASM_HEXINTEGER", + "ASM_CHAR", "ASM_MULTI_REL", "ASM_MULTI_NAME", "ASM_NAME", "ASM_WS", + "ASM_COMMENT_LINE", "ASM_COMMENT_BLOCK", "IMPORT_SYSTEMFILE", "IMPORT_LOCALFILE", + "IMPORT_WS", "IMPORT_COMMENT_LINE", "IMPORT_COMMENT_BLOCK" }; } private static final String[] _SYMBOLIC_NAMES = makeSymbolicNames(); @@ -320,7 +320,7 @@ public class KickCParser extends Parser { setState(103); _errHandler.sync(this); _la = _input.LA(1); - while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << TYPEDEF) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (KICKASM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (IMPORT - 65)) | (1L << (INCLUDE - 65)) | (1L << (PRAGMA - 65)))) != 0)) { + while ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << TYPEDEF) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (KICKASM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (IMPORT - 64)) | (1L << (INCLUDE - 64)) | (1L << (PRAGMA - 64)))) != 0)) { { { setState(100); @@ -1257,7 +1257,7 @@ public class KickCParser extends Parser { setState(222); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (SIZEOF - 81)) | (1L << (TYPEID - 81)) | (1L << (DEFINED - 81)) | (1L << (LOGIC_NOT - 81)) | (1L << (BOOLEAN - 81)) | (1L << (NUMBER - 81)) | (1L << (NAME - 81)) | (1L << (STRING - 81)) | (1L << (CHAR - 81)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 82)) & ~0x3f) == 0 && ((1L << (_la - 82)) & ((1L << (SIZEOF - 82)) | (1L << (TYPEID - 82)) | (1L << (DEFINED - 82)) | (1L << (LOGIC_NOT - 82)) | (1L << (BOOLEAN - 82)) | (1L << (NUMBER - 82)) | (1L << (NAME - 82)) | (1L << (STRING - 82)) | (1L << (CHAR - 82)))) != 0)) { { setState(221); expr(0); @@ -1411,7 +1411,7 @@ public class KickCParser extends Parser { setState(234); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (SIZEOF - 81)) | (1L << (TYPEID - 81)) | (1L << (DEFINED - 81)) | (1L << (LOGIC_NOT - 81)) | (1L << (BOOLEAN - 81)) | (1L << (NUMBER - 81)) | (1L << (NAME - 81)) | (1L << (STRING - 81)) | (1L << (CHAR - 81)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 82)) & ~0x3f) == 0 && ((1L << (_la - 82)) & ((1L << (SIZEOF - 82)) | (1L << (TYPEID - 82)) | (1L << (DEFINED - 82)) | (1L << (LOGIC_NOT - 82)) | (1L << (BOOLEAN - 82)) | (1L << (NUMBER - 82)) | (1L << (NAME - 82)) | (1L << (STRING - 82)) | (1L << (CHAR - 82)))) != 0)) { { setState(233); expr(0); @@ -1778,7 +1778,7 @@ public class KickCParser extends Parser { setState(262); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (SIZEOF - 81)) | (1L << (TYPEID - 81)) | (1L << (DEFINED - 81)) | (1L << (LOGIC_NOT - 81)) | (1L << (BOOLEAN - 81)) | (1L << (NUMBER - 81)) | (1L << (NAME - 81)) | (1L << (STRING - 81)) | (1L << (CHAR - 81)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 82)) & ~0x3f) == 0 && ((1L << (_la - 82)) & ((1L << (SIZEOF - 82)) | (1L << (TYPEID - 82)) | (1L << (DEFINED - 82)) | (1L << (LOGIC_NOT - 82)) | (1L << (BOOLEAN - 82)) | (1L << (NUMBER - 82)) | (1L << (NAME - 82)) | (1L << (STRING - 82)) | (1L << (CHAR - 82)))) != 0)) { { setState(261); expr(0); @@ -1930,7 +1930,7 @@ public class KickCParser extends Parser { setState(284); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0) ); setState(286); match(CURLY_END); } @@ -2314,7 +2314,7 @@ public class KickCParser extends Parser { setState(328); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << PARAM_LIST) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << PARAM_LIST) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) { { setState(327); parameterListDecl(); @@ -2391,7 +2391,7 @@ public class KickCParser extends Parser { setState(337); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (DEFINED - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { setState(336); stmtSeq(); @@ -2625,6 +2625,27 @@ public class KickCParser extends Parser { super.copyFrom(ctx); } } + public static class GlobalDirectiveCpuContext extends GlobalDirectiveContext { + public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } + public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } + public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } + public TerminalNode CPU() { return getToken(KickCParser.CPU, 0); } + public GlobalDirectiveCpuContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } + @Override + public void enterRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveCpu(this); + } + @Override + public void exitRule(ParseTreeListener listener) { + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveCpu(this); + } + @Override + public T accept(ParseTreeVisitor visitor) { + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveCpu(this); + else return visitor.visitChildren(this); + } + } public static class GlobalDirectiveReserveContext extends GlobalDirectiveContext { public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } public List NUMBER() { return getTokens(KickCParser.NUMBER); } @@ -2653,24 +2674,24 @@ public class KickCParser extends Parser { else return visitor.visitChildren(this); } } - public static class GlobalDirectiveCpuContext extends GlobalDirectiveContext { + public static class GlobalDirectiveExtensionContext extends GlobalDirectiveContext { public TerminalNode PAR_BEGIN() { return getToken(KickCParser.PAR_BEGIN, 0); } - public TerminalNode NAME() { return getToken(KickCParser.NAME, 0); } + public TerminalNode STRING() { return getToken(KickCParser.STRING, 0); } public TerminalNode PAR_END() { return getToken(KickCParser.PAR_END, 0); } public TerminalNode PRAGMA() { return getToken(KickCParser.PRAGMA, 0); } - public TerminalNode CPU() { return getToken(KickCParser.CPU, 0); } - public GlobalDirectiveCpuContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } + public TerminalNode EXTENSION() { return getToken(KickCParser.EXTENSION, 0); } + public GlobalDirectiveExtensionContext(GlobalDirectiveContext ctx) { copyFrom(ctx); } @Override public void enterRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveCpu(this); + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).enterGlobalDirectiveExtension(this); } @Override public void exitRule(ParseTreeListener listener) { - if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveCpu(this); + if ( listener instanceof KickCParserListener ) ((KickCParserListener)listener).exitGlobalDirectiveExtension(this); } @Override public T accept(ParseTreeVisitor visitor) { - if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveCpu(this); + if ( visitor instanceof KickCParserVisitor ) return ((KickCParserVisitor)visitor).visitGlobalDirectiveExtension(this); else return visitor.visitChildren(this); } } @@ -2876,160 +2897,160 @@ public class KickCParser extends Parser { enterRule(_localctx, 52, RULE_globalDirective); int _la; try { - setState(442); + setState(448); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,39,_ctx) ) { case 1: - _localctx = new GlobalDirectiveReserveContext(_localctx); + _localctx = new GlobalDirectivePlatformContext(_localctx); enterOuterAlt(_localctx, 1); { { setState(362); match(PRAGMA); setState(363); - match(RESERVE); + match(TARGET); } setState(365); match(PAR_BEGIN); setState(366); - match(NUMBER); + match(NAME); + setState(367); + match(PAR_END); + } + break; + case 2: + _localctx = new GlobalDirectiveCpuContext(_localctx); + enterOuterAlt(_localctx, 2); + { + { + setState(368); + match(PRAGMA); + setState(369); + match(CPU); + } setState(371); + match(PAR_BEGIN); + setState(372); + match(NAME); + setState(373); + match(PAR_END); + } + break; + case 3: + _localctx = new GlobalDirectiveLinkScriptContext(_localctx); + enterOuterAlt(_localctx, 3); + { + { + setState(374); + match(PRAGMA); + setState(375); + match(LINK); + } + setState(377); + match(PAR_BEGIN); + setState(378); + match(STRING); + setState(379); + match(PAR_END); + } + break; + case 4: + _localctx = new GlobalDirectiveExtensionContext(_localctx); + enterOuterAlt(_localctx, 4); + { + { + setState(380); + match(PRAGMA); + setState(381); + match(EXTENSION); + } + setState(383); + match(PAR_BEGIN); + setState(384); + match(STRING); + setState(385); + match(PAR_END); + } + break; + case 5: + _localctx = new GlobalDirectiveEmulatorContext(_localctx); + enterOuterAlt(_localctx, 5); + { + { + setState(386); + match(PRAGMA); + setState(387); + match(EMULATOR); + } + setState(389); + match(PAR_BEGIN); + setState(390); + match(STRING); + setState(391); + match(PAR_END); + } + break; + case 6: + _localctx = new GlobalDirectiveReserveContext(_localctx); + enterOuterAlt(_localctx, 6); + { + { + setState(392); + match(PRAGMA); + setState(393); + match(RESERVE); + } + setState(395); + match(PAR_BEGIN); + setState(396); + match(NUMBER); + setState(401); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(367); + setState(397); match(COMMA); - setState(368); + setState(398); match(NUMBER); } } - setState(373); + setState(403); _errHandler.sync(this); _la = _input.LA(1); } - setState(374); - match(PAR_END); - } - break; - case 2: - _localctx = new GlobalDirectivePcContext(_localctx); - enterOuterAlt(_localctx, 2); - { - { - setState(375); - match(PRAGMA); - setState(376); - match(PC); - } - setState(378); - match(PAR_BEGIN); - setState(379); - match(NUMBER); - setState(380); - match(PAR_END); - } - break; - case 3: - _localctx = new GlobalDirectivePlatformContext(_localctx); - enterOuterAlt(_localctx, 3); - { - { - setState(381); - match(PRAGMA); - setState(382); - match(TARGET); - } - setState(384); - match(PAR_BEGIN); - setState(385); - match(NAME); - setState(386); - match(PAR_END); - } - break; - case 4: - _localctx = new GlobalDirectiveCpuContext(_localctx); - enterOuterAlt(_localctx, 4); - { - { - setState(387); - match(PRAGMA); - setState(388); - match(CPU); - } - setState(390); - match(PAR_BEGIN); - setState(391); - match(NAME); - setState(392); - match(PAR_END); - } - break; - case 5: - _localctx = new GlobalDirectiveLinkScriptContext(_localctx); - enterOuterAlt(_localctx, 5); - { - { - setState(393); - match(PRAGMA); - setState(394); - match(LINK); - } - setState(396); - match(PAR_BEGIN); - setState(397); - match(STRING); - setState(398); - match(PAR_END); - } - break; - case 6: - _localctx = new GlobalDirectiveEmulatorContext(_localctx); - enterOuterAlt(_localctx, 6); - { - { - setState(399); - match(PRAGMA); - setState(400); - match(EMULATOR); - } - setState(402); - match(PAR_BEGIN); - setState(403); - match(STRING); setState(404); match(PAR_END); } break; case 7: - _localctx = new GlobalDirectiveCodeSegContext(_localctx); + _localctx = new GlobalDirectivePcContext(_localctx); enterOuterAlt(_localctx, 7); { { setState(405); match(PRAGMA); setState(406); - match(CODESEG); + match(PC); } setState(408); match(PAR_BEGIN); setState(409); - match(NAME); + match(NUMBER); setState(410); match(PAR_END); } break; case 8: - _localctx = new GlobalDirectiveDataSegContext(_localctx); + _localctx = new GlobalDirectiveCodeSegContext(_localctx); enterOuterAlt(_localctx, 8); { { setState(411); match(PRAGMA); setState(412); - match(DATASEG); + match(CODESEG); } setState(414); match(PAR_BEGIN); @@ -3040,14 +3061,14 @@ public class KickCParser extends Parser { } break; case 9: - _localctx = new GlobalDirectiveEncodingContext(_localctx); + _localctx = new GlobalDirectiveDataSegContext(_localctx); enterOuterAlt(_localctx, 9); { { setState(417); match(PRAGMA); setState(418); - match(ENCODING); + match(DATASEG); } setState(420); match(PAR_BEGIN); @@ -3058,54 +3079,72 @@ public class KickCParser extends Parser { } break; case 10: - _localctx = new GlobalDirectiveCallingContext(_localctx); + _localctx = new GlobalDirectiveEncodingContext(_localctx); enterOuterAlt(_localctx, 10); { { setState(423); match(PRAGMA); setState(424); - match(CALLING); + match(ENCODING); } setState(426); match(PAR_BEGIN); setState(427); - match(CALLINGCONVENTION); + match(NAME); setState(428); match(PAR_END); } break; case 11: - _localctx = new GlobalDirectiveVarModelContext(_localctx); + _localctx = new GlobalDirectiveCallingContext(_localctx); enterOuterAlt(_localctx, 11); { { setState(429); match(PRAGMA); setState(430); - match(VARMODEL); + match(CALLING); } setState(432); match(PAR_BEGIN); setState(433); - match(NAME); + match(CALLINGCONVENTION); + setState(434); + match(PAR_END); + } + break; + case 12: + _localctx = new GlobalDirectiveVarModelContext(_localctx); + enterOuterAlt(_localctx, 12); + { + { + setState(435); + match(PRAGMA); + setState(436); + match(VARMODEL); + } setState(438); + match(PAR_BEGIN); + setState(439); + match(NAME); + setState(444); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(434); + setState(440); match(COMMA); - setState(435); + setState(441); match(NAME); } } - setState(440); + setState(446); _errHandler.sync(this); _la = _input.LA(1); } - setState(441); + setState(447); match(PAR_END); } break; @@ -3450,14 +3489,14 @@ public class KickCParser extends Parser { enterRule(_localctx, 54, RULE_directive); int _la; try { - setState(487); + setState(493); _errHandler.sync(this); switch (_input.LA(1)) { case CONST: _localctx = new DirectiveConstContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(444); + setState(450); match(CONST); } break; @@ -3465,13 +3504,13 @@ public class KickCParser extends Parser { _localctx = new DirectiveAlignContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(445); + setState(451); match(ALIGN); - setState(446); + setState(452); match(PAR_BEGIN); - setState(447); + setState(453); match(NUMBER); - setState(448); + setState(454); match(PAR_END); } break; @@ -3479,20 +3518,20 @@ public class KickCParser extends Parser { _localctx = new DirectiveRegisterContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(449); + setState(455); match(REGISTER); - setState(453); + setState(459); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,40,_ctx) ) { case 1: { - setState(450); + setState(456); match(PAR_BEGIN); { - setState(451); + setState(457); match(NAME); } - setState(452); + setState(458); match(PAR_END); } break; @@ -3503,7 +3542,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaZpContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(455); + setState(461); match(ADDRESS_ZEROPAGE); } break; @@ -3511,7 +3550,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaMainContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(456); + setState(462); match(ADDRESS_MAINMEM); } break; @@ -3519,15 +3558,15 @@ public class KickCParser extends Parser { _localctx = new DirectiveMemoryAreaAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(457); + setState(463); match(ADDRESS); - setState(458); + setState(464); match(PAR_BEGIN); { - setState(459); + setState(465); match(NUMBER); } - setState(460); + setState(466); match(PAR_END); } break; @@ -3535,7 +3574,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveVolatileContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(461); + setState(467); match(VOLATILE); } break; @@ -3543,7 +3582,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveStaticContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(462); + setState(468); match(STATIC); } break; @@ -3551,7 +3590,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveFormSsaContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(463); + setState(469); match(FORM_SSA); } break; @@ -3559,7 +3598,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveFormMaContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(464); + setState(470); match(FORM_MA); } break; @@ -3567,7 +3606,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExternContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(465); + setState(471); match(EXTERN); } break; @@ -3575,7 +3614,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveExportContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(466); + setState(472); match(EXPORT); } break; @@ -3583,7 +3622,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveInlineContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(467); + setState(473); match(INLINE); } break; @@ -3591,7 +3630,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveIntrinsicContext(_localctx); enterOuterAlt(_localctx, 14); { - setState(468); + setState(474); match(INTRINSIC); } break; @@ -3599,18 +3638,18 @@ public class KickCParser extends Parser { _localctx = new DirectiveInterruptContext(_localctx); enterOuterAlt(_localctx, 15); { - setState(469); + setState(475); match(INTERRUPT); - setState(473); + setState(479); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,41,_ctx) ) { case 1: { - setState(470); + setState(476); match(PAR_BEGIN); - setState(471); + setState(477); match(NAME); - setState(472); + setState(478); match(PAR_END); } break; @@ -3621,29 +3660,29 @@ public class KickCParser extends Parser { _localctx = new DirectiveReserveZpContext(_localctx); enterOuterAlt(_localctx, 16); { - setState(475); + setState(481); match(RESERVE); - setState(476); - match(PAR_BEGIN); - setState(477); - match(NUMBER); setState(482); + match(PAR_BEGIN); + setState(483); + match(NUMBER); + setState(488); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(478); + setState(484); match(COMMA); - setState(479); + setState(485); match(NUMBER); } } - setState(484); + setState(490); _errHandler.sync(this); _la = _input.LA(1); } - setState(485); + setState(491); match(PAR_END); } break; @@ -3651,7 +3690,7 @@ public class KickCParser extends Parser { _localctx = new DirectiveCallingConventionContext(_localctx); enterOuterAlt(_localctx, 17); { - setState(486); + setState(492); match(CALLINGCONVENTION); } break; @@ -3703,20 +3742,20 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(490); + setState(496); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(489); + setState(495); stmt(); } } - setState(492); + setState(498); _errHandler.sync(this); _la = _input.LA(1); - } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (DEFINED - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)))) != 0) ); + } while ( (((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0) ); } } catch (RecognitionException re) { @@ -4060,16 +4099,16 @@ public class KickCParser extends Parser { enterRule(_localctx, 58, RULE_stmt); int _la; try { - setState(578); + setState(584); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,52,_ctx) ) { case 1: _localctx = new StmtDeclVarContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(494); + setState(500); declVariables(); - setState(495); + setState(501); match(SEMICOLON); } break; @@ -4077,19 +4116,19 @@ public class KickCParser extends Parser { _localctx = new StmtBlockContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(497); + setState(503); match(CURLY_BEGIN); - setState(499); + setState(505); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (DEFINED - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(498); + setState(504); stmtSeq(); } } - setState(501); + setState(507); match(CURLY_END); } break; @@ -4097,9 +4136,9 @@ public class KickCParser extends Parser { _localctx = new StmtExprContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(502); + setState(508); commaExpr(0); - setState(503); + setState(509); match(SEMICOLON); } break; @@ -4107,24 +4146,24 @@ public class KickCParser extends Parser { _localctx = new StmtIfElseContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(505); + setState(511); match(IF); - setState(506); - match(PAR_BEGIN); - setState(507); - commaExpr(0); - setState(508); - match(PAR_END); - setState(509); - stmt(); setState(512); + match(PAR_BEGIN); + setState(513); + commaExpr(0); + setState(514); + match(PAR_END); + setState(515); + stmt(); + setState(518); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,46,_ctx) ) { case 1: { - setState(510); + setState(516); match(ELSE); - setState(511); + setState(517); stmt(); } break; @@ -4135,29 +4174,29 @@ public class KickCParser extends Parser { _localctx = new StmtWhileContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(517); + setState(523); _errHandler.sync(this); _la = _input.LA(1); while (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (RESERVE - 40)) | (1L << (CONST - 40)) | (1L << (EXTERN - 40)) | (1L << (EXPORT - 40)) | (1L << (ALIGN - 40)) | (1L << (INLINE - 40)) | (1L << (VOLATILE - 40)) | (1L << (STATIC - 40)) | (1L << (INTERRUPT - 40)) | (1L << (REGISTER - 40)) | (1L << (ADDRESS - 40)) | (1L << (ADDRESS_ZEROPAGE - 40)) | (1L << (ADDRESS_MAINMEM - 40)) | (1L << (FORM_SSA - 40)) | (1L << (FORM_MA - 40)) | (1L << (INTRINSIC - 40)) | (1L << (CALLINGCONVENTION - 40)))) != 0)) { { { - setState(514); + setState(520); directive(); } } - setState(519); + setState(525); _errHandler.sync(this); _la = _input.LA(1); } - setState(520); + setState(526); match(WHILE); - setState(521); + setState(527); match(PAR_BEGIN); - setState(522); + setState(528); commaExpr(0); - setState(523); + setState(529); match(PAR_END); - setState(524); + setState(530); stmt(); } break; @@ -4165,33 +4204,33 @@ public class KickCParser extends Parser { _localctx = new StmtDoWhileContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(529); + setState(535); _errHandler.sync(this); _la = _input.LA(1); while (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (RESERVE - 40)) | (1L << (CONST - 40)) | (1L << (EXTERN - 40)) | (1L << (EXPORT - 40)) | (1L << (ALIGN - 40)) | (1L << (INLINE - 40)) | (1L << (VOLATILE - 40)) | (1L << (STATIC - 40)) | (1L << (INTERRUPT - 40)) | (1L << (REGISTER - 40)) | (1L << (ADDRESS - 40)) | (1L << (ADDRESS_ZEROPAGE - 40)) | (1L << (ADDRESS_MAINMEM - 40)) | (1L << (FORM_SSA - 40)) | (1L << (FORM_MA - 40)) | (1L << (INTRINSIC - 40)) | (1L << (CALLINGCONVENTION - 40)))) != 0)) { { { - setState(526); + setState(532); directive(); } } - setState(531); + setState(537); _errHandler.sync(this); _la = _input.LA(1); } - setState(532); - match(DO); - setState(533); - stmt(); - setState(534); - match(WHILE); - setState(535); - match(PAR_BEGIN); - setState(536); - commaExpr(0); - setState(537); - match(PAR_END); setState(538); + match(DO); + setState(539); + stmt(); + setState(540); + match(WHILE); + setState(541); + match(PAR_BEGIN); + setState(542); + commaExpr(0); + setState(543); + match(PAR_END); + setState(544); match(SEMICOLON); } break; @@ -4199,29 +4238,29 @@ public class KickCParser extends Parser { _localctx = new StmtForContext(_localctx); enterOuterAlt(_localctx, 7); { - setState(543); + setState(549); _errHandler.sync(this); _la = _input.LA(1); while (((((_la - 40)) & ~0x3f) == 0 && ((1L << (_la - 40)) & ((1L << (RESERVE - 40)) | (1L << (CONST - 40)) | (1L << (EXTERN - 40)) | (1L << (EXPORT - 40)) | (1L << (ALIGN - 40)) | (1L << (INLINE - 40)) | (1L << (VOLATILE - 40)) | (1L << (STATIC - 40)) | (1L << (INTERRUPT - 40)) | (1L << (REGISTER - 40)) | (1L << (ADDRESS - 40)) | (1L << (ADDRESS_ZEROPAGE - 40)) | (1L << (ADDRESS_MAINMEM - 40)) | (1L << (FORM_SSA - 40)) | (1L << (FORM_MA - 40)) | (1L << (INTRINSIC - 40)) | (1L << (CALLINGCONVENTION - 40)))) != 0)) { { { - setState(540); + setState(546); directive(); } } - setState(545); + setState(551); _errHandler.sync(this); _la = _input.LA(1); } - setState(546); + setState(552); match(FOR); - setState(547); + setState(553); match(PAR_BEGIN); - setState(548); + setState(554); forLoop(); - setState(549); + setState(555); match(PAR_END); - setState(550); + setState(556); stmt(); } break; @@ -4229,19 +4268,19 @@ public class KickCParser extends Parser { _localctx = new StmtSwitchContext(_localctx); enterOuterAlt(_localctx, 8); { - setState(552); - match(SWITCH); - setState(553); - match(PAR_BEGIN); - setState(554); - commaExpr(0); - setState(555); - match(PAR_END); - setState(556); - match(CURLY_BEGIN); - setState(557); - switchCases(); setState(558); + match(SWITCH); + setState(559); + match(PAR_BEGIN); + setState(560); + commaExpr(0); + setState(561); + match(PAR_END); + setState(562); + match(CURLY_BEGIN); + setState(563); + switchCases(); + setState(564); match(CURLY_END); } break; @@ -4249,19 +4288,19 @@ public class KickCParser extends Parser { _localctx = new StmtReturnContext(_localctx); enterOuterAlt(_localctx, 9); { - setState(560); + setState(566); match(RETURN); - setState(562); + setState(568); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (SIZEOF - 81)) | (1L << (TYPEID - 81)) | (1L << (DEFINED - 81)) | (1L << (LOGIC_NOT - 81)) | (1L << (BOOLEAN - 81)) | (1L << (NUMBER - 81)) | (1L << (NAME - 81)) | (1L << (STRING - 81)) | (1L << (CHAR - 81)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 82)) & ~0x3f) == 0 && ((1L << (_la - 82)) & ((1L << (SIZEOF - 82)) | (1L << (TYPEID - 82)) | (1L << (DEFINED - 82)) | (1L << (LOGIC_NOT - 82)) | (1L << (BOOLEAN - 82)) | (1L << (NUMBER - 82)) | (1L << (NAME - 82)) | (1L << (STRING - 82)) | (1L << (CHAR - 82)))) != 0)) { { - setState(561); + setState(567); commaExpr(0); } } - setState(564); + setState(570); match(SEMICOLON); } break; @@ -4269,9 +4308,9 @@ public class KickCParser extends Parser { _localctx = new StmtBreakContext(_localctx); enterOuterAlt(_localctx, 10); { - setState(565); + setState(571); match(BREAK); - setState(566); + setState(572); match(SEMICOLON); } break; @@ -4279,9 +4318,9 @@ public class KickCParser extends Parser { _localctx = new StmtContinueContext(_localctx); enterOuterAlt(_localctx, 11); { - setState(567); + setState(573); match(CONTINUE); - setState(568); + setState(574); match(SEMICOLON); } break; @@ -4289,23 +4328,23 @@ public class KickCParser extends Parser { _localctx = new StmtAsmContext(_localctx); enterOuterAlt(_localctx, 12); { - setState(569); + setState(575); match(ASM); - setState(571); + setState(577); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(570); + setState(576); asmDirectives(); } } - setState(573); + setState(579); match(CURLY_BEGIN); - setState(574); + setState(580); asmLines(); - setState(575); + setState(581); match(ASM_CURLY_END); } break; @@ -4313,7 +4352,7 @@ public class KickCParser extends Parser { _localctx = new StmtDeclKasmContext(_localctx); enterOuterAlt(_localctx, 13); { - setState(577); + setState(583); declKasm(); } break; @@ -4368,35 +4407,35 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(581); + setState(587); _errHandler.sync(this); _la = _input.LA(1); do { { { - setState(580); + setState(586); switchCase(); } } - setState(583); + setState(589); _errHandler.sync(this); _la = _input.LA(1); } while ( _la==CASE ); - setState(590); + setState(596); _errHandler.sync(this); _la = _input.LA(1); if (_la==DEFAULT) { { - setState(585); + setState(591); match(DEFAULT); - setState(586); + setState(592); match(COLON); - setState(588); + setState(594); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (DEFINED - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(587); + setState(593); stmtSeq(); } } @@ -4452,18 +4491,18 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(592); + setState(598); match(CASE); - setState(593); + setState(599); expr(0); - setState(594); + setState(600); match(COLON); - setState(596); + setState(602); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (IF - 65)) | (1L << (WHILE - 65)) | (1L << (DO - 65)) | (1L << (FOR - 65)) | (1L << (SWITCH - 65)) | (1L << (RETURN - 65)) | (1L << (BREAK - 65)) | (1L << (CONTINUE - 65)) | (1L << (ASM - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIZEOF - 65)) | (1L << (TYPEID - 65)) | (1L << (DEFINED - 65)) | (1L << (KICKASM - 65)) | (1L << (LOGIC_NOT - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)) | (1L << (BOOLEAN - 65)) | (1L << (NUMBER - 65)) | (1L << (NAME - 65)) | (1L << (STRING - 65)) | (1L << (CHAR - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (IF - 64)) | (1L << (WHILE - 64)) | (1L << (DO - 64)) | (1L << (FOR - 64)) | (1L << (SWITCH - 64)) | (1L << (RETURN - 64)) | (1L << (BREAK - 64)) | (1L << (CONTINUE - 64)) | (1L << (ASM - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIZEOF - 64)) | (1L << (TYPEID - 64)) | (1L << (DEFINED - 64)) | (1L << (KICKASM - 64)) | (1L << (LOGIC_NOT - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)) | (1L << (BOOLEAN - 64)) | (1L << (NUMBER - 64)) | (1L << (NAME - 64)) | (1L << (STRING - 64)) | (1L << (CHAR - 64)))) != 0)) { { - setState(595); + setState(601); stmtSeq(); } } @@ -4561,27 +4600,27 @@ public class KickCParser extends Parser { enterRule(_localctx, 64, RULE_forLoop); int _la; try { - setState(620); + setState(626); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,60,_ctx) ) { case 1: _localctx = new ForClassicContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(598); + setState(604); forClassicInit(); - setState(599); + setState(605); match(SEMICOLON); - setState(600); + setState(606); commaExpr(0); - setState(601); + setState(607); match(SEMICOLON); - setState(603); + setState(609); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (SIZEOF - 81)) | (1L << (TYPEID - 81)) | (1L << (DEFINED - 81)) | (1L << (LOGIC_NOT - 81)) | (1L << (BOOLEAN - 81)) | (1L << (NUMBER - 81)) | (1L << (NAME - 81)) | (1L << (STRING - 81)) | (1L << (CHAR - 81)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 82)) & ~0x3f) == 0 && ((1L << (_la - 82)) & ((1L << (SIZEOF - 82)) | (1L << (TYPEID - 82)) | (1L << (DEFINED - 82)) | (1L << (LOGIC_NOT - 82)) | (1L << (BOOLEAN - 82)) | (1L << (NUMBER - 82)) | (1L << (NAME - 82)) | (1L << (STRING - 82)) | (1L << (CHAR - 82)))) != 0)) { { - setState(602); + setState(608); commaExpr(0); } } @@ -4592,39 +4631,39 @@ public class KickCParser extends Parser { _localctx = new ForRangeContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(612); + setState(618); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) { { - setState(605); + setState(611); declType(); - setState(609); + setState(615); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASTERISK) { { { - setState(606); + setState(612); declPointer(); } } - setState(611); + setState(617); _errHandler.sync(this); _la = _input.LA(1); } } } - setState(614); + setState(620); match(NAME); - setState(615); + setState(621); match(COLON); - setState(616); + setState(622); expr(0); - setState(617); + setState(623); match(RANGE); - setState(618); + setState(624); expr(0); } break; @@ -4696,19 +4735,19 @@ public class KickCParser extends Parser { enterRule(_localctx, 66, RULE_forClassicInit); int _la; try { - setState(626); + setState(632); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,62,_ctx) ) { case 1: _localctx = new ForClassicInitDeclContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(623); + setState(629); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA) | (1L << INTRINSIC))) != 0) || ((((_la - 65)) & ~0x3f) == 0 && ((1L << (_la - 65)) & ((1L << (CALLINGCONVENTION - 65)) | (1L << (STRUCT - 65)) | (1L << (ENUM - 65)) | (1L << (SIGNEDNESS - 65)) | (1L << (SIMPLETYPE - 65)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << TYPEDEFNAME) | (1L << PAR_BEGIN) | (1L << RESERVE) | (1L << CONST) | (1L << EXTERN) | (1L << EXPORT) | (1L << ALIGN) | (1L << INLINE) | (1L << VOLATILE) | (1L << STATIC) | (1L << INTERRUPT) | (1L << REGISTER) | (1L << ADDRESS) | (1L << ADDRESS_ZEROPAGE) | (1L << ADDRESS_MAINMEM) | (1L << FORM_SSA) | (1L << FORM_MA))) != 0) || ((((_la - 64)) & ~0x3f) == 0 && ((1L << (_la - 64)) & ((1L << (INTRINSIC - 64)) | (1L << (CALLINGCONVENTION - 64)) | (1L << (STRUCT - 64)) | (1L << (ENUM - 64)) | (1L << (SIGNEDNESS - 64)) | (1L << (SIMPLETYPE - 64)))) != 0)) { { - setState(622); + setState(628); declVariables(); } } @@ -4719,7 +4758,7 @@ public class KickCParser extends Parser { _localctx = new ForClassicInitExprContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(625); + setState(631); commaExpr(0); } break; @@ -4810,11 +4849,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(629); + setState(635); expr(0); } _ctx.stop = _input.LT(-1); - setState(636); + setState(642); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -4825,16 +4864,16 @@ public class KickCParser extends Parser { { _localctx = new CommaSimpleContext(new CommaExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_commaExpr); - setState(631); + setState(637); if (!(precpred(_ctx, 1))) throw new FailedPredicateException(this, "precpred(_ctx, 1)"); - setState(632); + setState(638); match(COMMA); - setState(633); + setState(639); expr(0); } } } - setState(638); + setState(644); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,63,_ctx); } @@ -5398,7 +5437,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(701); + setState(707); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,70,_ctx) ) { case 1: @@ -5407,11 +5446,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(640); + setState(646); match(PAR_BEGIN); - setState(641); + setState(647); commaExpr(0); - setState(642); + setState(648); match(PAR_END); } break; @@ -5420,27 +5459,27 @@ public class KickCParser extends Parser { _localctx = new ExprSizeOfContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(644); + setState(650); match(SIZEOF); - setState(645); + setState(651); match(PAR_BEGIN); - setState(648); + setState(654); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,64,_ctx) ) { case 1: { - setState(646); + setState(652); expr(0); } break; case 2: { - setState(647); + setState(653); typeSpecifier(0); } break; } - setState(650); + setState(656); match(PAR_END); } break; @@ -5449,27 +5488,27 @@ public class KickCParser extends Parser { _localctx = new ExprTypeIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(652); + setState(658); match(TYPEID); - setState(653); + setState(659); match(PAR_BEGIN); - setState(656); + setState(662); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,65,_ctx) ) { case 1: { - setState(654); + setState(660); expr(0); } break; case 2: { - setState(655); + setState(661); typeSpecifier(0); } break; } - setState(658); + setState(664); match(PAR_END); } break; @@ -5478,26 +5517,26 @@ public class KickCParser extends Parser { _localctx = new ExprDefinedContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(660); + setState(666); match(DEFINED); - setState(662); + setState(668); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(661); + setState(667); match(PAR_BEGIN); } } - setState(664); + setState(670); match(NAME); - setState(666); + setState(672); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,67,_ctx) ) { case 1: { - setState(665); + setState(671); match(PAR_END); } break; @@ -5509,13 +5548,13 @@ public class KickCParser extends Parser { _localctx = new ExprCastContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(668); + setState(674); match(PAR_BEGIN); - setState(669); + setState(675); typeSpecifier(0); - setState(670); + setState(676); match(PAR_END); - setState(671); + setState(677); expr(24); } break; @@ -5524,7 +5563,7 @@ public class KickCParser extends Parser { _localctx = new ExprPreModContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(673); + setState(679); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5534,7 +5573,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(674); + setState(680); expr(23); } break; @@ -5543,9 +5582,9 @@ public class KickCParser extends Parser { _localctx = new ExprPtrContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(675); + setState(681); match(ASTERISK); - setState(676); + setState(682); expr(21); } break; @@ -5554,7 +5593,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(677); + setState(683); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << PLUS) | (1L << MINUS) | (1L << AND) | (1L << BIT_NOT))) != 0) || _la==LOGIC_NOT) ) { _errHandler.recoverInline(this); @@ -5564,7 +5603,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(678); + setState(684); expr(20); } break; @@ -5573,7 +5612,7 @@ public class KickCParser extends Parser { _localctx = new ExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(679); + setState(685); _la = _input.LA(1); if ( !(_la==LESS_THAN || _la==GREATER_THAN) ) { _errHandler.recoverInline(this); @@ -5583,7 +5622,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(680); + setState(686); expr(16); } break; @@ -5592,27 +5631,27 @@ public class KickCParser extends Parser { _localctx = new InitListContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(681); - match(CURLY_BEGIN); - setState(682); - expr(0); setState(687); + match(CURLY_BEGIN); + setState(688); + expr(0); + setState(693); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(683); + setState(689); match(COMMA); - setState(684); + setState(690); expr(0); } } - setState(689); + setState(695); _errHandler.sync(this); _la = _input.LA(1); } - setState(690); + setState(696); match(CURLY_END); } break; @@ -5621,7 +5660,7 @@ public class KickCParser extends Parser { _localctx = new ExprIdContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(692); + setState(698); match(NAME); } break; @@ -5630,7 +5669,7 @@ public class KickCParser extends Parser { _localctx = new ExprNumberContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(693); + setState(699); match(NUMBER); } break; @@ -5639,7 +5678,7 @@ public class KickCParser extends Parser { _localctx = new ExprStringContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(695); + setState(701); _errHandler.sync(this); _alt = 1; do { @@ -5647,7 +5686,7 @@ public class KickCParser extends Parser { case 1: { { - setState(694); + setState(700); match(STRING); } } @@ -5655,7 +5694,7 @@ public class KickCParser extends Parser { default: throw new NoViableAltException(this); } - setState(697); + setState(703); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,69,_ctx); } while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ); @@ -5666,7 +5705,7 @@ public class KickCParser extends Parser { _localctx = new ExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(699); + setState(705); match(CHAR); } break; @@ -5675,13 +5714,13 @@ public class KickCParser extends Parser { _localctx = new ExprBoolContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(700); + setState(706); match(BOOLEAN); } break; } _ctx.stop = _input.LT(-1); - setState(763); + setState(769); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,73,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -5689,16 +5728,16 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(761); + setState(767); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,72,_ctx) ) { case 1: { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(703); + setState(709); if (!(precpred(_ctx, 19))) throw new FailedPredicateException(this, "precpred(_ctx, 19)"); - setState(704); + setState(710); _la = _input.LA(1); if ( !(_la==SHIFT_LEFT || _la==SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -5708,7 +5747,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(705); + setState(711); expr(20); } break; @@ -5716,9 +5755,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(706); + setState(712); if (!(precpred(_ctx, 18))) throw new FailedPredicateException(this, "precpred(_ctx, 18)"); - setState(707); + setState(713); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << ASTERISK) | (1L << DIVIDE) | (1L << MODULO))) != 0)) ) { _errHandler.recoverInline(this); @@ -5728,7 +5767,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(708); + setState(714); expr(19); } break; @@ -5736,9 +5775,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(709); + setState(715); if (!(precpred(_ctx, 17))) throw new FailedPredicateException(this, "precpred(_ctx, 17)"); - setState(710); + setState(716); _la = _input.LA(1); if ( !(_la==PLUS || _la==MINUS) ) { _errHandler.recoverInline(this); @@ -5748,7 +5787,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(711); + setState(717); expr(18); } break; @@ -5756,9 +5795,9 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(712); + setState(718); if (!(precpred(_ctx, 15))) throw new FailedPredicateException(this, "precpred(_ctx, 15)"); - setState(713); + setState(719); _la = _input.LA(1); if ( !((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << EQUAL) | (1L << NOT_EQUAL) | (1L << LESS_THAN) | (1L << LESS_THAN_EQUAL) | (1L << GREATER_THAN_EQUAL) | (1L << GREATER_THAN))) != 0)) ) { _errHandler.recoverInline(this); @@ -5768,7 +5807,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(714); + setState(720); expr(16); } break; @@ -5776,13 +5815,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(715); + setState(721); if (!(precpred(_ctx, 14))) throw new FailedPredicateException(this, "precpred(_ctx, 14)"); { - setState(716); + setState(722); match(AND); } - setState(717); + setState(723); expr(15); } break; @@ -5790,13 +5829,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(718); + setState(724); if (!(precpred(_ctx, 13))) throw new FailedPredicateException(this, "precpred(_ctx, 13)"); { - setState(719); + setState(725); match(BIT_XOR); } - setState(720); + setState(726); expr(14); } break; @@ -5804,13 +5843,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(721); + setState(727); if (!(precpred(_ctx, 12))) throw new FailedPredicateException(this, "precpred(_ctx, 12)"); { - setState(722); + setState(728); match(BIT_OR); } - setState(723); + setState(729); expr(13); } break; @@ -5818,13 +5857,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(724); + setState(730); if (!(precpred(_ctx, 11))) throw new FailedPredicateException(this, "precpred(_ctx, 11)"); { - setState(725); + setState(731); match(LOGIC_AND); } - setState(726); + setState(732); expr(12); } break; @@ -5832,13 +5871,13 @@ public class KickCParser extends Parser { { _localctx = new ExprBinaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(727); + setState(733); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(728); + setState(734); match(LOGIC_OR); } - setState(729); + setState(735); expr(11); } break; @@ -5846,15 +5885,15 @@ public class KickCParser extends Parser { { _localctx = new ExprTernaryContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(730); + setState(736); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(731); + setState(737); match(CONDITION); - setState(732); + setState(738); expr(0); - setState(733); + setState(739); match(COLON); - setState(734); + setState(740); expr(10); } break; @@ -5862,11 +5901,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(736); + setState(742); if (!(precpred(_ctx, 8))) throw new FailedPredicateException(this, "precpred(_ctx, 8)"); - setState(737); + setState(743); match(ASSIGN); - setState(738); + setState(744); expr(8); } break; @@ -5874,11 +5913,11 @@ public class KickCParser extends Parser { { _localctx = new ExprAssignmentCompoundContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(739); + setState(745); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(740); + setState(746); match(ASSIGN_COMPOUND); - setState(741); + setState(747); expr(7); } break; @@ -5886,11 +5925,11 @@ public class KickCParser extends Parser { { _localctx = new ExprDotContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(742); + setState(748); if (!(precpred(_ctx, 31))) throw new FailedPredicateException(this, "precpred(_ctx, 31)"); - setState(743); + setState(749); match(DOT); - setState(744); + setState(750); match(NAME); } break; @@ -5898,11 +5937,11 @@ public class KickCParser extends Parser { { _localctx = new ExprArrowContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(745); + setState(751); if (!(precpred(_ctx, 30))) throw new FailedPredicateException(this, "precpred(_ctx, 30)"); - setState(746); + setState(752); match(ARROW); - setState(747); + setState(753); match(NAME); } break; @@ -5910,21 +5949,21 @@ public class KickCParser extends Parser { { _localctx = new ExprCallContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(748); + setState(754); if (!(precpred(_ctx, 29))) throw new FailedPredicateException(this, "precpred(_ctx, 29)"); - setState(749); + setState(755); match(PAR_BEGIN); - setState(751); + setState(757); _errHandler.sync(this); _la = _input.LA(1); - if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 81)) & ~0x3f) == 0 && ((1L << (_la - 81)) & ((1L << (SIZEOF - 81)) | (1L << (TYPEID - 81)) | (1L << (DEFINED - 81)) | (1L << (LOGIC_NOT - 81)) | (1L << (BOOLEAN - 81)) | (1L << (NUMBER - 81)) | (1L << (NAME - 81)) | (1L << (STRING - 81)) | (1L << (CHAR - 81)))) != 0)) { + if ((((_la) & ~0x3f) == 0 && ((1L << _la) & ((1L << CURLY_BEGIN) | (1L << PAR_BEGIN) | (1L << PLUS) | (1L << MINUS) | (1L << ASTERISK) | (1L << INC) | (1L << DEC) | (1L << AND) | (1L << BIT_NOT) | (1L << LESS_THAN) | (1L << GREATER_THAN))) != 0) || ((((_la - 82)) & ~0x3f) == 0 && ((1L << (_la - 82)) & ((1L << (SIZEOF - 82)) | (1L << (TYPEID - 82)) | (1L << (DEFINED - 82)) | (1L << (LOGIC_NOT - 82)) | (1L << (BOOLEAN - 82)) | (1L << (NUMBER - 82)) | (1L << (NAME - 82)) | (1L << (STRING - 82)) | (1L << (CHAR - 82)))) != 0)) { { - setState(750); + setState(756); parameterList(); } } - setState(753); + setState(759); match(PAR_END); } break; @@ -5932,13 +5971,13 @@ public class KickCParser extends Parser { { _localctx = new ExprArrayContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(754); + setState(760); if (!(precpred(_ctx, 25))) throw new FailedPredicateException(this, "precpred(_ctx, 25)"); - setState(755); + setState(761); match(BRACKET_BEGIN); - setState(756); + setState(762); commaExpr(0); - setState(757); + setState(763); match(BRACKET_END); } break; @@ -5946,9 +5985,9 @@ public class KickCParser extends Parser { { _localctx = new ExprPostModContext(new ExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_expr); - setState(759); + setState(765); if (!(precpred(_ctx, 22))) throw new FailedPredicateException(this, "precpred(_ctx, 22)"); - setState(760); + setState(766); _la = _input.LA(1); if ( !(_la==INC || _la==DEC) ) { _errHandler.recoverInline(this); @@ -5963,7 +6002,7 @@ public class KickCParser extends Parser { } } } - setState(765); + setState(771); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,73,_ctx); } @@ -6017,21 +6056,21 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(766); + setState(772); expr(0); - setState(771); + setState(777); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(767); + setState(773); match(COMMA); - setState(768); + setState(774); expr(0); } } - setState(773); + setState(779); _errHandler.sync(this); _la = _input.LA(1); } @@ -6080,19 +6119,19 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(774); + setState(780); match(KICKASM); - setState(776); + setState(782); _errHandler.sync(this); _la = _input.LA(1); if (_la==PAR_BEGIN) { { - setState(775); + setState(781); asmDirectives(); } } - setState(778); + setState(784); match(KICKASM_BODY); } } @@ -6146,27 +6185,27 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(780); - match(PAR_BEGIN); - setState(781); - asmDirective(); setState(786); + match(PAR_BEGIN); + setState(787); + asmDirective(); + setState(792); _errHandler.sync(this); _la = _input.LA(1); while (_la==COMMA) { { { - setState(782); + setState(788); match(COMMA); - setState(783); + setState(789); asmDirective(); } } - setState(788); + setState(794); _errHandler.sync(this); _la = _input.LA(1); } - setState(789); + setState(795); match(PAR_END); } } @@ -6312,16 +6351,16 @@ public class KickCParser extends Parser { AsmDirectiveContext _localctx = new AsmDirectiveContext(_ctx, getState()); enterRule(_localctx, 78, RULE_asmDirective); try { - setState(806); + setState(812); _errHandler.sync(this); switch (_input.LA(1)) { case RESOURCE: _localctx = new AsmDirectiveResourceContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(791); + setState(797); match(RESOURCE); - setState(792); + setState(798); match(STRING); } break; @@ -6329,9 +6368,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveUsesContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(793); + setState(799); match(USES); - setState(794); + setState(800); match(NAME); } break; @@ -6339,9 +6378,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveClobberContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(795); + setState(801); match(CLOBBERS); - setState(796); + setState(802); match(STRING); } break; @@ -6349,9 +6388,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveBytesContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(797); + setState(803); match(BYTES); - setState(798); + setState(804); expr(0); } break; @@ -6359,9 +6398,9 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveCyclesContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(799); + setState(805); match(CYCLES); - setState(800); + setState(806); expr(0); } break; @@ -6369,14 +6408,14 @@ public class KickCParser extends Parser { _localctx = new AsmDirectiveAddressContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(801); + setState(807); match(PC); - setState(804); + setState(810); _errHandler.sync(this); switch (_input.LA(1)) { case INLINE: { - setState(802); + setState(808); match(INLINE); } break; @@ -6401,7 +6440,7 @@ public class KickCParser extends Parser { case STRING: case CHAR: { - setState(803); + setState(809); expr(0); } break; @@ -6458,17 +6497,17 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(811); + setState(817); _errHandler.sync(this); _la = _input.LA(1); - while (((((_la - 122)) & ~0x3f) == 0 && ((1L << (_la - 122)) & ((1L << (ASM_BYTE - 122)) | (1L << (ASM_MNEMONIC - 122)) | (1L << (ASM_MULTI_NAME - 122)) | (1L << (ASM_NAME - 122)))) != 0)) { + while (((((_la - 123)) & ~0x3f) == 0 && ((1L << (_la - 123)) & ((1L << (ASM_BYTE - 123)) | (1L << (ASM_MNEMONIC - 123)) | (1L << (ASM_MULTI_NAME - 123)) | (1L << (ASM_NAME - 123)))) != 0)) { { { - setState(808); + setState(814); asmLine(); } } - setState(813); + setState(819); _errHandler.sync(this); _la = _input.LA(1); } @@ -6518,28 +6557,28 @@ public class KickCParser extends Parser { AsmLineContext _localctx = new AsmLineContext(_ctx, getState()); enterRule(_localctx, 82, RULE_asmLine); try { - setState(817); + setState(823); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_MULTI_NAME: case ASM_NAME: enterOuterAlt(_localctx, 1); { - setState(814); + setState(820); asmLabel(); } break; case ASM_MNEMONIC: enterOuterAlt(_localctx, 2); { - setState(815); + setState(821); asmInstruction(); } break; case ASM_BYTE: enterOuterAlt(_localctx, 3); { - setState(816); + setState(822); asmBytes(); } break; @@ -6610,16 +6649,16 @@ public class KickCParser extends Parser { AsmLabelContext _localctx = new AsmLabelContext(_ctx, getState()); enterRule(_localctx, 84, RULE_asmLabel); try { - setState(823); + setState(829); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_NAME: _localctx = new AsmLabelNameContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(819); + setState(825); match(ASM_NAME); - setState(820); + setState(826); match(ASM_COLON); } break; @@ -6627,9 +6666,9 @@ public class KickCParser extends Parser { _localctx = new AsmLabelMultiContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(821); + setState(827); match(ASM_MULTI_NAME); - setState(822); + setState(828); match(ASM_COLON); } break; @@ -6678,14 +6717,14 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(825); + setState(831); match(ASM_MNEMONIC); - setState(827); + setState(833); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,82,_ctx) ) { case 1: { - setState(826); + setState(832); asmParamMode(); } break; @@ -6741,23 +6780,23 @@ public class KickCParser extends Parser { try { enterOuterAlt(_localctx, 1); { - setState(829); - match(ASM_BYTE); - setState(830); - asmExpr(0); setState(835); + match(ASM_BYTE); + setState(836); + asmExpr(0); + setState(841); _errHandler.sync(this); _la = _input.LA(1); while (_la==ASM_COMMA) { { { - setState(831); + setState(837); match(ASM_COMMA); - setState(832); + setState(838); asmExpr(0); } } - setState(837); + setState(843); _errHandler.sync(this); _la = _input.LA(1); } @@ -6917,14 +6956,14 @@ public class KickCParser extends Parser { AsmParamModeContext _localctx = new AsmParamModeContext(_ctx, getState()); enterRule(_localctx, 90, RULE_asmParamMode); try { - setState(861); + setState(867); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,84,_ctx) ) { case 1: _localctx = new AsmModeAbsContext(_localctx); enterOuterAlt(_localctx, 1); { - setState(838); + setState(844); asmExpr(0); } break; @@ -6932,9 +6971,9 @@ public class KickCParser extends Parser { _localctx = new AsmModeImmContext(_localctx); enterOuterAlt(_localctx, 2); { - setState(839); + setState(845); match(ASM_IMM); - setState(840); + setState(846); asmExpr(0); } break; @@ -6942,11 +6981,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeAbsXYContext(_localctx); enterOuterAlt(_localctx, 3); { - setState(841); + setState(847); asmExpr(0); - setState(842); + setState(848); match(ASM_COMMA); - setState(843); + setState(849); match(ASM_NAME); } break; @@ -6954,15 +6993,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndIdxXYContext(_localctx); enterOuterAlt(_localctx, 4); { - setState(845); + setState(851); match(ASM_PAR_BEGIN); - setState(846); + setState(852); asmExpr(0); - setState(847); + setState(853); match(ASM_PAR_END); - setState(848); + setState(854); match(ASM_COMMA); - setState(849); + setState(855); match(ASM_NAME); } break; @@ -6970,15 +7009,15 @@ public class KickCParser extends Parser { _localctx = new AsmModeIdxIndXYContext(_localctx); enterOuterAlt(_localctx, 5); { - setState(851); + setState(857); match(ASM_PAR_BEGIN); - setState(852); + setState(858); asmExpr(0); - setState(853); + setState(859); match(ASM_COMMA); - setState(854); + setState(860); match(ASM_NAME); - setState(855); + setState(861); match(ASM_PAR_END); } break; @@ -6986,11 +7025,11 @@ public class KickCParser extends Parser { _localctx = new AsmModeIndContext(_localctx); enterOuterAlt(_localctx, 6); { - setState(857); + setState(863); match(ASM_PAR_BEGIN); - setState(858); + setState(864); asmExpr(0); - setState(859); + setState(865); match(ASM_PAR_END); } break; @@ -7195,7 +7234,7 @@ public class KickCParser extends Parser { int _alt; enterOuterAlt(_localctx, 1); { - setState(877); + setState(883); _errHandler.sync(this); switch (_input.LA(1)) { case ASM_BRACKET_BEGIN: @@ -7204,11 +7243,11 @@ public class KickCParser extends Parser { _ctx = _localctx; _prevctx = _localctx; - setState(864); + setState(870); match(ASM_BRACKET_BEGIN); - setState(865); + setState(871); asmExpr(0); - setState(866); + setState(872); match(ASM_BRACKET_END); } break; @@ -7220,9 +7259,9 @@ public class KickCParser extends Parser { _localctx = new AsmExprUnaryContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(868); + setState(874); _la = _input.LA(1); - if ( !(((((_la - 134)) & ~0x3f) == 0 && ((1L << (_la - 134)) & ((1L << (ASM_PLUS - 134)) | (1L << (ASM_MINUS - 134)) | (1L << (ASM_LESS_THAN - 134)) | (1L << (ASM_GREATER_THAN - 134)))) != 0)) ) { + if ( !(((((_la - 135)) & ~0x3f) == 0 && ((1L << (_la - 135)) & ((1L << (ASM_PLUS - 135)) | (1L << (ASM_MINUS - 135)) | (1L << (ASM_LESS_THAN - 135)) | (1L << (ASM_GREATER_THAN - 135)))) != 0)) ) { _errHandler.recoverInline(this); } else { @@ -7230,7 +7269,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(869); + setState(875); asmExpr(8); } break; @@ -7239,7 +7278,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(870); + setState(876); match(ASM_NAME); } break; @@ -7248,7 +7287,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprLabelRelContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(871); + setState(877); match(ASM_MULTI_REL); } break; @@ -7257,11 +7296,11 @@ public class KickCParser extends Parser { _localctx = new AsmExprReplaceContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(872); + setState(878); match(ASM_CURLY_BEGIN); - setState(873); + setState(879); match(ASM_NAME); - setState(874); + setState(880); match(ASM_CURLY_END); } break; @@ -7270,7 +7309,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprIntContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(875); + setState(881); match(ASM_NUMBER); } break; @@ -7279,7 +7318,7 @@ public class KickCParser extends Parser { _localctx = new AsmExprCharContext(_localctx); _ctx = _localctx; _prevctx = _localctx; - setState(876); + setState(882); match(ASM_CHAR); } break; @@ -7287,7 +7326,7 @@ public class KickCParser extends Parser { throw new NoViableAltException(this); } _ctx.stop = _input.LT(-1); - setState(893); + setState(899); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,87,_ctx); while ( _alt!=2 && _alt!=org.antlr.v4.runtime.atn.ATN.INVALID_ALT_NUMBER ) { @@ -7295,20 +7334,20 @@ public class KickCParser extends Parser { if ( _parseListeners!=null ) triggerExitRuleEvent(); _prevctx = _localctx; { - setState(891); + setState(897); _errHandler.sync(this); switch ( getInterpreter().adaptivePredict(_input,86,_ctx) ) { case 1: { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(879); + setState(885); if (!(precpred(_ctx, 10))) throw new FailedPredicateException(this, "precpred(_ctx, 10)"); { - setState(880); + setState(886); match(ASM_DOT); } - setState(881); + setState(887); asmExpr(11); } break; @@ -7316,9 +7355,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(882); + setState(888); if (!(precpred(_ctx, 9))) throw new FailedPredicateException(this, "precpred(_ctx, 9)"); - setState(883); + setState(889); _la = _input.LA(1); if ( !(_la==ASM_SHIFT_LEFT || _la==ASM_SHIFT_RIGHT) ) { _errHandler.recoverInline(this); @@ -7328,7 +7367,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(884); + setState(890); asmExpr(10); } break; @@ -7336,9 +7375,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(885); + setState(891); if (!(precpred(_ctx, 7))) throw new FailedPredicateException(this, "precpred(_ctx, 7)"); - setState(886); + setState(892); _la = _input.LA(1); if ( !(_la==ASM_MULTIPLY || _la==ASM_DIVIDE) ) { _errHandler.recoverInline(this); @@ -7348,7 +7387,7 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(887); + setState(893); asmExpr(8); } break; @@ -7356,9 +7395,9 @@ public class KickCParser extends Parser { { _localctx = new AsmExprBinaryContext(new AsmExprContext(_parentctx, _parentState)); pushNewRecursionContext(_localctx, _startState, RULE_asmExpr); - setState(888); + setState(894); if (!(precpred(_ctx, 6))) throw new FailedPredicateException(this, "precpred(_ctx, 6)"); - setState(889); + setState(895); _la = _input.LA(1); if ( !(_la==ASM_PLUS || _la==ASM_MINUS) ) { _errHandler.recoverInline(this); @@ -7368,14 +7407,14 @@ public class KickCParser extends Parser { _errHandler.reportMatch(this); consume(); } - setState(890); + setState(896); asmExpr(7); } break; } } } - setState(895); + setState(901); _errHandler.sync(this); _alt = getInterpreter().adaptivePredict(_input,87,_ctx); } @@ -7504,7 +7543,7 @@ public class KickCParser extends Parser { } public static final String _serializedATN = - "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a4\u0383\4\2\t"+ + "\3\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964\3\u00a5\u0389\4\2\t"+ "\2\4\3\t\3\4\4\t\4\4\5\t\5\4\6\t\6\4\7\t\7\4\b\t\b\4\t\t\t\4\n\t\n\4\13"+ "\t\13\4\f\t\f\4\r\t\r\4\16\t\16\4\17\t\17\4\20\t\20\4\21\t\21\4\22\t\22"+ "\4\23\t\23\4\24\t\24\4\25\t\25\4\26\t\26\4\27\t\27\4\30\t\30\4\31\t\31"+ @@ -7533,333 +7572,335 @@ public class KickCParser extends Parser { "\3\30\3\30\5\30\u0150\n\30\3\31\3\31\5\31\u0154\n\31\3\31\3\31\3\32\3"+ "\32\3\32\7\32\u015b\n\32\f\32\16\32\u015e\13\32\3\33\3\33\7\33\u0162\n"+ "\33\f\33\16\33\u0165\13\33\3\33\3\33\3\33\3\33\5\33\u016b\n\33\3\34\3"+ - "\34\3\34\3\34\3\34\3\34\3\34\7\34\u0174\n\34\f\34\16\34\u0177\13\34\3"+ "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ - "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ - "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3"+ - "\34\3\34\3\34\3\34\3\34\3\34\7\34\u01b7\n\34\f\34\16\34\u01ba\13\34\3"+ - "\34\5\34\u01bd\n\34\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35"+ - "\u01c8\n\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35"+ - "\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01dc\n\35\3\35\3\35\3\35\3\35\3\35"+ - "\7\35\u01e3\n\35\f\35\16\35\u01e6\13\35\3\35\3\35\5\35\u01ea\n\35\3\36"+ - "\6\36\u01ed\n\36\r\36\16\36\u01ee\3\37\3\37\3\37\3\37\3\37\5\37\u01f6"+ - "\n\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\5\37\u0203"+ - "\n\37\3\37\7\37\u0206\n\37\f\37\16\37\u0209\13\37\3\37\3\37\3\37\3\37"+ - "\3\37\3\37\3\37\7\37\u0212\n\37\f\37\16\37\u0215\13\37\3\37\3\37\3\37"+ - "\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u0220\n\37\f\37\16\37\u0223\13\37"+ - "\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+ - "\3\37\3\37\5\37\u0235\n\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\5\37\u023e"+ - "\n\37\3\37\3\37\3\37\3\37\3\37\5\37\u0245\n\37\3 \6 \u0248\n \r \16 \u0249"+ - "\3 \3 \3 \5 \u024f\n \5 \u0251\n \3!\3!\3!\3!\5!\u0257\n!\3\"\3\"\3\""+ - "\3\"\3\"\5\"\u025e\n\"\3\"\3\"\7\"\u0262\n\"\f\"\16\"\u0265\13\"\5\"\u0267"+ - "\n\"\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u026f\n\"\3#\5#\u0272\n#\3#\5#\u0275"+ - "\n#\3$\3$\3$\3$\3$\3$\7$\u027d\n$\f$\16$\u0280\13$\3%\3%\3%\3%\3%\3%\3"+ - "%\3%\3%\5%\u028b\n%\3%\3%\3%\3%\3%\3%\5%\u0293\n%\3%\3%\3%\3%\5%\u0299"+ - "\n%\3%\3%\5%\u029d\n%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%"+ - "\3%\7%\u02b0\n%\f%\16%\u02b3\13%\3%\3%\3%\3%\3%\6%\u02ba\n%\r%\16%\u02bb"+ - "\3%\3%\5%\u02c0\n%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%"+ - "\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%"+ - "\3%\3%\3%\3%\3%\3%\3%\3%\5%\u02f2\n%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02fc"+ - "\n%\f%\16%\u02ff\13%\3&\3&\3&\7&\u0304\n&\f&\16&\u0307\13&\3\'\3\'\5\'"+ - "\u030b\n\'\3\'\3\'\3(\3(\3(\3(\7(\u0313\n(\f(\16(\u0316\13(\3(\3(\3)\3"+ - ")\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u0327\n)\5)\u0329\n)\3*\7*\u032c"+ - "\n*\f*\16*\u032f\13*\3+\3+\3+\5+\u0334\n+\3,\3,\3,\3,\5,\u033a\n,\3-\3"+ - "-\5-\u033e\n-\3.\3.\3.\3.\7.\u0344\n.\f.\16.\u0347\13.\3/\3/\3/\3/\3/"+ - "\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\5/\u0360\n/\3\60"+ - "\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\5\60"+ - "\u0370\n\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60"+ - "\7\60\u037e\n\60\f\60\16\60\u0381\13\60\3\60\2\t\20\34\36*FH^\61\2\4\6"+ - "\b\n\f\16\20\22\24\26\30\32\34\36 \"$&(*,.\60\62\64\668:<>@BDFHJLNPRT"+ - "VXZ\\^\2\r\3\2\27\30\5\2\22\23\31\32\\\\\4\2!!$$\3\2\35\36\3\2\24\26\3"+ - "\2\22\23\3\2\37$\3\2\u0088\u008b\3\2\u0086\u0087\3\2\u008c\u008d\3\2\u0088"+ - "\u0089\2\u0407\2`\3\2\2\2\4c\3\2\2\2\6i\3\2\2\2\bn\3\2\2\2\nv\3\2\2\2"+ - "\f\u0087\3\2\2\2\16\u0089\3\2\2\2\20\u008c\3\2\2\2\22\u00a3\3\2\2\2\24"+ - "\u00c8\3\2\2\2\26\u00cd\3\2\2\2\30\u00d7\3\2\2\2\32\u00de\3\2\2\2\34\u00e4"+ - "\3\2\2\2\36\u0103\3\2\2\2 \u0113\3\2\2\2\"\u0116\3\2\2\2$\u0122\3\2\2"+ - "\2&\u0125\3\2\2\2(\u0128\3\2\2\2*\u0130\3\2\2\2,\u013b\3\2\2\2.\u0140"+ - "\3\2\2\2\60\u0151\3\2\2\2\62\u0157\3\2\2\2\64\u016a\3\2\2\2\66\u01bc\3"+ - "\2\2\28\u01e9\3\2\2\2:\u01ec\3\2\2\2<\u0244\3\2\2\2>\u0247\3\2\2\2@\u0252"+ - "\3\2\2\2B\u026e\3\2\2\2D\u0274\3\2\2\2F\u0276\3\2\2\2H\u02bf\3\2\2\2J"+ - "\u0300\3\2\2\2L\u0308\3\2\2\2N\u030e\3\2\2\2P\u0328\3\2\2\2R\u032d\3\2"+ - "\2\2T\u0333\3\2\2\2V\u0339\3\2\2\2X\u033b\3\2\2\2Z\u033f\3\2\2\2\\\u035f"+ - "\3\2\2\2^\u036f\3\2\2\2`a\5\6\4\2ab\7\2\2\3b\3\3\2\2\2cd\5R*\2de\7\2\2"+ - "\3e\5\3\2\2\2fh\5\b\5\2gf\3\2\2\2hk\3\2\2\2ig\3\2\2\2ij\3\2\2\2j\7\3\2"+ - "\2\2ki\3\2\2\2lo\5\f\7\2mo\5\n\6\2nl\3\2\2\2nm\3\2\2\2o\t\3\2\2\2pq\7"+ - "a\2\2qw\7\u00a1\2\2rs\7b\2\2sw\7\u00a1\2\2tu\7b\2\2uw\7\u00a0\2\2vp\3"+ - "\2\2\2vr\3\2\2\2vt\3\2\2\2w\13\3\2\2\2xy\5\16\b\2yz\7\n\2\2z\u0088\3\2"+ - "\2\2{|\5\"\22\2|}\7\n\2\2}\u0088\3\2\2\2~\177\5(\25\2\177\u0080\7\n\2"+ - "\2\u0080\u0088\3\2\2\2\u0081\u0088\5.\30\2\u0082\u0088\5L\'\2\u0083\u0088"+ - "\5\66\34\2\u0084\u0085\5\22\n\2\u0085\u0086\7\n\2\2\u0086\u0088\3\2\2"+ - "\2\u0087x\3\2\2\2\u0087{\3\2\2\2\u0087~\3\2\2\2\u0087\u0081\3\2\2\2\u0087"+ - "\u0082\3\2\2\2\u0087\u0083\3\2\2\2\u0087\u0084\3\2\2\2\u0088\r\3\2\2\2"+ - "\u0089\u008a\5\26\f\2\u008a\u008b\5\20\t\2\u008b\17\3\2\2\2\u008c\u0090"+ - "\b\t\1\2\u008d\u008f\5\30\r\2\u008e\u008d\3\2\2\2\u008f\u0092\3\2\2\2"+ - "\u0090\u008e\3\2\2\2\u0090\u0091\3\2\2\2\u0091\u0093\3\2\2\2\u0092\u0090"+ - "\3\2\2\2\u0093\u0094\5\24\13\2\u0094\u00a0\3\2\2\2\u0095\u0096\f\3\2\2"+ - "\u0096\u009a\7\f\2\2\u0097\u0099\5\30\r\2\u0098\u0097\3\2\2\2\u0099\u009c"+ - "\3\2\2\2\u009a\u0098\3\2\2\2\u009a\u009b\3\2\2\2\u009b\u009d\3\2\2\2\u009c"+ - "\u009a\3\2\2\2\u009d\u009f\5\24\13\2\u009e\u0095\3\2\2\2\u009f\u00a2\3"+ - "\2\2\2\u00a0\u009e\3\2\2\2\u00a0\u00a1\3\2\2\2\u00a1\21\3\2\2\2\u00a2"+ - "\u00a0\3\2\2\2\u00a3\u00a4\7)\2\2\u00a4\u00a8\5\26\f\2\u00a5\u00a7\5\30"+ - "\r\2\u00a6\u00a5\3\2\2\2\u00a7\u00aa\3\2\2\2\u00a8\u00a6\3\2\2\2\u00a8"+ - "\u00a9\3\2\2\2\u00a9\u00ab\3\2\2\2\u00aa\u00a8\3\2\2\2\u00ab\u00af\7v"+ - "\2\2\u00ac\u00ae\5\32\16\2\u00ad\u00ac\3\2\2\2\u00ae\u00b1\3\2\2\2\u00af"+ - "\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0\u00b2\3\2\2\2\u00b1\u00af\3\2"+ - "\2\2\u00b2\u00b3\b\n\1\2\u00b3\23\3\2\2\2\u00b4\u00b8\7v\2\2\u00b5\u00b7"+ - "\5\32\16\2\u00b6\u00b5\3\2\2\2\u00b7\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2"+ - "\u00b8\u00b9\3\2\2\2\u00b9\u00bd\3\2\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc"+ - "\7\'\2\2\u00bc\u00be\5H%\2\u00bd\u00bb\3\2\2\2\u00bd\u00be\3\2\2\2\u00be"+ - "\u00c9\3\2\2\2\u00bf\u00c3\7v\2\2\u00c0\u00c2\5\32\16\2\u00c1\u00c0\3"+ - "\2\2\2\u00c2\u00c5\3\2\2\2\u00c3\u00c1\3\2\2\2\u00c3\u00c4\3\2\2\2\u00c4"+ - "\u00c6\3\2\2\2\u00c5\u00c3\3\2\2\2\u00c6\u00c7\7\'\2\2\u00c7\u00c9\5L"+ - "\'\2\u00c8\u00b4\3\2\2\2\u00c8\u00bf\3\2\2\2\u00c9\25\3\2\2\2\u00ca\u00cc"+ - "\58\35\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf\3\2\2\2\u00cd\u00cb\3\2\2\2\u00cd"+ - "\u00ce\3\2\2\2\u00ce\u00d0\3\2\2\2\u00cf\u00cd\3\2\2\2\u00d0\u00d4\5\36"+ - "\20\2\u00d1\u00d3\58\35\2\u00d2\u00d1\3\2\2\2\u00d3\u00d6\3\2\2\2\u00d4"+ - "\u00d2\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5\27\3\2\2\2\u00d6\u00d4\3\2\2"+ - "\2\u00d7\u00db\7\24\2\2\u00d8\u00da\58\35\2\u00d9\u00d8\3\2\2\2\u00da"+ - "\u00dd\3\2\2\2\u00db\u00d9\3\2\2\2\u00db\u00dc\3\2\2\2\u00dc\31\3\2\2"+ - "\2\u00dd\u00db\3\2\2\2\u00de\u00e0\7\6\2\2\u00df\u00e1\5H%\2\u00e0\u00df"+ - "\3\2\2\2\u00e0\u00e1\3\2\2\2\u00e1\u00e2\3\2\2\2\u00e2\u00e3\7\7\2\2\u00e3"+ - "\33\3\2\2\2\u00e4\u00e5\b\17\1\2\u00e5\u00e6\5\36\20\2\u00e6\u00f1\3\2"+ - "\2\2\u00e7\u00e8\f\4\2\2\u00e8\u00f0\7\24\2\2\u00e9\u00ea\f\3\2\2\u00ea"+ - "\u00ec\7\6\2\2\u00eb\u00ed\5H%\2\u00ec\u00eb\3\2\2\2\u00ec\u00ed\3\2\2"+ - "\2\u00ed\u00ee\3\2\2\2\u00ee\u00f0\7\7\2\2\u00ef\u00e7\3\2\2\2\u00ef\u00e9"+ - "\3\2\2\2\u00f0\u00f3\3\2\2\2\u00f1\u00ef\3\2\2\2\u00f1\u00f2\3\2\2\2\u00f2"+ - "\35\3\2\2\2\u00f3\u00f1\3\2\2\2\u00f4\u00f5\b\20\1\2\u00f5\u00f6\7\b\2"+ - "\2\u00f6\u00f7\5\36\20\2\u00f7\u00f8\7\t\2\2\u00f8\u0104\3\2\2\2\u00f9"+ - "\u0104\7^\2\2\u00fa\u00fc\7]\2\2\u00fb\u00fd\7^\2\2\u00fc\u00fb\3\2\2"+ - "\2\u00fc\u00fd\3\2\2\2\u00fd\u0104\3\2\2\2\u00fe\u0104\5\"\22\2\u00ff"+ - "\u0104\5 \21\2\u0100\u0104\5(\25\2\u0101\u0104\5&\24\2\u0102\u0104\7\3"+ - "\2\2\u0103\u00f4\3\2\2\2\u0103\u00f9\3\2\2\2\u0103\u00fa\3\2\2\2\u0103"+ - "\u00fe\3\2\2\2\u0103\u00ff\3\2\2\2\u0103\u0100\3\2\2\2\u0103\u0101\3\2"+ - "\2\2\u0103\u0102\3\2\2\2\u0104\u0110\3\2\2\2\u0105\u0106\f\t\2\2\u0106"+ - "\u0108\7\6\2\2\u0107\u0109\5H%\2\u0108\u0107\3\2\2\2\u0108\u0109\3\2\2"+ - "\2\u0109\u010a\3\2\2\2\u010a\u010f\7\7\2\2\u010b\u010c\f\b\2\2\u010c\u010d"+ - "\7\b\2\2\u010d\u010f\7\t\2\2\u010e\u0105\3\2\2\2\u010e\u010b\3\2\2\2\u010f"+ - "\u0112\3\2\2\2\u0110\u010e\3\2\2\2\u0110\u0111\3\2\2\2\u0111\37\3\2\2"+ - "\2\u0112\u0110\3\2\2\2\u0113\u0114\7Q\2\2\u0114\u0115\7v\2\2\u0115!\3"+ - "\2\2\2\u0116\u0118\7Q\2\2\u0117\u0119\7v\2\2\u0118\u0117\3\2\2\2\u0118"+ - "\u0119\3\2\2\2\u0119\u011a\3\2\2\2\u011a\u011c\7\4\2\2\u011b\u011d\5$"+ - "\23\2\u011c\u011b\3\2\2\2\u011d\u011e\3\2\2\2\u011e\u011c\3\2\2\2\u011e"+ - "\u011f\3\2\2\2\u011f\u0120\3\2\2\2\u0120\u0121\7\5\2\2\u0121#\3\2\2\2"+ - "\u0122\u0123\5\16\b\2\u0123\u0124\7\n\2\2\u0124%\3\2\2\2\u0125\u0126\7"+ - "R\2\2\u0126\u0127\7v\2\2\u0127\'\3\2\2\2\u0128\u012a\7R\2\2\u0129\u012b"+ - "\7v\2\2\u012a\u0129\3\2\2\2\u012a\u012b\3\2\2\2\u012b\u012c\3\2\2\2\u012c"+ - "\u012d\7\4\2\2\u012d\u012e\5*\26\2\u012e\u012f\7\5\2\2\u012f)\3\2\2\2"+ - "\u0130\u0131\b\26\1\2\u0131\u0132\5,\27\2\u0132\u0138\3\2\2\2\u0133\u0134"+ - "\f\3\2\2\u0134\u0135\7\f\2\2\u0135\u0137\5,\27\2\u0136\u0133\3\2\2\2\u0137"+ - "\u013a\3\2\2\2\u0138\u0136\3\2\2\2\u0138\u0139\3\2\2\2\u0139+\3\2\2\2"+ - "\u013a\u0138\3\2\2\2\u013b\u013e\7v\2\2\u013c\u013d\7\'\2\2\u013d\u013f"+ - "\5H%\2\u013e\u013c\3\2\2\2\u013e\u013f\3\2\2\2\u013f-\3\2\2\2\u0140\u0144"+ - "\5\26\f\2\u0141\u0143\5\30\r\2\u0142\u0141\3\2\2\2\u0143\u0146\3\2\2\2"+ - "\u0144\u0142\3\2\2\2\u0144\u0145\3\2\2\2\u0145\u0147\3\2\2\2\u0146\u0144"+ - "\3\2\2\2\u0147\u0148\7v\2\2\u0148\u014a\7\b\2\2\u0149\u014b\5\62\32\2"+ - "\u014a\u0149\3\2\2\2\u014a\u014b\3\2\2\2\u014b\u014c\3\2\2\2\u014c\u014f"+ - "\7\t\2\2\u014d\u0150\5\60\31\2\u014e\u0150\7\n\2\2\u014f\u014d\3\2\2\2"+ - "\u014f\u014e\3\2\2\2\u0150/\3\2\2\2\u0151\u0153\7\4\2\2\u0152\u0154\5"+ - ":\36\2\u0153\u0152\3\2\2\2\u0153\u0154\3\2\2\2\u0154\u0155\3\2\2\2\u0155"+ + "\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u0192\n\34\f\34\16\34\u0195"+ + "\13\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ + "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34"+ + "\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\3\34\7\34\u01bd\n\34"+ + "\f\34\16\34\u01c0\13\34\3\34\5\34\u01c3\n\34\3\35\3\35\3\35\3\35\3\35"+ + "\3\35\3\35\3\35\3\35\5\35\u01ce\n\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35"+ + "\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\3\35\5\35\u01e2\n\35"+ + "\3\35\3\35\3\35\3\35\3\35\7\35\u01e9\n\35\f\35\16\35\u01ec\13\35\3\35"+ + "\3\35\5\35\u01f0\n\35\3\36\6\36\u01f3\n\36\r\36\16\36\u01f4\3\37\3\37"+ + "\3\37\3\37\3\37\5\37\u01fc\n\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+ + "\3\37\3\37\3\37\5\37\u0209\n\37\3\37\7\37\u020c\n\37\f\37\16\37\u020f"+ + "\13\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u0218\n\37\f\37\16\37\u021b"+ + "\13\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\7\37\u0226\n\37\f"+ + "\37\16\37\u0229\13\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37\3\37"+ + "\3\37\3\37\3\37\3\37\3\37\3\37\5\37\u023b\n\37\3\37\3\37\3\37\3\37\3\37"+ + "\3\37\3\37\5\37\u0244\n\37\3\37\3\37\3\37\3\37\3\37\5\37\u024b\n\37\3"+ + " \6 \u024e\n \r \16 \u024f\3 \3 \3 \5 \u0255\n \5 \u0257\n \3!\3!\3!\3"+ + "!\5!\u025d\n!\3\"\3\"\3\"\3\"\3\"\5\"\u0264\n\"\3\"\3\"\7\"\u0268\n\""+ + "\f\"\16\"\u026b\13\"\5\"\u026d\n\"\3\"\3\"\3\"\3\"\3\"\3\"\5\"\u0275\n"+ + "\"\3#\5#\u0278\n#\3#\5#\u027b\n#\3$\3$\3$\3$\3$\3$\7$\u0283\n$\f$\16$"+ + "\u0286\13$\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u0291\n%\3%\3%\3%\3%\3%\3%\5"+ + "%\u0299\n%\3%\3%\3%\3%\5%\u029f\n%\3%\3%\5%\u02a3\n%\3%\3%\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u02b6\n%\f%\16%\u02b9\13%\3%\3%"+ + "\3%\3%\3%\6%\u02c0\n%\r%\16%\u02c1\3%\3%\5%\u02c6\n%\3%\3%\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\3%\5%\u02f8\n"+ + "%\3%\3%\3%\3%\3%\3%\3%\3%\7%\u0302\n%\f%\16%\u0305\13%\3&\3&\3&\7&\u030a"+ + "\n&\f&\16&\u030d\13&\3\'\3\'\5\'\u0311\n\'\3\'\3\'\3(\3(\3(\3(\7(\u0319"+ + "\n(\f(\16(\u031c\13(\3(\3(\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\3)\5)\u032d"+ + "\n)\5)\u032f\n)\3*\7*\u0332\n*\f*\16*\u0335\13*\3+\3+\3+\5+\u033a\n+\3"+ + ",\3,\3,\3,\5,\u0340\n,\3-\3-\5-\u0344\n-\3.\3.\3.\3.\7.\u034a\n.\f.\16"+ + ".\u034d\13.\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3/\3"+ + "/\3/\3/\3/\5/\u0366\n/\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3\60\3"+ + "\60\3\60\3\60\3\60\3\60\5\60\u0376\n\60\3\60\3\60\3\60\3\60\3\60\3\60"+ + "\3\60\3\60\3\60\3\60\3\60\3\60\7\60\u0384\n\60\f\60\16\60\u0387\13\60"+ + "\3\60\2\t\20\34\36*FH^\61\2\4\6\b\n\f\16\20\22\24\26\30\32\34\36 \"$&"+ + "(*,.\60\62\64\668:<>@BDFHJLNPRTVXZ\\^\2\r\3\2\27\30\5\2\22\23\31\32]]"+ + "\4\2!!$$\3\2\35\36\3\2\24\26\3\2\22\23\3\2\37$\3\2\u0089\u008c\3\2\u0087"+ + "\u0088\3\2\u008d\u008e\3\2\u0089\u008a\2\u040e\2`\3\2\2\2\4c\3\2\2\2\6"+ + "i\3\2\2\2\bn\3\2\2\2\nv\3\2\2\2\f\u0087\3\2\2\2\16\u0089\3\2\2\2\20\u008c"+ + "\3\2\2\2\22\u00a3\3\2\2\2\24\u00c8\3\2\2\2\26\u00cd\3\2\2\2\30\u00d7\3"+ + "\2\2\2\32\u00de\3\2\2\2\34\u00e4\3\2\2\2\36\u0103\3\2\2\2 \u0113\3\2\2"+ + "\2\"\u0116\3\2\2\2$\u0122\3\2\2\2&\u0125\3\2\2\2(\u0128\3\2\2\2*\u0130"+ + "\3\2\2\2,\u013b\3\2\2\2.\u0140\3\2\2\2\60\u0151\3\2\2\2\62\u0157\3\2\2"+ + "\2\64\u016a\3\2\2\2\66\u01c2\3\2\2\28\u01ef\3\2\2\2:\u01f2\3\2\2\2<\u024a"+ + "\3\2\2\2>\u024d\3\2\2\2@\u0258\3\2\2\2B\u0274\3\2\2\2D\u027a\3\2\2\2F"+ + "\u027c\3\2\2\2H\u02c5\3\2\2\2J\u0306\3\2\2\2L\u030e\3\2\2\2N\u0314\3\2"+ + "\2\2P\u032e\3\2\2\2R\u0333\3\2\2\2T\u0339\3\2\2\2V\u033f\3\2\2\2X\u0341"+ + "\3\2\2\2Z\u0345\3\2\2\2\\\u0365\3\2\2\2^\u0375\3\2\2\2`a\5\6\4\2ab\7\2"+ + "\2\3b\3\3\2\2\2cd\5R*\2de\7\2\2\3e\5\3\2\2\2fh\5\b\5\2gf\3\2\2\2hk\3\2"+ + "\2\2ig\3\2\2\2ij\3\2\2\2j\7\3\2\2\2ki\3\2\2\2lo\5\f\7\2mo\5\n\6\2nl\3"+ + "\2\2\2nm\3\2\2\2o\t\3\2\2\2pq\7b\2\2qw\7\u00a2\2\2rs\7c\2\2sw\7\u00a2"+ + "\2\2tu\7c\2\2uw\7\u00a1\2\2vp\3\2\2\2vr\3\2\2\2vt\3\2\2\2w\13\3\2\2\2"+ + "xy\5\16\b\2yz\7\n\2\2z\u0088\3\2\2\2{|\5\"\22\2|}\7\n\2\2}\u0088\3\2\2"+ + "\2~\177\5(\25\2\177\u0080\7\n\2\2\u0080\u0088\3\2\2\2\u0081\u0088\5.\30"+ + "\2\u0082\u0088\5L\'\2\u0083\u0088\5\66\34\2\u0084\u0085\5\22\n\2\u0085"+ + "\u0086\7\n\2\2\u0086\u0088\3\2\2\2\u0087x\3\2\2\2\u0087{\3\2\2\2\u0087"+ + "~\3\2\2\2\u0087\u0081\3\2\2\2\u0087\u0082\3\2\2\2\u0087\u0083\3\2\2\2"+ + "\u0087\u0084\3\2\2\2\u0088\r\3\2\2\2\u0089\u008a\5\26\f\2\u008a\u008b"+ + "\5\20\t\2\u008b\17\3\2\2\2\u008c\u0090\b\t\1\2\u008d\u008f\5\30\r\2\u008e"+ + "\u008d\3\2\2\2\u008f\u0092\3\2\2\2\u0090\u008e\3\2\2\2\u0090\u0091\3\2"+ + "\2\2\u0091\u0093\3\2\2\2\u0092\u0090\3\2\2\2\u0093\u0094\5\24\13\2\u0094"+ + "\u00a0\3\2\2\2\u0095\u0096\f\3\2\2\u0096\u009a\7\f\2\2\u0097\u0099\5\30"+ + "\r\2\u0098\u0097\3\2\2\2\u0099\u009c\3\2\2\2\u009a\u0098\3\2\2\2\u009a"+ + "\u009b\3\2\2\2\u009b\u009d\3\2\2\2\u009c\u009a\3\2\2\2\u009d\u009f\5\24"+ + "\13\2\u009e\u0095\3\2\2\2\u009f\u00a2\3\2\2\2\u00a0\u009e\3\2\2\2\u00a0"+ + "\u00a1\3\2\2\2\u00a1\21\3\2\2\2\u00a2\u00a0\3\2\2\2\u00a3\u00a4\7)\2\2"+ + "\u00a4\u00a8\5\26\f\2\u00a5\u00a7\5\30\r\2\u00a6\u00a5\3\2\2\2\u00a7\u00aa"+ + "\3\2\2\2\u00a8\u00a6\3\2\2\2\u00a8\u00a9\3\2\2\2\u00a9\u00ab\3\2\2\2\u00aa"+ + "\u00a8\3\2\2\2\u00ab\u00af\7w\2\2\u00ac\u00ae\5\32\16\2\u00ad\u00ac\3"+ + "\2\2\2\u00ae\u00b1\3\2\2\2\u00af\u00ad\3\2\2\2\u00af\u00b0\3\2\2\2\u00b0"+ + "\u00b2\3\2\2\2\u00b1\u00af\3\2\2\2\u00b2\u00b3\b\n\1\2\u00b3\23\3\2\2"+ + "\2\u00b4\u00b8\7w\2\2\u00b5\u00b7\5\32\16\2\u00b6\u00b5\3\2\2\2\u00b7"+ + "\u00ba\3\2\2\2\u00b8\u00b6\3\2\2\2\u00b8\u00b9\3\2\2\2\u00b9\u00bd\3\2"+ + "\2\2\u00ba\u00b8\3\2\2\2\u00bb\u00bc\7\'\2\2\u00bc\u00be\5H%\2\u00bd\u00bb"+ + "\3\2\2\2\u00bd\u00be\3\2\2\2\u00be\u00c9\3\2\2\2\u00bf\u00c3\7w\2\2\u00c0"+ + "\u00c2\5\32\16\2\u00c1\u00c0\3\2\2\2\u00c2\u00c5\3\2\2\2\u00c3\u00c1\3"+ + "\2\2\2\u00c3\u00c4\3\2\2\2\u00c4\u00c6\3\2\2\2\u00c5\u00c3\3\2\2\2\u00c6"+ + "\u00c7\7\'\2\2\u00c7\u00c9\5L\'\2\u00c8\u00b4\3\2\2\2\u00c8\u00bf\3\2"+ + "\2\2\u00c9\25\3\2\2\2\u00ca\u00cc\58\35\2\u00cb\u00ca\3\2\2\2\u00cc\u00cf"+ + "\3\2\2\2\u00cd\u00cb\3\2\2\2\u00cd\u00ce\3\2\2\2\u00ce\u00d0\3\2\2\2\u00cf"+ + "\u00cd\3\2\2\2\u00d0\u00d4\5\36\20\2\u00d1\u00d3\58\35\2\u00d2\u00d1\3"+ + "\2\2\2\u00d3\u00d6\3\2\2\2\u00d4\u00d2\3\2\2\2\u00d4\u00d5\3\2\2\2\u00d5"+ + "\27\3\2\2\2\u00d6\u00d4\3\2\2\2\u00d7\u00db\7\24\2\2\u00d8\u00da\58\35"+ + "\2\u00d9\u00d8\3\2\2\2\u00da\u00dd\3\2\2\2\u00db\u00d9\3\2\2\2\u00db\u00dc"+ + "\3\2\2\2\u00dc\31\3\2\2\2\u00dd\u00db\3\2\2\2\u00de\u00e0\7\6\2\2\u00df"+ + "\u00e1\5H%\2\u00e0\u00df\3\2\2\2\u00e0\u00e1\3\2\2\2\u00e1\u00e2\3\2\2"+ + "\2\u00e2\u00e3\7\7\2\2\u00e3\33\3\2\2\2\u00e4\u00e5\b\17\1\2\u00e5\u00e6"+ + "\5\36\20\2\u00e6\u00f1\3\2\2\2\u00e7\u00e8\f\4\2\2\u00e8\u00f0\7\24\2"+ + "\2\u00e9\u00ea\f\3\2\2\u00ea\u00ec\7\6\2\2\u00eb\u00ed\5H%\2\u00ec\u00eb"+ + "\3\2\2\2\u00ec\u00ed\3\2\2\2\u00ed\u00ee\3\2\2\2\u00ee\u00f0\7\7\2\2\u00ef"+ + "\u00e7\3\2\2\2\u00ef\u00e9\3\2\2\2\u00f0\u00f3\3\2\2\2\u00f1\u00ef\3\2"+ + "\2\2\u00f1\u00f2\3\2\2\2\u00f2\35\3\2\2\2\u00f3\u00f1\3\2\2\2\u00f4\u00f5"+ + "\b\20\1\2\u00f5\u00f6\7\b\2\2\u00f6\u00f7\5\36\20\2\u00f7\u00f8\7\t\2"+ + "\2\u00f8\u0104\3\2\2\2\u00f9\u0104\7_\2\2\u00fa\u00fc\7^\2\2\u00fb\u00fd"+ + "\7_\2\2\u00fc\u00fb\3\2\2\2\u00fc\u00fd\3\2\2\2\u00fd\u0104\3\2\2\2\u00fe"+ + "\u0104\5\"\22\2\u00ff\u0104\5 \21\2\u0100\u0104\5(\25\2\u0101\u0104\5"+ + "&\24\2\u0102\u0104\7\3\2\2\u0103\u00f4\3\2\2\2\u0103\u00f9\3\2\2\2\u0103"+ + "\u00fa\3\2\2\2\u0103\u00fe\3\2\2\2\u0103\u00ff\3\2\2\2\u0103\u0100\3\2"+ + "\2\2\u0103\u0101\3\2\2\2\u0103\u0102\3\2\2\2\u0104\u0110\3\2\2\2\u0105"+ + "\u0106\f\t\2\2\u0106\u0108\7\6\2\2\u0107\u0109\5H%\2\u0108\u0107\3\2\2"+ + "\2\u0108\u0109\3\2\2\2\u0109\u010a\3\2\2\2\u010a\u010f\7\7\2\2\u010b\u010c"+ + "\f\b\2\2\u010c\u010d\7\b\2\2\u010d\u010f\7\t\2\2\u010e\u0105\3\2\2\2\u010e"+ + "\u010b\3\2\2\2\u010f\u0112\3\2\2\2\u0110\u010e\3\2\2\2\u0110\u0111\3\2"+ + "\2\2\u0111\37\3\2\2\2\u0112\u0110\3\2\2\2\u0113\u0114\7R\2\2\u0114\u0115"+ + "\7w\2\2\u0115!\3\2\2\2\u0116\u0118\7R\2\2\u0117\u0119\7w\2\2\u0118\u0117"+ + "\3\2\2\2\u0118\u0119\3\2\2\2\u0119\u011a\3\2\2\2\u011a\u011c\7\4\2\2\u011b"+ + "\u011d\5$\23\2\u011c\u011b\3\2\2\2\u011d\u011e\3\2\2\2\u011e\u011c\3\2"+ + "\2\2\u011e\u011f\3\2\2\2\u011f\u0120\3\2\2\2\u0120\u0121\7\5\2\2\u0121"+ + "#\3\2\2\2\u0122\u0123\5\16\b\2\u0123\u0124\7\n\2\2\u0124%\3\2\2\2\u0125"+ + "\u0126\7S\2\2\u0126\u0127\7w\2\2\u0127\'\3\2\2\2\u0128\u012a\7S\2\2\u0129"+ + "\u012b\7w\2\2\u012a\u0129\3\2\2\2\u012a\u012b\3\2\2\2\u012b\u012c\3\2"+ + "\2\2\u012c\u012d\7\4\2\2\u012d\u012e\5*\26\2\u012e\u012f\7\5\2\2\u012f"+ + ")\3\2\2\2\u0130\u0131\b\26\1\2\u0131\u0132\5,\27\2\u0132\u0138\3\2\2\2"+ + "\u0133\u0134\f\3\2\2\u0134\u0135\7\f\2\2\u0135\u0137\5,\27\2\u0136\u0133"+ + "\3\2\2\2\u0137\u013a\3\2\2\2\u0138\u0136\3\2\2\2\u0138\u0139\3\2\2\2\u0139"+ + "+\3\2\2\2\u013a\u0138\3\2\2\2\u013b\u013e\7w\2\2\u013c\u013d\7\'\2\2\u013d"+ + "\u013f\5H%\2\u013e\u013c\3\2\2\2\u013e\u013f\3\2\2\2\u013f-\3\2\2\2\u0140"+ + "\u0144\5\26\f\2\u0141\u0143\5\30\r\2\u0142\u0141\3\2\2\2\u0143\u0146\3"+ + "\2\2\2\u0144\u0142\3\2\2\2\u0144\u0145\3\2\2\2\u0145\u0147\3\2\2\2\u0146"+ + "\u0144\3\2\2\2\u0147\u0148\7w\2\2\u0148\u014a\7\b\2\2\u0149\u014b\5\62"+ + "\32\2\u014a\u0149\3\2\2\2\u014a\u014b\3\2\2\2\u014b\u014c\3\2\2\2\u014c"+ + "\u014f\7\t\2\2\u014d\u0150\5\60\31\2\u014e\u0150\7\n\2\2\u014f\u014d\3"+ + "\2\2\2\u014f\u014e\3\2\2\2\u0150/\3\2\2\2\u0151\u0153\7\4\2\2\u0152\u0154"+ + "\5:\36\2\u0153\u0152\3\2\2\2\u0153\u0154\3\2\2\2\u0154\u0155\3\2\2\2\u0155"+ "\u0156\7\5\2\2\u0156\61\3\2\2\2\u0157\u015c\5\64\33\2\u0158\u0159\7\f"+ "\2\2\u0159\u015b\5\64\33\2\u015a\u0158\3\2\2\2\u015b\u015e\3\2\2\2\u015c"+ "\u015a\3\2\2\2\u015c\u015d\3\2\2\2\u015d\63\3\2\2\2\u015e\u015c\3\2\2"+ "\2\u015f\u0163\5\26\f\2\u0160\u0162\5\30\r\2\u0161\u0160\3\2\2\2\u0162"+ "\u0165\3\2\2\2\u0163\u0161\3\2\2\2\u0163\u0164\3\2\2\2\u0164\u0166\3\2"+ - "\2\2\u0165\u0163\3\2\2\2\u0166\u0167\7v\2\2\u0167\u016b\3\2\2\2\u0168"+ - "\u016b\7^\2\2\u0169\u016b\7\16\2\2\u016a\u015f\3\2\2\2\u016a\u0168\3\2"+ - "\2\2\u016a\u0169\3\2\2\2\u016b\65\3\2\2\2\u016c\u016d\7c\2\2\u016d\u016e"+ - "\7*\2\2\u016e\u016f\3\2\2\2\u016f\u0170\7\b\2\2\u0170\u0175\7m\2\2\u0171"+ - "\u0172\7\f\2\2\u0172\u0174\7m\2\2\u0173\u0171\3\2\2\2\u0174\u0177\3\2"+ - "\2\2\u0175\u0173\3\2\2\2\u0175\u0176\3\2\2\2\u0176\u0178\3\2\2\2\u0177"+ - "\u0175\3\2\2\2\u0178\u01bd\7\t\2\2\u0179\u017a\7c\2\2\u017a\u017b\7+\2"+ - "\2\u017b\u017c\3\2\2\2\u017c\u017d\7\b\2\2\u017d\u017e\7m\2\2\u017e\u01bd"+ - "\7\t\2\2\u017f\u0180\7c\2\2\u0180\u0181\7,\2\2\u0181\u0182\3\2\2\2\u0182"+ - "\u0183\7\b\2\2\u0183\u0184\7v\2\2\u0184\u01bd\7\t\2\2\u0185\u0186\7c\2"+ - "\2\u0186\u0187\7/\2\2\u0187\u0188\3\2\2\2\u0188\u0189\7\b\2\2\u0189\u018a"+ - "\7v\2\2\u018a\u01bd\7\t\2\2\u018b\u018c\7c\2\2\u018c\u018d\7-\2\2\u018d"+ - "\u018e\3\2\2\2\u018e\u018f\7\b\2\2\u018f\u0190\7w\2\2\u0190\u01bd\7\t"+ - "\2\2\u0191\u0192\7c\2\2\u0192\u0193\7.\2\2\u0193\u0194\3\2\2\2\u0194\u0195"+ - "\7\b\2\2\u0195\u0196\7w\2\2\u0196\u01bd\7\t\2\2\u0197\u0198\7c\2\2\u0198"+ - "\u0199\7\60\2\2\u0199\u019a\3\2\2\2\u019a\u019b\7\b\2\2\u019b\u019c\7"+ - "v\2\2\u019c\u01bd\7\t\2\2\u019d\u019e\7c\2\2\u019e\u019f\7\61\2\2\u019f"+ - "\u01a0\3\2\2\2\u01a0\u01a1\7\b\2\2\u01a1\u01a2\7v\2\2\u01a2\u01bd\7\t"+ - "\2\2\u01a3\u01a4\7c\2\2\u01a4\u01a5\7\62\2\2\u01a5\u01a6\3\2\2\2\u01a6"+ - "\u01a7\7\b\2\2\u01a7\u01a8\7v\2\2\u01a8\u01bd\7\t\2\2\u01a9\u01aa\7c\2"+ - "\2\u01aa\u01ab\7B\2\2\u01ab\u01ac\3\2\2\2\u01ac\u01ad\7\b\2\2\u01ad\u01ae"+ - "\7C\2\2\u01ae\u01bd\7\t\2\2\u01af\u01b0\7c\2\2\u01b0\u01b1\7D\2\2\u01b1"+ - "\u01b2\3\2\2\2\u01b2\u01b3\7\b\2\2\u01b3\u01b8\7v\2\2\u01b4\u01b5\7\f"+ - "\2\2\u01b5\u01b7\7v\2\2\u01b6\u01b4\3\2\2\2\u01b7\u01ba\3\2\2\2\u01b8"+ - "\u01b6\3\2\2\2\u01b8\u01b9\3\2\2\2\u01b9\u01bb\3\2\2\2\u01ba\u01b8\3\2"+ - "\2\2\u01bb\u01bd\7\t\2\2\u01bc\u016c\3\2\2\2\u01bc\u0179\3\2\2\2\u01bc"+ - "\u017f\3\2\2\2\u01bc\u0185\3\2\2\2\u01bc\u018b\3\2\2\2\u01bc\u0191\3\2"+ - "\2\2\u01bc\u0197\3\2\2\2\u01bc\u019d\3\2\2\2\u01bc\u01a3\3\2\2\2\u01bc"+ - "\u01a9\3\2\2\2\u01bc\u01af\3\2\2\2\u01bd\67\3\2\2\2\u01be\u01ea\7\63\2"+ - "\2\u01bf\u01c0\7\66\2\2\u01c0\u01c1\7\b\2\2\u01c1\u01c2\7m\2\2\u01c2\u01ea"+ - "\7\t\2\2\u01c3\u01c7\7;\2\2\u01c4\u01c5\7\b\2\2\u01c5\u01c6\7v\2\2\u01c6"+ - "\u01c8\7\t\2\2\u01c7\u01c4\3\2\2\2\u01c7\u01c8\3\2\2\2\u01c8\u01ea\3\2"+ - "\2\2\u01c9\u01ea\7=\2\2\u01ca\u01ea\7>\2\2\u01cb\u01cc\7<\2\2\u01cc\u01cd"+ - "\7\b\2\2\u01cd\u01ce\7m\2\2\u01ce\u01ea\7\t\2\2\u01cf\u01ea\78\2\2\u01d0"+ - "\u01ea\79\2\2\u01d1\u01ea\7?\2\2\u01d2\u01ea\7@\2\2\u01d3\u01ea\7\64\2"+ - "\2\u01d4\u01ea\7\65\2\2\u01d5\u01ea\7\67\2\2\u01d6\u01ea\7A\2\2\u01d7"+ - "\u01db\7:\2\2\u01d8\u01d9\7\b\2\2\u01d9\u01da\7v\2\2\u01da\u01dc\7\t\2"+ - "\2\u01db\u01d8\3\2\2\2\u01db\u01dc\3\2\2\2\u01dc\u01ea\3\2\2\2\u01dd\u01de"+ - "\7*\2\2\u01de\u01df\7\b\2\2\u01df\u01e4\7m\2\2\u01e0\u01e1\7\f\2\2\u01e1"+ - "\u01e3\7m\2\2\u01e2\u01e0\3\2\2\2\u01e3\u01e6\3\2\2\2\u01e4\u01e2\3\2"+ - "\2\2\u01e4\u01e5\3\2\2\2\u01e5\u01e7\3\2\2\2\u01e6\u01e4\3\2\2\2\u01e7"+ - "\u01ea\7\t\2\2\u01e8\u01ea\7C\2\2\u01e9\u01be\3\2\2\2\u01e9\u01bf\3\2"+ - "\2\2\u01e9\u01c3\3\2\2\2\u01e9\u01c9\3\2\2\2\u01e9\u01ca\3\2\2\2\u01e9"+ - "\u01cb\3\2\2\2\u01e9\u01cf\3\2\2\2\u01e9\u01d0\3\2\2\2\u01e9\u01d1\3\2"+ - "\2\2\u01e9\u01d2\3\2\2\2\u01e9\u01d3\3\2\2\2\u01e9\u01d4\3\2\2\2\u01e9"+ - "\u01d5\3\2\2\2\u01e9\u01d6\3\2\2\2\u01e9\u01d7\3\2\2\2\u01e9\u01dd\3\2"+ - "\2\2\u01e9\u01e8\3\2\2\2\u01ea9\3\2\2\2\u01eb\u01ed\5<\37\2\u01ec\u01eb"+ - "\3\2\2\2\u01ed\u01ee\3\2\2\2\u01ee\u01ec\3\2\2\2\u01ee\u01ef\3\2\2\2\u01ef"+ - ";\3\2\2\2\u01f0\u01f1\5\16\b\2\u01f1\u01f2\7\n\2\2\u01f2\u0245\3\2\2\2"+ - "\u01f3\u01f5\7\4\2\2\u01f4\u01f6\5:\36\2\u01f5\u01f4\3\2\2\2\u01f5\u01f6"+ - "\3\2\2\2\u01f6\u01f7\3\2\2\2\u01f7\u0245\7\5\2\2\u01f8\u01f9\5F$\2\u01f9"+ - "\u01fa\7\n\2\2\u01fa\u0245\3\2\2\2\u01fb\u01fc\7E\2\2\u01fc\u01fd\7\b"+ - "\2\2\u01fd\u01fe\5F$\2\u01fe\u01ff\7\t\2\2\u01ff\u0202\5<\37\2\u0200\u0201"+ - "\7F\2\2\u0201\u0203\5<\37\2\u0202\u0200\3\2\2\2\u0202\u0203\3\2\2\2\u0203"+ - "\u0245\3\2\2\2\u0204\u0206\58\35\2\u0205\u0204\3\2\2\2\u0206\u0209\3\2"+ - "\2\2\u0207\u0205\3\2\2\2\u0207\u0208\3\2\2\2\u0208\u020a\3\2\2\2\u0209"+ - "\u0207\3\2\2\2\u020a\u020b\7G\2\2\u020b\u020c\7\b\2\2\u020c\u020d\5F$"+ - "\2\u020d\u020e\7\t\2\2\u020e\u020f\5<\37\2\u020f\u0245\3\2\2\2\u0210\u0212"+ - "\58\35\2\u0211\u0210\3\2\2\2\u0212\u0215\3\2\2\2\u0213\u0211\3\2\2\2\u0213"+ - "\u0214\3\2\2\2\u0214\u0216\3\2\2\2\u0215\u0213\3\2\2\2\u0216\u0217\7H"+ - "\2\2\u0217\u0218\5<\37\2\u0218\u0219\7G\2\2\u0219\u021a\7\b\2\2\u021a"+ - "\u021b\5F$\2\u021b\u021c\7\t\2\2\u021c\u021d\7\n\2\2\u021d\u0245\3\2\2"+ - "\2\u021e\u0220\58\35\2\u021f\u021e\3\2\2\2\u0220\u0223\3\2\2\2\u0221\u021f"+ - "\3\2\2\2\u0221\u0222\3\2\2\2\u0222\u0224\3\2\2\2\u0223\u0221\3\2\2\2\u0224"+ - "\u0225\7I\2\2\u0225\u0226\7\b\2\2\u0226\u0227\5B\"\2\u0227\u0228\7\t\2"+ - "\2\u0228\u0229\5<\37\2\u0229\u0245\3\2\2\2\u022a\u022b\7J\2\2\u022b\u022c"+ - "\7\b\2\2\u022c\u022d\5F$\2\u022d\u022e\7\t\2\2\u022e\u022f\7\4\2\2\u022f"+ - "\u0230\5> \2\u0230\u0231\7\5\2\2\u0231\u0245\3\2\2\2\u0232\u0234\7K\2"+ - "\2\u0233\u0235\5F$\2\u0234\u0233\3\2\2\2\u0234\u0235\3\2\2\2\u0235\u0236"+ - "\3\2\2\2\u0236\u0245\7\n\2\2\u0237\u0238\7L\2\2\u0238\u0245\7\n\2\2\u0239"+ - "\u023a\7M\2\2\u023a\u0245\7\n\2\2\u023b\u023d\7N\2\2\u023c\u023e\5N(\2"+ - "\u023d\u023c\3\2\2\2\u023d\u023e\3\2\2\2\u023e\u023f\3\2\2\2\u023f\u0240"+ - "\7\4\2\2\u0240\u0241\5R*\2\u0241\u0242\7\u008f\2\2\u0242\u0245\3\2\2\2"+ - "\u0243\u0245\5L\'\2\u0244\u01f0\3\2\2\2\u0244\u01f3\3\2\2\2\u0244\u01f8"+ - "\3\2\2\2\u0244\u01fb\3\2\2\2\u0244\u0207\3\2\2\2\u0244\u0213\3\2\2\2\u0244"+ - "\u0221\3\2\2\2\u0244\u022a\3\2\2\2\u0244\u0232\3\2\2\2\u0244\u0237\3\2"+ - "\2\2\u0244\u0239\3\2\2\2\u0244\u023b\3\2\2\2\u0244\u0243\3\2\2\2\u0245"+ - "=\3\2\2\2\u0246\u0248\5@!\2\u0247\u0246\3\2\2\2\u0248\u0249\3\2\2\2\u0249"+ - "\u0247\3\2\2\2\u0249\u024a\3\2\2\2\u024a\u0250\3\2\2\2\u024b\u024c\7O"+ - "\2\2\u024c\u024e\7\13\2\2\u024d\u024f\5:\36\2\u024e\u024d\3\2\2\2\u024e"+ - "\u024f\3\2\2\2\u024f\u0251\3\2\2\2\u0250\u024b\3\2\2\2\u0250\u0251\3\2"+ - "\2\2\u0251?\3\2\2\2\u0252\u0253\7P\2\2\u0253\u0254\5H%\2\u0254\u0256\7"+ - "\13\2\2\u0255\u0257\5:\36\2\u0256\u0255\3\2\2\2\u0256\u0257\3\2\2\2\u0257"+ - "A\3\2\2\2\u0258\u0259\5D#\2\u0259\u025a\7\n\2\2\u025a\u025b\5F$\2\u025b"+ - "\u025d\7\n\2\2\u025c\u025e\5F$\2\u025d\u025c\3\2\2\2\u025d\u025e\3\2\2"+ - "\2\u025e\u026f\3\2\2\2\u025f\u0263\5\26\f\2\u0260\u0262\5\30\r\2\u0261"+ - "\u0260\3\2\2\2\u0262\u0265\3\2\2\2\u0263\u0261\3\2\2\2\u0263\u0264\3\2"+ - "\2\2\u0264\u0267\3\2\2\2\u0265\u0263\3\2\2\2\u0266\u025f\3\2\2\2\u0266"+ - "\u0267\3\2\2\2\u0267\u0268\3\2\2\2\u0268\u0269\7v\2\2\u0269\u026a\7\13"+ - "\2\2\u026a\u026b\5H%\2\u026b\u026c\7\r\2\2\u026c\u026d\5H%\2\u026d\u026f"+ - "\3\2\2\2\u026e\u0258\3\2\2\2\u026e\u0266\3\2\2\2\u026fC\3\2\2\2\u0270"+ - "\u0272\5\16\b\2\u0271\u0270\3\2\2\2\u0271\u0272\3\2\2\2\u0272\u0275\3"+ - "\2\2\2\u0273\u0275\5F$\2\u0274\u0271\3\2\2\2\u0274\u0273\3\2\2\2\u0275"+ - "E\3\2\2\2\u0276\u0277\b$\1\2\u0277\u0278\5H%\2\u0278\u027e\3\2\2\2\u0279"+ - "\u027a\f\3\2\2\u027a\u027b\7\f\2\2\u027b\u027d\5H%\2\u027c\u0279\3\2\2"+ - "\2\u027d\u0280\3\2\2\2\u027e\u027c\3\2\2\2\u027e\u027f\3\2\2\2\u027fG"+ - "\3\2\2\2\u0280\u027e\3\2\2\2\u0281\u0282\b%\1\2\u0282\u0283\7\b\2\2\u0283"+ - "\u0284\5F$\2\u0284\u0285\7\t\2\2\u0285\u02c0\3\2\2\2\u0286\u0287\7S\2"+ - "\2\u0287\u028a\7\b\2\2\u0288\u028b\5H%\2\u0289\u028b\5\34\17\2\u028a\u0288"+ - "\3\2\2\2\u028a\u0289\3\2\2\2\u028b\u028c\3\2\2\2\u028c\u028d\7\t\2\2\u028d"+ - "\u02c0\3\2\2\2\u028e\u028f\7T\2\2\u028f\u0292\7\b\2\2\u0290\u0293\5H%"+ - "\2\u0291\u0293\5\34\17\2\u0292\u0290\3\2\2\2\u0292\u0291\3\2\2\2\u0293"+ - "\u0294\3\2\2\2\u0294\u0295\7\t\2\2\u0295\u02c0\3\2\2\2\u0296\u0298\7U"+ - "\2\2\u0297\u0299\7\b\2\2\u0298\u0297\3\2\2\2\u0298\u0299\3\2\2\2\u0299"+ - "\u029a\3\2\2\2\u029a\u029c\7v\2\2\u029b\u029d\7\t\2\2\u029c\u029b\3\2"+ - "\2\2\u029c\u029d\3\2\2\2\u029d\u02c0\3\2\2\2\u029e\u029f\7\b\2\2\u029f"+ - "\u02a0\5\34\17\2\u02a0\u02a1\7\t\2\2\u02a1\u02a2\5H%\32\u02a2\u02c0\3"+ - "\2\2\2\u02a3\u02a4\t\2\2\2\u02a4\u02c0\5H%\31\u02a5\u02a6\7\24\2\2\u02a6"+ - "\u02c0\5H%\27\u02a7\u02a8\t\3\2\2\u02a8\u02c0\5H%\26\u02a9\u02aa\t\4\2"+ - "\2\u02aa\u02c0\5H%\22\u02ab\u02ac\7\4\2\2\u02ac\u02b1\5H%\2\u02ad\u02ae"+ - "\7\f\2\2\u02ae\u02b0\5H%\2\u02af\u02ad\3\2\2\2\u02b0\u02b3\3\2\2\2\u02b1"+ - "\u02af\3\2\2\2\u02b1\u02b2\3\2\2\2\u02b2\u02b4\3\2\2\2\u02b3\u02b1\3\2"+ - "\2\2\u02b4\u02b5\7\5\2\2\u02b5\u02c0\3\2\2\2\u02b6\u02c0\7v\2\2\u02b7"+ - "\u02c0\7m\2\2\u02b8\u02ba\7w\2\2\u02b9\u02b8\3\2\2\2\u02ba\u02bb\3\2\2"+ - "\2\u02bb\u02b9\3\2\2\2\u02bb\u02bc\3\2\2\2\u02bc\u02c0\3\2\2\2\u02bd\u02c0"+ - "\7x\2\2\u02be\u02c0\7_\2\2\u02bf\u0281\3\2\2\2\u02bf\u0286\3\2\2\2\u02bf"+ - "\u028e\3\2\2\2\u02bf\u0296\3\2\2\2\u02bf\u029e\3\2\2\2\u02bf\u02a3\3\2"+ - "\2\2\u02bf\u02a5\3\2\2\2\u02bf\u02a7\3\2\2\2\u02bf\u02a9\3\2\2\2\u02bf"+ - "\u02ab\3\2\2\2\u02bf\u02b6\3\2\2\2\u02bf\u02b7\3\2\2\2\u02bf\u02b9\3\2"+ - "\2\2\u02bf\u02bd\3\2\2\2\u02bf\u02be\3\2\2\2\u02c0\u02fd\3\2\2\2\u02c1"+ - "\u02c2\f\25\2\2\u02c2\u02c3\t\5\2\2\u02c3\u02fc\5H%\26\u02c4\u02c5\f\24"+ - "\2\2\u02c5\u02c6\t\6\2\2\u02c6\u02fc\5H%\25\u02c7\u02c8\f\23\2\2\u02c8"+ - "\u02c9\t\7\2\2\u02c9\u02fc\5H%\24\u02ca\u02cb\f\21\2\2\u02cb\u02cc\t\b"+ - "\2\2\u02cc\u02fc\5H%\22\u02cd\u02ce\f\20\2\2\u02ce\u02cf\7\31\2\2\u02cf"+ - "\u02fc\5H%\21\u02d0\u02d1\f\17\2\2\u02d1\u02d2\7\33\2\2\u02d2\u02fc\5"+ - "H%\20\u02d3\u02d4\f\16\2\2\u02d4\u02d5\7\34\2\2\u02d5\u02fc\5H%\17\u02d6"+ - "\u02d7\f\r\2\2\u02d7\u02d8\7%\2\2\u02d8\u02fc\5H%\16\u02d9\u02da\f\f\2"+ - "\2\u02da\u02db\7&\2\2\u02db\u02fc\5H%\r\u02dc\u02dd\f\13\2\2\u02dd\u02de"+ - "\7\17\2\2\u02de\u02df\5H%\2\u02df\u02e0\7\13\2\2\u02e0\u02e1\5H%\f\u02e1"+ - "\u02fc\3\2\2\2\u02e2\u02e3\f\n\2\2\u02e3\u02e4\7\'\2\2\u02e4\u02fc\5H"+ - "%\n\u02e5\u02e6\f\t\2\2\u02e6\u02e7\7(\2\2\u02e7\u02fc\5H%\t\u02e8\u02e9"+ - "\f!\2\2\u02e9\u02ea\7\20\2\2\u02ea\u02fc\7v\2\2\u02eb\u02ec\f \2\2\u02ec"+ - "\u02ed\7\21\2\2\u02ed\u02fc\7v\2\2\u02ee\u02ef\f\37\2\2\u02ef\u02f1\7"+ - "\b\2\2\u02f0\u02f2\5J&\2\u02f1\u02f0\3\2\2\2\u02f1\u02f2\3\2\2\2\u02f2"+ - "\u02f3\3\2\2\2\u02f3\u02fc\7\t\2\2\u02f4\u02f5\f\33\2\2\u02f5\u02f6\7"+ - "\6\2\2\u02f6\u02f7\5F$\2\u02f7\u02f8\7\7\2\2\u02f8\u02fc\3\2\2\2\u02f9"+ - "\u02fa\f\30\2\2\u02fa\u02fc\t\2\2\2\u02fb\u02c1\3\2\2\2\u02fb\u02c4\3"+ - "\2\2\2\u02fb\u02c7\3\2\2\2\u02fb\u02ca\3\2\2\2\u02fb\u02cd\3\2\2\2\u02fb"+ - "\u02d0\3\2\2\2\u02fb\u02d3\3\2\2\2\u02fb\u02d6\3\2\2\2\u02fb\u02d9\3\2"+ - "\2\2\u02fb\u02dc\3\2\2\2\u02fb\u02e2\3\2\2\2\u02fb\u02e5\3\2\2\2\u02fb"+ - "\u02e8\3\2\2\2\u02fb\u02eb\3\2\2\2\u02fb\u02ee\3\2\2\2\u02fb\u02f4\3\2"+ - "\2\2\u02fb\u02f9\3\2\2\2\u02fc\u02ff\3\2\2\2\u02fd\u02fb\3\2\2\2\u02fd"+ - "\u02fe\3\2\2\2\u02feI\3\2\2\2\u02ff\u02fd\3\2\2\2\u0300\u0305\5H%\2\u0301"+ - "\u0302\7\f\2\2\u0302\u0304\5H%\2\u0303\u0301\3\2\2\2\u0304\u0307\3\2\2"+ - "\2\u0305\u0303\3\2\2\2\u0305\u0306\3\2\2\2\u0306K\3\2\2\2\u0307\u0305"+ - "\3\2\2\2\u0308\u030a\7V\2\2\u0309\u030b\5N(\2\u030a\u0309\3\2\2\2\u030a"+ - "\u030b\3\2\2\2\u030b\u030c\3\2\2\2\u030c\u030d\7`\2\2\u030dM\3\2\2\2\u030e"+ - "\u030f\7\b\2\2\u030f\u0314\5P)\2\u0310\u0311\7\f\2\2\u0311\u0313\5P)\2"+ - "\u0312\u0310\3\2\2\2\u0313\u0316\3\2\2\2\u0314\u0312\3\2\2\2\u0314\u0315"+ - "\3\2\2\2\u0315\u0317\3\2\2\2\u0316\u0314\3\2\2\2\u0317\u0318\7\t\2\2\u0318"+ - "O\3\2\2\2\u0319\u031a\7W\2\2\u031a\u0329\7w\2\2\u031b\u031c\7X\2\2\u031c"+ - "\u0329\7v\2\2\u031d\u031e\7Y\2\2\u031e\u0329\7w\2\2\u031f\u0320\7Z\2\2"+ - "\u0320\u0329\5H%\2\u0321\u0322\7[\2\2\u0322\u0329\5H%\2\u0323\u0326\7"+ - "+\2\2\u0324\u0327\7\67\2\2\u0325\u0327\5H%\2\u0326\u0324\3\2\2\2\u0326"+ - "\u0325\3\2\2\2\u0327\u0329\3\2\2\2\u0328\u0319\3\2\2\2\u0328\u031b\3\2"+ - "\2\2\u0328\u031d\3\2\2\2\u0328\u031f\3\2\2\2\u0328\u0321\3\2\2\2\u0328"+ - "\u0323\3\2\2\2\u0329Q\3\2\2\2\u032a\u032c\5T+\2\u032b\u032a\3\2\2\2\u032c"+ - "\u032f\3\2\2\2\u032d\u032b\3\2\2\2\u032d\u032e\3\2\2\2\u032eS\3\2\2\2"+ - "\u032f\u032d\3\2\2\2\u0330\u0334\5V,\2\u0331\u0334\5X-\2\u0332\u0334\5"+ - "Z.\2\u0333\u0330\3\2\2\2\u0333\u0331\3\2\2\2\u0333\u0332\3\2\2\2\u0334"+ - "U\3\2\2\2\u0335\u0336\7\u009c\2\2\u0336\u033a\7\177\2\2\u0337\u0338\7"+ - "\u009b\2\2\u0338\u033a\7\177\2\2\u0339\u0335\3\2\2\2\u0339\u0337\3\2\2"+ - "\2\u033aW\3\2\2\2\u033b\u033d\7}\2\2\u033c\u033e\5\\/\2\u033d\u033c\3"+ - "\2\2\2\u033d\u033e\3\2\2\2\u033eY\3\2\2\2\u033f\u0340\7|\2\2\u0340\u0345"+ - "\5^\60\2\u0341\u0342\7\u0080\2\2\u0342\u0344\5^\60\2\u0343\u0341\3\2\2"+ - "\2\u0344\u0347\3\2\2\2\u0345\u0343\3\2\2\2\u0345\u0346\3\2\2\2\u0346["+ - "\3\2\2\2\u0347\u0345\3\2\2\2\u0348\u0360\5^\60\2\u0349\u034a\7~\2\2\u034a"+ - "\u0360\5^\60\2\u034b\u034c\5^\60\2\u034c\u034d\7\u0080\2\2\u034d\u034e"+ - "\7\u009c\2\2\u034e\u0360\3\2\2\2\u034f\u0350\7\u0081\2\2\u0350\u0351\5"+ - "^\60\2\u0351\u0352\7\u0082\2\2\u0352\u0353\7\u0080\2\2\u0353\u0354\7\u009c"+ - "\2\2\u0354\u0360\3\2\2\2\u0355\u0356\7\u0081\2\2\u0356\u0357\5^\60\2\u0357"+ - "\u0358\7\u0080\2\2\u0358\u0359\7\u009c\2\2\u0359\u035a\7\u0082\2\2\u035a"+ - "\u0360\3\2\2\2\u035b\u035c\7\u0081\2\2\u035c\u035d\5^\60\2\u035d\u035e"+ - "\7\u0082\2\2\u035e\u0360\3\2\2\2\u035f\u0348\3\2\2\2\u035f\u0349\3\2\2"+ - "\2\u035f\u034b\3\2\2\2\u035f\u034f\3\2\2\2\u035f\u0355\3\2\2\2\u035f\u035b"+ - "\3\2\2\2\u0360]\3\2\2\2\u0361\u0362\b\60\1\2\u0362\u0363\7\u0083\2\2\u0363"+ - "\u0364\5^\60\2\u0364\u0365\7\u0084\2\2\u0365\u0370\3\2\2\2\u0366\u0367"+ - "\t\t\2\2\u0367\u0370\5^\60\n\u0368\u0370\7\u009c\2\2\u0369\u0370\7\u009a"+ - "\2\2\u036a\u036b\7\u008e\2\2\u036b\u036c\7\u009c\2\2\u036c\u0370\7\u008f"+ - "\2\2\u036d\u0370\7\u0090\2\2\u036e\u0370\7\u0099\2\2\u036f\u0361\3\2\2"+ - "\2\u036f\u0366\3\2\2\2\u036f\u0368\3\2\2\2\u036f\u0369\3\2\2\2\u036f\u036a"+ - "\3\2\2\2\u036f\u036d\3\2\2\2\u036f\u036e\3\2\2\2\u0370\u037f\3\2\2\2\u0371"+ - "\u0372\f\f\2\2\u0372\u0373\7\u0085\2\2\u0373\u037e\5^\60\r\u0374\u0375"+ - "\f\13\2\2\u0375\u0376\t\n\2\2\u0376\u037e\5^\60\f\u0377\u0378\f\t\2\2"+ - "\u0378\u0379\t\13\2\2\u0379\u037e\5^\60\n\u037a\u037b\f\b\2\2\u037b\u037c"+ - "\t\f\2\2\u037c\u037e\5^\60\t\u037d\u0371\3\2\2\2\u037d\u0374\3\2\2\2\u037d"+ - "\u0377\3\2\2\2\u037d\u037a\3\2\2\2\u037e\u0381\3\2\2\2\u037f\u037d\3\2"+ - "\2\2\u037f\u0380\3\2\2\2\u0380_\3\2\2\2\u0381\u037f\3\2\2\2Zinv\u0087"+ - "\u0090\u009a\u00a0\u00a8\u00af\u00b8\u00bd\u00c3\u00c8\u00cd\u00d4\u00db"+ - "\u00e0\u00ec\u00ef\u00f1\u00fc\u0103\u0108\u010e\u0110\u0118\u011e\u012a"+ - "\u0138\u013e\u0144\u014a\u014f\u0153\u015c\u0163\u016a\u0175\u01b8\u01bc"+ - "\u01c7\u01db\u01e4\u01e9\u01ee\u01f5\u0202\u0207\u0213\u0221\u0234\u023d"+ - "\u0244\u0249\u024e\u0250\u0256\u025d\u0263\u0266\u026e\u0271\u0274\u027e"+ - "\u028a\u0292\u0298\u029c\u02b1\u02bb\u02bf\u02f1\u02fb\u02fd\u0305\u030a"+ - "\u0314\u0326\u0328\u032d\u0333\u0339\u033d\u0345\u035f\u036f\u037d\u037f"; + "\2\2\u0165\u0163\3\2\2\2\u0166\u0167\7w\2\2\u0167\u016b\3\2\2\2\u0168"+ + "\u016b\7_\2\2\u0169\u016b\7\16\2\2\u016a\u015f\3\2\2\2\u016a\u0168\3\2"+ + "\2\2\u016a\u0169\3\2\2\2\u016b\65\3\2\2\2\u016c\u016d\7d\2\2\u016d\u016e"+ + "\7,\2\2\u016e\u016f\3\2\2\2\u016f\u0170\7\b\2\2\u0170\u0171\7w\2\2\u0171"+ + "\u01c3\7\t\2\2\u0172\u0173\7d\2\2\u0173\u0174\7\60\2\2\u0174\u0175\3\2"+ + "\2\2\u0175\u0176\7\b\2\2\u0176\u0177\7w\2\2\u0177\u01c3\7\t\2\2\u0178"+ + "\u0179\7d\2\2\u0179\u017a\7-\2\2\u017a\u017b\3\2\2\2\u017b\u017c\7\b\2"+ + "\2\u017c\u017d\7x\2\2\u017d\u01c3\7\t\2\2\u017e\u017f\7d\2\2\u017f\u0180"+ + "\7.\2\2\u0180\u0181\3\2\2\2\u0181\u0182\7\b\2\2\u0182\u0183\7x\2\2\u0183"+ + "\u01c3\7\t\2\2\u0184\u0185\7d\2\2\u0185\u0186\7/\2\2\u0186\u0187\3\2\2"+ + "\2\u0187\u0188\7\b\2\2\u0188\u0189\7x\2\2\u0189\u01c3\7\t\2\2\u018a\u018b"+ + "\7d\2\2\u018b\u018c\7*\2\2\u018c\u018d\3\2\2\2\u018d\u018e\7\b\2\2\u018e"+ + "\u0193\7n\2\2\u018f\u0190\7\f\2\2\u0190\u0192\7n\2\2\u0191\u018f\3\2\2"+ + "\2\u0192\u0195\3\2\2\2\u0193\u0191\3\2\2\2\u0193\u0194\3\2\2\2\u0194\u0196"+ + "\3\2\2\2\u0195\u0193\3\2\2\2\u0196\u01c3\7\t\2\2\u0197\u0198\7d\2\2\u0198"+ + "\u0199\7+\2\2\u0199\u019a\3\2\2\2\u019a\u019b\7\b\2\2\u019b\u019c\7n\2"+ + "\2\u019c\u01c3\7\t\2\2\u019d\u019e\7d\2\2\u019e\u019f\7\61\2\2\u019f\u01a0"+ + "\3\2\2\2\u01a0\u01a1\7\b\2\2\u01a1\u01a2\7w\2\2\u01a2\u01c3\7\t\2\2\u01a3"+ + "\u01a4\7d\2\2\u01a4\u01a5\7\62\2\2\u01a5\u01a6\3\2\2\2\u01a6\u01a7\7\b"+ + "\2\2\u01a7\u01a8\7w\2\2\u01a8\u01c3\7\t\2\2\u01a9\u01aa\7d\2\2\u01aa\u01ab"+ + "\7\63\2\2\u01ab\u01ac\3\2\2\2\u01ac\u01ad\7\b\2\2\u01ad\u01ae\7w\2\2\u01ae"+ + "\u01c3\7\t\2\2\u01af\u01b0\7d\2\2\u01b0\u01b1\7C\2\2\u01b1\u01b2\3\2\2"+ + "\2\u01b2\u01b3\7\b\2\2\u01b3\u01b4\7D\2\2\u01b4\u01c3\7\t\2\2\u01b5\u01b6"+ + "\7d\2\2\u01b6\u01b7\7E\2\2\u01b7\u01b8\3\2\2\2\u01b8\u01b9\7\b\2\2\u01b9"+ + "\u01be\7w\2\2\u01ba\u01bb\7\f\2\2\u01bb\u01bd\7w\2\2\u01bc\u01ba\3\2\2"+ + "\2\u01bd\u01c0\3\2\2\2\u01be\u01bc\3\2\2\2\u01be\u01bf\3\2\2\2\u01bf\u01c1"+ + "\3\2\2\2\u01c0\u01be\3\2\2\2\u01c1\u01c3\7\t\2\2\u01c2\u016c\3\2\2\2\u01c2"+ + "\u0172\3\2\2\2\u01c2\u0178\3\2\2\2\u01c2\u017e\3\2\2\2\u01c2\u0184\3\2"+ + "\2\2\u01c2\u018a\3\2\2\2\u01c2\u0197\3\2\2\2\u01c2\u019d\3\2\2\2\u01c2"+ + "\u01a3\3\2\2\2\u01c2\u01a9\3\2\2\2\u01c2\u01af\3\2\2\2\u01c2\u01b5\3\2"+ + "\2\2\u01c3\67\3\2\2\2\u01c4\u01f0\7\64\2\2\u01c5\u01c6\7\67\2\2\u01c6"+ + "\u01c7\7\b\2\2\u01c7\u01c8\7n\2\2\u01c8\u01f0\7\t\2\2\u01c9\u01cd\7<\2"+ + "\2\u01ca\u01cb\7\b\2\2\u01cb\u01cc\7w\2\2\u01cc\u01ce\7\t\2\2\u01cd\u01ca"+ + "\3\2\2\2\u01cd\u01ce\3\2\2\2\u01ce\u01f0\3\2\2\2\u01cf\u01f0\7>\2\2\u01d0"+ + "\u01f0\7?\2\2\u01d1\u01d2\7=\2\2\u01d2\u01d3\7\b\2\2\u01d3\u01d4\7n\2"+ + "\2\u01d4\u01f0\7\t\2\2\u01d5\u01f0\79\2\2\u01d6\u01f0\7:\2\2\u01d7\u01f0"+ + "\7@\2\2\u01d8\u01f0\7A\2\2\u01d9\u01f0\7\65\2\2\u01da\u01f0\7\66\2\2\u01db"+ + "\u01f0\78\2\2\u01dc\u01f0\7B\2\2\u01dd\u01e1\7;\2\2\u01de\u01df\7\b\2"+ + "\2\u01df\u01e0\7w\2\2\u01e0\u01e2\7\t\2\2\u01e1\u01de\3\2\2\2\u01e1\u01e2"+ + "\3\2\2\2\u01e2\u01f0\3\2\2\2\u01e3\u01e4\7*\2\2\u01e4\u01e5\7\b\2\2\u01e5"+ + "\u01ea\7n\2\2\u01e6\u01e7\7\f\2\2\u01e7\u01e9\7n\2\2\u01e8\u01e6\3\2\2"+ + "\2\u01e9\u01ec\3\2\2\2\u01ea\u01e8\3\2\2\2\u01ea\u01eb\3\2\2\2\u01eb\u01ed"+ + "\3\2\2\2\u01ec\u01ea\3\2\2\2\u01ed\u01f0\7\t\2\2\u01ee\u01f0\7D\2\2\u01ef"+ + "\u01c4\3\2\2\2\u01ef\u01c5\3\2\2\2\u01ef\u01c9\3\2\2\2\u01ef\u01cf\3\2"+ + "\2\2\u01ef\u01d0\3\2\2\2\u01ef\u01d1\3\2\2\2\u01ef\u01d5\3\2\2\2\u01ef"+ + "\u01d6\3\2\2\2\u01ef\u01d7\3\2\2\2\u01ef\u01d8\3\2\2\2\u01ef\u01d9\3\2"+ + "\2\2\u01ef\u01da\3\2\2\2\u01ef\u01db\3\2\2\2\u01ef\u01dc\3\2\2\2\u01ef"+ + "\u01dd\3\2\2\2\u01ef\u01e3\3\2\2\2\u01ef\u01ee\3\2\2\2\u01f09\3\2\2\2"+ + "\u01f1\u01f3\5<\37\2\u01f2\u01f1\3\2\2\2\u01f3\u01f4\3\2\2\2\u01f4\u01f2"+ + "\3\2\2\2\u01f4\u01f5\3\2\2\2\u01f5;\3\2\2\2\u01f6\u01f7\5\16\b\2\u01f7"+ + "\u01f8\7\n\2\2\u01f8\u024b\3\2\2\2\u01f9\u01fb\7\4\2\2\u01fa\u01fc\5:"+ + "\36\2\u01fb\u01fa\3\2\2\2\u01fb\u01fc\3\2\2\2\u01fc\u01fd\3\2\2\2\u01fd"+ + "\u024b\7\5\2\2\u01fe\u01ff\5F$\2\u01ff\u0200\7\n\2\2\u0200\u024b\3\2\2"+ + "\2\u0201\u0202\7F\2\2\u0202\u0203\7\b\2\2\u0203\u0204\5F$\2\u0204\u0205"+ + "\7\t\2\2\u0205\u0208\5<\37\2\u0206\u0207\7G\2\2\u0207\u0209\5<\37\2\u0208"+ + "\u0206\3\2\2\2\u0208\u0209\3\2\2\2\u0209\u024b\3\2\2\2\u020a\u020c\58"+ + "\35\2\u020b\u020a\3\2\2\2\u020c\u020f\3\2\2\2\u020d\u020b\3\2\2\2\u020d"+ + "\u020e\3\2\2\2\u020e\u0210\3\2\2\2\u020f\u020d\3\2\2\2\u0210\u0211\7H"+ + "\2\2\u0211\u0212\7\b\2\2\u0212\u0213\5F$\2\u0213\u0214\7\t\2\2\u0214\u0215"+ + "\5<\37\2\u0215\u024b\3\2\2\2\u0216\u0218\58\35\2\u0217\u0216\3\2\2\2\u0218"+ + "\u021b\3\2\2\2\u0219\u0217\3\2\2\2\u0219\u021a\3\2\2\2\u021a\u021c\3\2"+ + "\2\2\u021b\u0219\3\2\2\2\u021c\u021d\7I\2\2\u021d\u021e\5<\37\2\u021e"+ + "\u021f\7H\2\2\u021f\u0220\7\b\2\2\u0220\u0221\5F$\2\u0221\u0222\7\t\2"+ + "\2\u0222\u0223\7\n\2\2\u0223\u024b\3\2\2\2\u0224\u0226\58\35\2\u0225\u0224"+ + "\3\2\2\2\u0226\u0229\3\2\2\2\u0227\u0225\3\2\2\2\u0227\u0228\3\2\2\2\u0228"+ + "\u022a\3\2\2\2\u0229\u0227\3\2\2\2\u022a\u022b\7J\2\2\u022b\u022c\7\b"+ + "\2\2\u022c\u022d\5B\"\2\u022d\u022e\7\t\2\2\u022e\u022f\5<\37\2\u022f"+ + "\u024b\3\2\2\2\u0230\u0231\7K\2\2\u0231\u0232\7\b\2\2\u0232\u0233\5F$"+ + "\2\u0233\u0234\7\t\2\2\u0234\u0235\7\4\2\2\u0235\u0236\5> \2\u0236\u0237"+ + "\7\5\2\2\u0237\u024b\3\2\2\2\u0238\u023a\7L\2\2\u0239\u023b\5F$\2\u023a"+ + "\u0239\3\2\2\2\u023a\u023b\3\2\2\2\u023b\u023c\3\2\2\2\u023c\u024b\7\n"+ + "\2\2\u023d\u023e\7M\2\2\u023e\u024b\7\n\2\2\u023f\u0240\7N\2\2\u0240\u024b"+ + "\7\n\2\2\u0241\u0243\7O\2\2\u0242\u0244\5N(\2\u0243\u0242\3\2\2\2\u0243"+ + "\u0244\3\2\2\2\u0244\u0245\3\2\2\2\u0245\u0246\7\4\2\2\u0246\u0247\5R"+ + "*\2\u0247\u0248\7\u0090\2\2\u0248\u024b\3\2\2\2\u0249\u024b\5L\'\2\u024a"+ + "\u01f6\3\2\2\2\u024a\u01f9\3\2\2\2\u024a\u01fe\3\2\2\2\u024a\u0201\3\2"+ + "\2\2\u024a\u020d\3\2\2\2\u024a\u0219\3\2\2\2\u024a\u0227\3\2\2\2\u024a"+ + "\u0230\3\2\2\2\u024a\u0238\3\2\2\2\u024a\u023d\3\2\2\2\u024a\u023f\3\2"+ + "\2\2\u024a\u0241\3\2\2\2\u024a\u0249\3\2\2\2\u024b=\3\2\2\2\u024c\u024e"+ + "\5@!\2\u024d\u024c\3\2\2\2\u024e\u024f\3\2\2\2\u024f\u024d\3\2\2\2\u024f"+ + "\u0250\3\2\2\2\u0250\u0256\3\2\2\2\u0251\u0252\7P\2\2\u0252\u0254\7\13"+ + "\2\2\u0253\u0255\5:\36\2\u0254\u0253\3\2\2\2\u0254\u0255\3\2\2\2\u0255"+ + "\u0257\3\2\2\2\u0256\u0251\3\2\2\2\u0256\u0257\3\2\2\2\u0257?\3\2\2\2"+ + "\u0258\u0259\7Q\2\2\u0259\u025a\5H%\2\u025a\u025c\7\13\2\2\u025b\u025d"+ + "\5:\36\2\u025c\u025b\3\2\2\2\u025c\u025d\3\2\2\2\u025dA\3\2\2\2\u025e"+ + "\u025f\5D#\2\u025f\u0260\7\n\2\2\u0260\u0261\5F$\2\u0261\u0263\7\n\2\2"+ + "\u0262\u0264\5F$\2\u0263\u0262\3\2\2\2\u0263\u0264\3\2\2\2\u0264\u0275"+ + "\3\2\2\2\u0265\u0269\5\26\f\2\u0266\u0268\5\30\r\2\u0267\u0266\3\2\2\2"+ + "\u0268\u026b\3\2\2\2\u0269\u0267\3\2\2\2\u0269\u026a\3\2\2\2\u026a\u026d"+ + "\3\2\2\2\u026b\u0269\3\2\2\2\u026c\u0265\3\2\2\2\u026c\u026d\3\2\2\2\u026d"+ + "\u026e\3\2\2\2\u026e\u026f\7w\2\2\u026f\u0270\7\13\2\2\u0270\u0271\5H"+ + "%\2\u0271\u0272\7\r\2\2\u0272\u0273\5H%\2\u0273\u0275\3\2\2\2\u0274\u025e"+ + "\3\2\2\2\u0274\u026c\3\2\2\2\u0275C\3\2\2\2\u0276\u0278\5\16\b\2\u0277"+ + "\u0276\3\2\2\2\u0277\u0278\3\2\2\2\u0278\u027b\3\2\2\2\u0279\u027b\5F"+ + "$\2\u027a\u0277\3\2\2\2\u027a\u0279\3\2\2\2\u027bE\3\2\2\2\u027c\u027d"+ + "\b$\1\2\u027d\u027e\5H%\2\u027e\u0284\3\2\2\2\u027f\u0280\f\3\2\2\u0280"+ + "\u0281\7\f\2\2\u0281\u0283\5H%\2\u0282\u027f\3\2\2\2\u0283\u0286\3\2\2"+ + "\2\u0284\u0282\3\2\2\2\u0284\u0285\3\2\2\2\u0285G\3\2\2\2\u0286\u0284"+ + "\3\2\2\2\u0287\u0288\b%\1\2\u0288\u0289\7\b\2\2\u0289\u028a\5F$\2\u028a"+ + "\u028b\7\t\2\2\u028b\u02c6\3\2\2\2\u028c\u028d\7T\2\2\u028d\u0290\7\b"+ + "\2\2\u028e\u0291\5H%\2\u028f\u0291\5\34\17\2\u0290\u028e\3\2\2\2\u0290"+ + "\u028f\3\2\2\2\u0291\u0292\3\2\2\2\u0292\u0293\7\t\2\2\u0293\u02c6\3\2"+ + "\2\2\u0294\u0295\7U\2\2\u0295\u0298\7\b\2\2\u0296\u0299\5H%\2\u0297\u0299"+ + "\5\34\17\2\u0298\u0296\3\2\2\2\u0298\u0297\3\2\2\2\u0299\u029a\3\2\2\2"+ + "\u029a\u029b\7\t\2\2\u029b\u02c6\3\2\2\2\u029c\u029e\7V\2\2\u029d\u029f"+ + "\7\b\2\2\u029e\u029d\3\2\2\2\u029e\u029f\3\2\2\2\u029f\u02a0\3\2\2\2\u02a0"+ + "\u02a2\7w\2\2\u02a1\u02a3\7\t\2\2\u02a2\u02a1\3\2\2\2\u02a2\u02a3\3\2"+ + "\2\2\u02a3\u02c6\3\2\2\2\u02a4\u02a5\7\b\2\2\u02a5\u02a6\5\34\17\2\u02a6"+ + "\u02a7\7\t\2\2\u02a7\u02a8\5H%\32\u02a8\u02c6\3\2\2\2\u02a9\u02aa\t\2"+ + "\2\2\u02aa\u02c6\5H%\31\u02ab\u02ac\7\24\2\2\u02ac\u02c6\5H%\27\u02ad"+ + "\u02ae\t\3\2\2\u02ae\u02c6\5H%\26\u02af\u02b0\t\4\2\2\u02b0\u02c6\5H%"+ + "\22\u02b1\u02b2\7\4\2\2\u02b2\u02b7\5H%\2\u02b3\u02b4\7\f\2\2\u02b4\u02b6"+ + "\5H%\2\u02b5\u02b3\3\2\2\2\u02b6\u02b9\3\2\2\2\u02b7\u02b5\3\2\2\2\u02b7"+ + "\u02b8\3\2\2\2\u02b8\u02ba\3\2\2\2\u02b9\u02b7\3\2\2\2\u02ba\u02bb\7\5"+ + "\2\2\u02bb\u02c6\3\2\2\2\u02bc\u02c6\7w\2\2\u02bd\u02c6\7n\2\2\u02be\u02c0"+ + "\7x\2\2\u02bf\u02be\3\2\2\2\u02c0\u02c1\3\2\2\2\u02c1\u02bf\3\2\2\2\u02c1"+ + "\u02c2\3\2\2\2\u02c2\u02c6\3\2\2\2\u02c3\u02c6\7y\2\2\u02c4\u02c6\7`\2"+ + "\2\u02c5\u0287\3\2\2\2\u02c5\u028c\3\2\2\2\u02c5\u0294\3\2\2\2\u02c5\u029c"+ + "\3\2\2\2\u02c5\u02a4\3\2\2\2\u02c5\u02a9\3\2\2\2\u02c5\u02ab\3\2\2\2\u02c5"+ + "\u02ad\3\2\2\2\u02c5\u02af\3\2\2\2\u02c5\u02b1\3\2\2\2\u02c5\u02bc\3\2"+ + "\2\2\u02c5\u02bd\3\2\2\2\u02c5\u02bf\3\2\2\2\u02c5\u02c3\3\2\2\2\u02c5"+ + "\u02c4\3\2\2\2\u02c6\u0303\3\2\2\2\u02c7\u02c8\f\25\2\2\u02c8\u02c9\t"+ + "\5\2\2\u02c9\u0302\5H%\26\u02ca\u02cb\f\24\2\2\u02cb\u02cc\t\6\2\2\u02cc"+ + "\u0302\5H%\25\u02cd\u02ce\f\23\2\2\u02ce\u02cf\t\7\2\2\u02cf\u0302\5H"+ + "%\24\u02d0\u02d1\f\21\2\2\u02d1\u02d2\t\b\2\2\u02d2\u0302\5H%\22\u02d3"+ + "\u02d4\f\20\2\2\u02d4\u02d5\7\31\2\2\u02d5\u0302\5H%\21\u02d6\u02d7\f"+ + "\17\2\2\u02d7\u02d8\7\33\2\2\u02d8\u0302\5H%\20\u02d9\u02da\f\16\2\2\u02da"+ + "\u02db\7\34\2\2\u02db\u0302\5H%\17\u02dc\u02dd\f\r\2\2\u02dd\u02de\7%"+ + "\2\2\u02de\u0302\5H%\16\u02df\u02e0\f\f\2\2\u02e0\u02e1\7&\2\2\u02e1\u0302"+ + "\5H%\r\u02e2\u02e3\f\13\2\2\u02e3\u02e4\7\17\2\2\u02e4\u02e5\5H%\2\u02e5"+ + "\u02e6\7\13\2\2\u02e6\u02e7\5H%\f\u02e7\u0302\3\2\2\2\u02e8\u02e9\f\n"+ + "\2\2\u02e9\u02ea\7\'\2\2\u02ea\u0302\5H%\n\u02eb\u02ec\f\t\2\2\u02ec\u02ed"+ + "\7(\2\2\u02ed\u0302\5H%\t\u02ee\u02ef\f!\2\2\u02ef\u02f0\7\20\2\2\u02f0"+ + "\u0302\7w\2\2\u02f1\u02f2\f \2\2\u02f2\u02f3\7\21\2\2\u02f3\u0302\7w\2"+ + "\2\u02f4\u02f5\f\37\2\2\u02f5\u02f7\7\b\2\2\u02f6\u02f8\5J&\2\u02f7\u02f6"+ + "\3\2\2\2\u02f7\u02f8\3\2\2\2\u02f8\u02f9\3\2\2\2\u02f9\u0302\7\t\2\2\u02fa"+ + "\u02fb\f\33\2\2\u02fb\u02fc\7\6\2\2\u02fc\u02fd\5F$\2\u02fd\u02fe\7\7"+ + "\2\2\u02fe\u0302\3\2\2\2\u02ff\u0300\f\30\2\2\u0300\u0302\t\2\2\2\u0301"+ + "\u02c7\3\2\2\2\u0301\u02ca\3\2\2\2\u0301\u02cd\3\2\2\2\u0301\u02d0\3\2"+ + "\2\2\u0301\u02d3\3\2\2\2\u0301\u02d6\3\2\2\2\u0301\u02d9\3\2\2\2\u0301"+ + "\u02dc\3\2\2\2\u0301\u02df\3\2\2\2\u0301\u02e2\3\2\2\2\u0301\u02e8\3\2"+ + "\2\2\u0301\u02eb\3\2\2\2\u0301\u02ee\3\2\2\2\u0301\u02f1\3\2\2\2\u0301"+ + "\u02f4\3\2\2\2\u0301\u02fa\3\2\2\2\u0301\u02ff\3\2\2\2\u0302\u0305\3\2"+ + "\2\2\u0303\u0301\3\2\2\2\u0303\u0304\3\2\2\2\u0304I\3\2\2\2\u0305\u0303"+ + "\3\2\2\2\u0306\u030b\5H%\2\u0307\u0308\7\f\2\2\u0308\u030a\5H%\2\u0309"+ + "\u0307\3\2\2\2\u030a\u030d\3\2\2\2\u030b\u0309\3\2\2\2\u030b\u030c\3\2"+ + "\2\2\u030cK\3\2\2\2\u030d\u030b\3\2\2\2\u030e\u0310\7W\2\2\u030f\u0311"+ + "\5N(\2\u0310\u030f\3\2\2\2\u0310\u0311\3\2\2\2\u0311\u0312\3\2\2\2\u0312"+ + "\u0313\7a\2\2\u0313M\3\2\2\2\u0314\u0315\7\b\2\2\u0315\u031a\5P)\2\u0316"+ + "\u0317\7\f\2\2\u0317\u0319\5P)\2\u0318\u0316\3\2\2\2\u0319\u031c\3\2\2"+ + "\2\u031a\u0318\3\2\2\2\u031a\u031b\3\2\2\2\u031b\u031d\3\2\2\2\u031c\u031a"+ + "\3\2\2\2\u031d\u031e\7\t\2\2\u031eO\3\2\2\2\u031f\u0320\7X\2\2\u0320\u032f"+ + "\7x\2\2\u0321\u0322\7Y\2\2\u0322\u032f\7w\2\2\u0323\u0324\7Z\2\2\u0324"+ + "\u032f\7x\2\2\u0325\u0326\7[\2\2\u0326\u032f\5H%\2\u0327\u0328\7\\\2\2"+ + "\u0328\u032f\5H%\2\u0329\u032c\7+\2\2\u032a\u032d\78\2\2\u032b\u032d\5"+ + "H%\2\u032c\u032a\3\2\2\2\u032c\u032b\3\2\2\2\u032d\u032f\3\2\2\2\u032e"+ + "\u031f\3\2\2\2\u032e\u0321\3\2\2\2\u032e\u0323\3\2\2\2\u032e\u0325\3\2"+ + "\2\2\u032e\u0327\3\2\2\2\u032e\u0329\3\2\2\2\u032fQ\3\2\2\2\u0330\u0332"+ + "\5T+\2\u0331\u0330\3\2\2\2\u0332\u0335\3\2\2\2\u0333\u0331\3\2\2\2\u0333"+ + "\u0334\3\2\2\2\u0334S\3\2\2\2\u0335\u0333\3\2\2\2\u0336\u033a\5V,\2\u0337"+ + "\u033a\5X-\2\u0338\u033a\5Z.\2\u0339\u0336\3\2\2\2\u0339\u0337\3\2\2\2"+ + "\u0339\u0338\3\2\2\2\u033aU\3\2\2\2\u033b\u033c\7\u009d\2\2\u033c\u0340"+ + "\7\u0080\2\2\u033d\u033e\7\u009c\2\2\u033e\u0340\7\u0080\2\2\u033f\u033b"+ + "\3\2\2\2\u033f\u033d\3\2\2\2\u0340W\3\2\2\2\u0341\u0343\7~\2\2\u0342\u0344"+ + "\5\\/\2\u0343\u0342\3\2\2\2\u0343\u0344\3\2\2\2\u0344Y\3\2\2\2\u0345\u0346"+ + "\7}\2\2\u0346\u034b\5^\60\2\u0347\u0348\7\u0081\2\2\u0348\u034a\5^\60"+ + "\2\u0349\u0347\3\2\2\2\u034a\u034d\3\2\2\2\u034b\u0349\3\2\2\2\u034b\u034c"+ + "\3\2\2\2\u034c[\3\2\2\2\u034d\u034b\3\2\2\2\u034e\u0366\5^\60\2\u034f"+ + "\u0350\7\177\2\2\u0350\u0366\5^\60\2\u0351\u0352\5^\60\2\u0352\u0353\7"+ + "\u0081\2\2\u0353\u0354\7\u009d\2\2\u0354\u0366\3\2\2\2\u0355\u0356\7\u0082"+ + "\2\2\u0356\u0357\5^\60\2\u0357\u0358\7\u0083\2\2\u0358\u0359\7\u0081\2"+ + "\2\u0359\u035a\7\u009d\2\2\u035a\u0366\3\2\2\2\u035b\u035c\7\u0082\2\2"+ + "\u035c\u035d\5^\60\2\u035d\u035e\7\u0081\2\2\u035e\u035f\7\u009d\2\2\u035f"+ + "\u0360\7\u0083\2\2\u0360\u0366\3\2\2\2\u0361\u0362\7\u0082\2\2\u0362\u0363"+ + "\5^\60\2\u0363\u0364\7\u0083\2\2\u0364\u0366\3\2\2\2\u0365\u034e\3\2\2"+ + "\2\u0365\u034f\3\2\2\2\u0365\u0351\3\2\2\2\u0365\u0355\3\2\2\2\u0365\u035b"+ + "\3\2\2\2\u0365\u0361\3\2\2\2\u0366]\3\2\2\2\u0367\u0368\b\60\1\2\u0368"+ + "\u0369\7\u0084\2\2\u0369\u036a\5^\60\2\u036a\u036b\7\u0085\2\2\u036b\u0376"+ + "\3\2\2\2\u036c\u036d\t\t\2\2\u036d\u0376\5^\60\n\u036e\u0376\7\u009d\2"+ + "\2\u036f\u0376\7\u009b\2\2\u0370\u0371\7\u008f\2\2\u0371\u0372\7\u009d"+ + "\2\2\u0372\u0376\7\u0090\2\2\u0373\u0376\7\u0091\2\2\u0374\u0376\7\u009a"+ + "\2\2\u0375\u0367\3\2\2\2\u0375\u036c\3\2\2\2\u0375\u036e\3\2\2\2\u0375"+ + "\u036f\3\2\2\2\u0375\u0370\3\2\2\2\u0375\u0373\3\2\2\2\u0375\u0374\3\2"+ + "\2\2\u0376\u0385\3\2\2\2\u0377\u0378\f\f\2\2\u0378\u0379\7\u0086\2\2\u0379"+ + "\u0384\5^\60\r\u037a\u037b\f\13\2\2\u037b\u037c\t\n\2\2\u037c\u0384\5"+ + "^\60\f\u037d\u037e\f\t\2\2\u037e\u037f\t\13\2\2\u037f\u0384\5^\60\n\u0380"+ + "\u0381\f\b\2\2\u0381\u0382\t\f\2\2\u0382\u0384\5^\60\t\u0383\u0377\3\2"+ + "\2\2\u0383\u037a\3\2\2\2\u0383\u037d\3\2\2\2\u0383\u0380\3\2\2\2\u0384"+ + "\u0387\3\2\2\2\u0385\u0383\3\2\2\2\u0385\u0386\3\2\2\2\u0386_\3\2\2\2"+ + "\u0387\u0385\3\2\2\2Zinv\u0087\u0090\u009a\u00a0\u00a8\u00af\u00b8\u00bd"+ + "\u00c3\u00c8\u00cd\u00d4\u00db\u00e0\u00ec\u00ef\u00f1\u00fc\u0103\u0108"+ + "\u010e\u0110\u0118\u011e\u012a\u0138\u013e\u0144\u014a\u014f\u0153\u015c"+ + "\u0163\u016a\u0193\u01be\u01c2\u01cd\u01e1\u01ea\u01ef\u01f4\u01fb\u0208"+ + "\u020d\u0219\u0227\u023a\u0243\u024a\u024f\u0254\u0256\u025c\u0263\u0269"+ + "\u026c\u0274\u0277\u027a\u0284\u0290\u0298\u029e\u02a2\u02b7\u02c1\u02c5"+ + "\u02f7\u0301\u0303\u030b\u0310\u031a\u032c\u032e\u0333\u0339\u033f\u0343"+ + "\u034b\u0365\u0375\u0383\u0385"; public static final ATN _ATN = new ATNDeserializer().deserialize(_serializedATN.toCharArray()); static { diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens index 57fa1a354..506086c67 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParser.tokens @@ -41,125 +41,126 @@ RESERVE=40 PC=41 TARGET=42 LINK=43 -EMULATOR=44 -CPU=45 -CODESEG=46 -DATASEG=47 -ENCODING=48 -CONST=49 -EXTERN=50 -EXPORT=51 -ALIGN=52 -INLINE=53 -VOLATILE=54 -STATIC=55 -INTERRUPT=56 -REGISTER=57 -ADDRESS=58 -ADDRESS_ZEROPAGE=59 -ADDRESS_MAINMEM=60 -FORM_SSA=61 -FORM_MA=62 -INTRINSIC=63 -CALLING=64 -CALLINGCONVENTION=65 -VARMODEL=66 -IF=67 -ELSE=68 -WHILE=69 -DO=70 -FOR=71 -SWITCH=72 -RETURN=73 -BREAK=74 -CONTINUE=75 -ASM=76 -DEFAULT=77 -CASE=78 -STRUCT=79 -ENUM=80 -SIZEOF=81 -TYPEID=82 -DEFINED=83 -KICKASM=84 -RESOURCE=85 -USES=86 -CLOBBERS=87 -BYTES=88 -CYCLES=89 -LOGIC_NOT=90 -SIGNEDNESS=91 -SIMPLETYPE=92 -BOOLEAN=93 -KICKASM_BODY=94 -IMPORT=95 -INCLUDE=96 -PRAGMA=97 -DEFINE=98 -DEFINE_CONTINUE=99 -UNDEF=100 -IFDEF=101 -IFNDEF=102 -IFIF=103 -ELIF=104 -IFELSE=105 -ENDIF=106 -NUMBER=107 -NUMFLOAT=108 -BINFLOAT=109 -DECFLOAT=110 -HEXFLOAT=111 -NUMINT=112 -BININTEGER=113 -DECINTEGER=114 -HEXINTEGER=115 -NAME=116 -STRING=117 -CHAR=118 -WS=119 -COMMENT_LINE=120 -COMMENT_BLOCK=121 -ASM_BYTE=122 -ASM_MNEMONIC=123 -ASM_IMM=124 -ASM_COLON=125 -ASM_COMMA=126 -ASM_PAR_BEGIN=127 -ASM_PAR_END=128 -ASM_BRACKET_BEGIN=129 -ASM_BRACKET_END=130 -ASM_DOT=131 -ASM_SHIFT_LEFT=132 -ASM_SHIFT_RIGHT=133 -ASM_PLUS=134 -ASM_MINUS=135 -ASM_LESS_THAN=136 -ASM_GREATER_THAN=137 -ASM_MULTIPLY=138 -ASM_DIVIDE=139 -ASM_CURLY_BEGIN=140 -ASM_CURLY_END=141 -ASM_NUMBER=142 -ASM_NUMFLOAT=143 -ASM_BINFLOAT=144 -ASM_DECFLOAT=145 -ASM_HEXFLOAT=146 -ASM_NUMINT=147 -ASM_BININTEGER=148 -ASM_DECINTEGER=149 -ASM_HEXINTEGER=150 -ASM_CHAR=151 -ASM_MULTI_REL=152 -ASM_MULTI_NAME=153 -ASM_NAME=154 -ASM_WS=155 -ASM_COMMENT_LINE=156 -ASM_COMMENT_BLOCK=157 -IMPORT_SYSTEMFILE=158 -IMPORT_LOCALFILE=159 -IMPORT_WS=160 -IMPORT_COMMENT_LINE=161 -IMPORT_COMMENT_BLOCK=162 +EXTENSION=44 +EMULATOR=45 +CPU=46 +CODESEG=47 +DATASEG=48 +ENCODING=49 +CONST=50 +EXTERN=51 +EXPORT=52 +ALIGN=53 +INLINE=54 +VOLATILE=55 +STATIC=56 +INTERRUPT=57 +REGISTER=58 +ADDRESS=59 +ADDRESS_ZEROPAGE=60 +ADDRESS_MAINMEM=61 +FORM_SSA=62 +FORM_MA=63 +INTRINSIC=64 +CALLING=65 +CALLINGCONVENTION=66 +VARMODEL=67 +IF=68 +ELSE=69 +WHILE=70 +DO=71 +FOR=72 +SWITCH=73 +RETURN=74 +BREAK=75 +CONTINUE=76 +ASM=77 +DEFAULT=78 +CASE=79 +STRUCT=80 +ENUM=81 +SIZEOF=82 +TYPEID=83 +DEFINED=84 +KICKASM=85 +RESOURCE=86 +USES=87 +CLOBBERS=88 +BYTES=89 +CYCLES=90 +LOGIC_NOT=91 +SIGNEDNESS=92 +SIMPLETYPE=93 +BOOLEAN=94 +KICKASM_BODY=95 +IMPORT=96 +INCLUDE=97 +PRAGMA=98 +DEFINE=99 +DEFINE_CONTINUE=100 +UNDEF=101 +IFDEF=102 +IFNDEF=103 +IFIF=104 +ELIF=105 +IFELSE=106 +ENDIF=107 +NUMBER=108 +NUMFLOAT=109 +BINFLOAT=110 +DECFLOAT=111 +HEXFLOAT=112 +NUMINT=113 +BININTEGER=114 +DECINTEGER=115 +HEXINTEGER=116 +NAME=117 +STRING=118 +CHAR=119 +WS=120 +COMMENT_LINE=121 +COMMENT_BLOCK=122 +ASM_BYTE=123 +ASM_MNEMONIC=124 +ASM_IMM=125 +ASM_COLON=126 +ASM_COMMA=127 +ASM_PAR_BEGIN=128 +ASM_PAR_END=129 +ASM_BRACKET_BEGIN=130 +ASM_BRACKET_END=131 +ASM_DOT=132 +ASM_SHIFT_LEFT=133 +ASM_SHIFT_RIGHT=134 +ASM_PLUS=135 +ASM_MINUS=136 +ASM_LESS_THAN=137 +ASM_GREATER_THAN=138 +ASM_MULTIPLY=139 +ASM_DIVIDE=140 +ASM_CURLY_BEGIN=141 +ASM_CURLY_END=142 +ASM_NUMBER=143 +ASM_NUMFLOAT=144 +ASM_BINFLOAT=145 +ASM_DECFLOAT=146 +ASM_HEXFLOAT=147 +ASM_NUMINT=148 +ASM_BININTEGER=149 +ASM_DECINTEGER=150 +ASM_HEXINTEGER=151 +ASM_CHAR=152 +ASM_MULTI_REL=153 +ASM_MULTI_NAME=154 +ASM_NAME=155 +ASM_WS=156 +ASM_COMMENT_LINE=157 +ASM_COMMENT_BLOCK=158 +IMPORT_SYSTEMFILE=159 +IMPORT_LOCALFILE=160 +IMPORT_WS=161 +IMPORT_COMMENT_LINE=162 +IMPORT_COMMENT_BLOCK=163 ';'=8 '..'=11 '...'=12 @@ -184,62 +185,63 @@ IMPORT_COMMENT_BLOCK=162 'pc'=41 'target'=42 'link'=43 -'emulator'=44 -'cpu'=45 -'code_seg'=46 -'data_seg'=47 -'encoding'=48 -'const'=49 -'extern'=50 -'export'=51 -'align'=52 -'inline'=53 -'volatile'=54 -'static'=55 -'interrupt'=56 -'register'=57 -'__address'=58 -'__zp'=59 -'__mem'=60 -'__ssa'=61 -'__ma'=62 -'__intrinsic'=63 -'calling'=64 -'var_model'=66 -'if'=67 -'else'=68 -'while'=69 -'do'=70 -'for'=71 -'switch'=72 -'return'=73 -'break'=74 -'continue'=75 -'asm'=76 -'default'=77 -'case'=78 -'struct'=79 -'enum'=80 -'sizeof'=81 -'typeid'=82 -'defined'=83 -'kickasm'=84 -'resource'=85 -'uses'=86 -'clobbers'=87 -'bytes'=88 -'cycles'=89 -'!'=90 -'#import'=95 -'#include'=96 -'#pragma'=97 -'#define'=98 -'#undef'=100 -'#ifdef'=101 -'#ifndef'=102 -'#if'=103 -'#elif'=104 -'#else'=105 -'#endif'=106 -'.byte'=122 -'#'=124 +'extension'=44 +'emulator'=45 +'cpu'=46 +'code_seg'=47 +'data_seg'=48 +'encoding'=49 +'const'=50 +'extern'=51 +'export'=52 +'align'=53 +'inline'=54 +'volatile'=55 +'static'=56 +'interrupt'=57 +'register'=58 +'__address'=59 +'__zp'=60 +'__mem'=61 +'__ssa'=62 +'__ma'=63 +'__intrinsic'=64 +'calling'=65 +'var_model'=67 +'if'=68 +'else'=69 +'while'=70 +'do'=71 +'for'=72 +'switch'=73 +'return'=74 +'break'=75 +'continue'=76 +'asm'=77 +'default'=78 +'case'=79 +'struct'=80 +'enum'=81 +'sizeof'=82 +'typeid'=83 +'defined'=84 +'kickasm'=85 +'resource'=86 +'uses'=87 +'clobbers'=88 +'bytes'=89 +'cycles'=90 +'!'=91 +'#import'=96 +'#include'=97 +'#pragma'=98 +'#define'=99 +'#undef'=101 +'#ifdef'=102 +'#ifndef'=103 +'#if'=104 +'#elif'=105 +'#else'=106 +'#endif'=107 +'.byte'=123 +'#'=125 diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java index 21f1dc2e2..c4181830a 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseListener.java @@ -517,30 +517,6 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitParameterDeclList(KickCParser.ParameterDeclListContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void enterGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { } - /** - * {@inheritDoc} - * - *

The default implementation does nothing.

- */ - @Override public void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { } /** * {@inheritDoc} * @@ -577,6 +553,18 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { } /** * {@inheritDoc} * @@ -589,6 +577,30 @@ public class KickCParserBaseListener implements KickCParserListener { *

The default implementation does nothing.

*/ @Override public void exitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void enterGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { } + /** + * {@inheritDoc} + * + *

The default implementation does nothing.

+ */ + @Override public void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java index 610f789d2..621844913 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserBaseVisitor.java @@ -307,20 +307,6 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitParameterDeclList(KickCParser.ParameterDeclListContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { return visitChildren(ctx); } - /** - * {@inheritDoc} - * - *

The default implementation returns the result of calling - * {@link #visitChildren} on {@code ctx}.

- */ - @Override public T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -342,6 +328,13 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * @@ -349,6 +342,20 @@ public class KickCParserBaseVisitor extends AbstractParseTreeVisitor imple * {@link #visitChildren} on {@code ctx}.

*/ @Override public T visitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx) { return visitChildren(ctx); } + /** + * {@inheritDoc} + * + *

The default implementation returns the result of calling + * {@link #visitChildren} on {@code ctx}.

+ */ + @Override public T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx) { return visitChildren(ctx); } /** * {@inheritDoc} * diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java index 21bef417c..e3a7e7a55 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserListener.java @@ -471,30 +471,6 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitParameterDeclList(KickCParser.ParameterDeclListContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectiveReserve} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectiveReserve} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); - /** - * Enter a parse tree produced by the {@code globalDirectivePc} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void enterGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); - /** - * Exit a parse tree produced by the {@code globalDirectivePc} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - */ - void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); /** * Enter a parse tree produced by the {@code globalDirectivePlatform} * labeled alternative in {@link KickCParser#globalDirective}. @@ -531,6 +507,18 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx); + /** + * Enter a parse tree produced by the {@code globalDirectiveExtension} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + */ + void enterGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx); + /** + * Exit a parse tree produced by the {@code globalDirectiveExtension} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + */ + void exitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx); /** * Enter a parse tree produced by the {@code globalDirectiveEmulator} * labeled alternative in {@link KickCParser#globalDirective}. @@ -543,6 +531,30 @@ public interface KickCParserListener extends ParseTreeListener { * @param ctx the parse tree */ void exitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx); + /** + * Enter a parse tree produced by the {@code globalDirectiveReserve} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + */ + void enterGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); + /** + * Exit a parse tree produced by the {@code globalDirectiveReserve} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + */ + void exitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); + /** + * Enter a parse tree produced by the {@code globalDirectivePc} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + */ + void enterGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); + /** + * Exit a parse tree produced by the {@code globalDirectivePc} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + */ + void exitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); /** * Enter a parse tree produced by the {@code globalDirectiveCodeSeg} * labeled alternative in {@link KickCParser#globalDirective}. diff --git a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java index 08bb7b855..15cc19e10 100644 --- a/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java +++ b/src/main/java/dk/camelot64/kickc/parser/KickCParserVisitor.java @@ -285,20 +285,6 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitParameterDeclList(KickCParser.ParameterDeclListContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectiveReserve} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); - /** - * Visit a parse tree produced by the {@code globalDirectivePc} - * labeled alternative in {@link KickCParser#globalDirective}. - * @param ctx the parse tree - * @return the visitor result - */ - T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); /** * Visit a parse tree produced by the {@code globalDirectivePlatform} * labeled alternative in {@link KickCParser#globalDirective}. @@ -320,6 +306,13 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitGlobalDirectiveLinkScript(KickCParser.GlobalDirectiveLinkScriptContext ctx); + /** + * Visit a parse tree produced by the {@code globalDirectiveExtension} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitGlobalDirectiveExtension(KickCParser.GlobalDirectiveExtensionContext ctx); /** * Visit a parse tree produced by the {@code globalDirectiveEmulator} * labeled alternative in {@link KickCParser#globalDirective}. @@ -327,6 +320,20 @@ public interface KickCParserVisitor extends ParseTreeVisitor { * @return the visitor result */ T visitGlobalDirectiveEmulator(KickCParser.GlobalDirectiveEmulatorContext ctx); + /** + * Visit a parse tree produced by the {@code globalDirectiveReserve} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitGlobalDirectiveReserve(KickCParser.GlobalDirectiveReserveContext ctx); + /** + * Visit a parse tree produced by the {@code globalDirectivePc} + * labeled alternative in {@link KickCParser#globalDirective}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitGlobalDirectivePc(KickCParser.GlobalDirectivePcContext ctx); /** * Visit a parse tree produced by the {@code globalDirectiveCodeSeg} * labeled alternative in {@link KickCParser#globalDirective}. diff --git a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java index 82ed5e223..d25134d9f 100644 --- a/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java +++ b/src/main/java/dk/camelot64/kickc/passes/Pass0GenerateStatementSequence.java @@ -137,6 +137,14 @@ public class Pass0GenerateStatementSequence extends KickCParserBaseVisitorWSYNC = 2; // Wait for SYNC (halts CPU until end of scanline) TIA->VSYNC = 2; // Accumulator D1=1, turns on Vertical Sync signal - TIA->WSYNC = 2; // Wait for Sync - halts CPU until end of 1st scanline of VSYNC - TIA->WSYNC = 2; // wait until end of 2nd scanline of VSYNC + TIA->WSYNC = 0; // Wait for Sync - halts CPU until end of 1st scanline of VSYNC + TIA->WSYNC = 0; // wait until end of 2nd scanline of VSYNC TIA->WSYNC = 0; // wait until end of 3rd scanline of VSYNC TIA->VSYNC = 0; // Accumulator D1=0, turns off Vertical Sync signal @@ -40,7 +39,7 @@ void main() { TIA->WSYNC = 0; // Wait for SYNC (halts CPU until end of scanline) TIA->VBLANK = 2; // // D1=1 turns image output off TIA->COLUBK = 0; - for(char i=0;i<07;i++) { + for(char i=0;i<30;i++) { TIA->WSYNC = 0; // Wait for SYNC (halts CPU until end of scanline) } diff --git a/src/test/kc/complex/ataritempest/ataritempest.c b/src/test/kc/complex/ataritempest/ataritempest.c index 9d63a6dd1..e977175eb 100644 --- a/src/test/kc/complex/ataritempest/ataritempest.c +++ b/src/test/kc/complex/ataritempest/ataritempest.c @@ -3,6 +3,7 @@ // The functions are placed in the SYSCALLS table surrounded by JMP and NOP #pragma link("ataritempest.ld") +#pragma extension("bin") char* const BG_COLOR = 0xc01a; diff --git a/src/test/kc/complex/ataritempest/ataritempest.ld b/src/test/kc/complex/ataritempest/ataritempest.ld index d11577514..05e8a459d 100644 --- a/src/test/kc/complex/ataritempest/ataritempest.ld +++ b/src/test/kc/complex/ataritempest/ataritempest.ld @@ -1,4 +1,4 @@ -.file [name="%O.bin", type="bin", segments="AtariTempest"] +.file [name="%O", type="bin", segments="AtariTempest"] .segmentdef AtariTempest [segments="Code, RomData, Vectors"] .segmentdef Code [start=$9000, min=$9000, max=$Fff9] .segmentdef RomData [startAfter="Code", min=$9000, max=$Fff9] diff --git a/src/test/kc/complex/xmega65/xmega65.c b/src/test/kc/complex/xmega65/xmega65.c index 0168ac44c..7547ab991 100644 --- a/src/test/kc/complex/xmega65/xmega65.c +++ b/src/test/kc/complex/xmega65/xmega65.c @@ -5,6 +5,7 @@ #include #pragma link("xmega65.ld") +#pragma extension("bin") char* const RASTER = 0xd012; diff --git a/src/test/kc/complex/xmega65/xmega65.ld b/src/test/kc/complex/xmega65/xmega65.ld index dd0d32214..1fdfafc2d 100644 --- a/src/test/kc/complex/xmega65/xmega65.ld +++ b/src/test/kc/complex/xmega65/xmega65.ld @@ -1,4 +1,4 @@ -.file [name="%O.bin", type="bin", segments="XMega65Bin"] +.file [name="%O", type="bin", segments="XMega65Bin"] .segmentdef XMega65Bin [segments="Syscall, Code, Data, Stack, Zeropage"] .segmentdef Syscall [start=$8000, max=$81ff] .segmentdef Code [start=$8200, min=$8200, max=$bdff] diff --git a/src/test/kc/examples/kernalload/kernalload.c b/src/test/kc/examples/kernalload/kernalload.c index 63e97c577..2a1b758fc 100644 --- a/src/test/kc/examples/kernalload/kernalload.c +++ b/src/test/kc/examples/kernalload/kernalload.c @@ -2,6 +2,7 @@ // The kernalload.ld link file creates a D64 disk image containing the executable and the sprite. // To execute the program succesfully you must mount the D64 disk image and execute the kernalload.PRG program #pragma link("kernalload.ld") +#pragma extension("d64") #include #include diff --git a/src/test/kc/examples/kernalload/kernalload.ld b/src/test/kc/examples/kernalload/kernalload.ld index 49fb96426..e993b141a 100644 --- a/src/test/kc/examples/kernalload/kernalload.ld +++ b/src/test/kc/examples/kernalload/kernalload.ld @@ -1,6 +1,5 @@ // Create a D64 disk containing the program and a sprite file -.file [name="%O.prg", type="prg", segments="Program"] -.disk [filename="%O.d64", name="DISK", id=1] { +.disk [filename="%O", name="DISK", id=1] { [name="%^O", type="prg", segments="Program"], [name="SPRITE", type="prg", segments="Sprite"] } diff --git a/src/test/kc/examples/linking/linking.ld b/src/test/kc/examples/linking/linking.ld index 27d17d83d..0512eca7d 100644 --- a/src/test/kc/examples/linking/linking.ld +++ b/src/test/kc/examples/linking/linking.ld @@ -1,4 +1,4 @@ -.file [name="%O.prg", type="prg", segments="Program"] +.file [name="%O", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data, CodeHigh, DataHigh"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$0810] diff --git a/src/test/kc/examples/zpcode/zpcode.ld b/src/test/kc/examples/zpcode/zpcode.ld index 16d6c6784..3ed4e8987 100644 --- a/src/test/kc/examples/zpcode/zpcode.ld +++ b/src/test/kc/examples/zpcode/zpcode.ld @@ -1,4 +1,4 @@ -.file [name="%O.prg", type="prg", segments="Program"] +.file [name="%O", type="prg", segments="Program"] .segmentdef Program [segments="Basic, Code, Data"] .segmentdef Basic [start=$0801] .segmentdef Code [start=$0810] diff --git a/src/test/ref/atari2600-min.asm b/src/test/ref/atari2600-min.asm index 561c859b1..0c38528f2 100644 --- a/src/test/ref/atari2600-min.asm +++ b/src/test/ref/atari2600-min.asm @@ -1,7 +1,7 @@ // Minimal Atari 2600 VCS Program // Source: https://atariage.com/forums/blogs/entry/11109-step-1-generate-a-stable-display/ // Atari 2600 VCS 4K ROM -.file [name="atari2600-min.prg", type="bin", segments="Code, Vectors"] +.file [name="atari2600-min.a26", type="bin", segments="Code, Vectors"] .segmentdef Code [start=$f800,min=$f800,max=$fff9] .segmentdef Data [start=$80,max=$ff, virtual] .segmentdef Vectors [start=$fffa,max=$ffff] @@ -21,24 +21,20 @@ main: { lda #0 sta col __b2: - // TIA->WSYNC = 2 + // TIA->VSYNC = 2 // Vertical Sync // here we generate the signal that tells the TV to move the beam to the top of // the screen so we can start the next frame of video. // The Sync Signal must be on for 3 scanlines. lda #2 - sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // TIA->VSYNC = 2 - // Wait for SYNC (halts CPU until end of scanline) sta TIA - // TIA->WSYNC = 2 + // TIA->WSYNC = 0 // Accumulator D1=1, turns on Vertical Sync signal + lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // Wait for Sync - halts CPU until end of 1st scanline of VSYNC sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // TIA->WSYNC = 0 // wait until end of 2nd scanline of VSYNC - lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // TIA->VSYNC = 0 // wait until end of 3rd scanline of VSYNC @@ -80,15 +76,15 @@ main: { sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK tax __b9: - // for(char i=0;i<07;i++) - cpx #7 + // for(char i=0;i<30;i++) + cpx #$1e bcc __b10 jmp __b2 __b10: // TIA->WSYNC = 0 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // for(char i=0;i<07;i++) + // for(char i=0;i<30;i++) inx jmp __b9 __b7: diff --git a/src/test/ref/atari2600-min.cfg b/src/test/ref/atari2600-min.cfg index 67bb0ce4d..6f201e239 100644 --- a/src/test/ref/atari2600-min.cfg +++ b/src/test/ref/atari2600-min.cfg @@ -16,47 +16,46 @@ main::@1: scope:[main] from main main::@9 [5] (byte) col#12 ← phi( main/(byte) 0 main::@9/(byte) col#1 ) to:main::@2 main::@2: scope:[main] from main::@1 - [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 - [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 - [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 - [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 - [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 + [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 + [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 to:main::@3 main::@3: scope:[main] from main::@2 main::@4 - [12] (byte) main::i#2 ← phi( main::@2/(byte) 0 main::@4/(byte) main::i#1 ) - [13] if((byte) main::i#2<(byte) $25) goto main::@4 + [11] (byte) main::i#2 ← phi( main::@2/(byte) 0 main::@4/(byte) main::i#1 ) + [12] if((byte) main::i#2<(byte) $25) goto main::@4 to:main::@5 main::@5: scope:[main] from main::@3 - [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 - [15] (byte) main::c#0 ← (byte) col#12 - [16] (byte) col#1 ← ++ (byte) col#12 + [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 + [14] (byte) main::c#0 ← (byte) col#12 + [15] (byte) col#1 ← ++ (byte) col#12 to:main::@6 main::@6: scope:[main] from main::@5 main::@7 - [17] (byte) main::c#2 ← phi( main::@5/(byte) main::c#0 main::@7/(byte) main::c#1 ) - [17] (byte) main::i1#2 ← phi( main::@5/(byte) 0 main::@7/(byte) main::i1#1 ) - [18] if((byte) main::i1#2<(byte) $c0) goto main::@7 + [16] (byte) main::c#2 ← phi( main::@5/(byte) main::c#0 main::@7/(byte) main::c#1 ) + [16] (byte) main::i1#2 ← phi( main::@5/(byte) 0 main::@7/(byte) main::i1#1 ) + [17] if((byte) main::i1#2<(byte) $c0) goto main::@7 to:main::@8 main::@8: scope:[main] from main::@6 - [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 - [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 + [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 + [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 to:main::@9 main::@9: scope:[main] from main::@10 main::@8 - [22] (byte) main::i2#2 ← phi( main::@10/(byte) main::i2#1 main::@8/(byte) 0 ) - [23] if((byte) main::i2#2<(byte) 7) goto main::@10 + [21] (byte) main::i2#2 ← phi( main::@10/(byte) main::i2#1 main::@8/(byte) 0 ) + [22] if((byte) main::i2#2<(byte) $1e) goto main::@10 to:main::@1 main::@10: scope:[main] from main::@9 - [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [25] (byte) main::i2#1 ← ++ (byte) main::i2#2 + [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [24] (byte) main::i2#1 ← ++ (byte) main::i2#2 to:main::@9 main::@7: scope:[main] from main::@6 - [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [27] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 - [28] (byte) main::c#1 ← ++ (byte) main::c#2 - [29] (byte) main::i1#1 ← ++ (byte) main::i1#2 + [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 + [27] (byte) main::c#1 ← ++ (byte) main::c#2 + [28] (byte) main::i1#1 ← ++ (byte) main::i1#2 to:main::@6 main::@4: scope:[main] from main::@3 - [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [31] (byte) main::i#1 ← ++ (byte) main::i#2 + [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [30] (byte) main::i#1 ← ++ (byte) main::i#2 to:main::@3 diff --git a/src/test/ref/atari2600-min.log b/src/test/ref/atari2600-min.log index e4953645a..f482f8f42 100644 --- a/src/test/ref/atari2600-min.log +++ b/src/test/ref/atari2600-min.log @@ -18,10 +18,9 @@ main::@1: scope:[main] from main main::@9 to:main::@return main::@2: scope:[main] from main::@1 (byte) col#12 ← phi( main::@1/(byte) col#8 ) - *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 2 *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (number) 2 - *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 2 - *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 2 + *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 + *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (number) 0 (byte) main::i#0 ← (byte) 0 @@ -71,7 +70,7 @@ main::@8: scope:[main] from main::@6 main::@9: scope:[main] from main::@10 main::@8 (byte) col#11 ← phi( main::@10/(byte) col#14 main::@8/(byte) col#15 ) (byte) main::i2#2 ← phi( main::@10/(byte) main::i2#1 main::@8/(byte) main::i2#0 ) - (bool~) main::$2 ← (byte) main::i2#2 < (number) 7 + (bool~) main::$2 ← (byte) main::i2#2 < (number) $1e if((bool~) main::$2) goto main::@10 to:main::@1 main::@10: scope:[main] from main::@9 @@ -230,10 +229,9 @@ SYMBOL TABLE SSA (byte) main::i2#2 (byte) main::i2#3 -Adding number conversion cast (unumber) 2 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 2 Adding number conversion cast (unumber) 2 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (number) 2 -Adding number conversion cast (unumber) 2 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 2 -Adding number conversion cast (unumber) 2 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 2 +Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 +Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (number) 0 Adding number conversion cast (unumber) $25 in (bool~) main::$0 ← (byte) main::i#2 < (number) $25 @@ -244,13 +242,12 @@ Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATA Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 Adding number conversion cast (unumber) 2 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (number) 2 Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (number) 0 -Adding number conversion cast (unumber) 7 in (bool~) main::$2 ← (byte) main::i2#2 < (number) 7 +Adding number conversion cast (unumber) $1e in (bool~) main::$2 ← (byte) main::i2#2 < (number) $1e Adding number conversion cast (unumber) 0 in *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (number) 0 Successful SSA optimization PassNAddNumberTypeConversions -Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 2 Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (unumber)(number) 2 -Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 2 -Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 2 +Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 0 +Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 0 Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 0 Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (unumber)(number) 0 Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (unumber)(number) 0 @@ -263,9 +260,8 @@ Inlining cast *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) Successful SSA optimization Pass2InlineCast Simplifying constant pointer cast (struct ATARI_TIA_WRITE*) 0 Simplifying constant integer cast 2 -Simplifying constant integer cast 2 -Simplifying constant integer cast 2 -Simplifying constant integer cast 2 +Simplifying constant integer cast 0 +Simplifying constant integer cast 0 Simplifying constant integer cast 0 Simplifying constant integer cast 0 Simplifying constant integer cast $25 @@ -276,13 +272,12 @@ Simplifying constant integer cast 0 Simplifying constant integer cast 0 Simplifying constant integer cast 2 Simplifying constant integer cast 0 -Simplifying constant integer cast 7 +Simplifying constant integer cast $1e Simplifying constant integer cast 0 Successful SSA optimization PassNCastSimplification Finalized unsigned number type (byte) 2 -Finalized unsigned number type (byte) 2 -Finalized unsigned number type (byte) 2 -Finalized unsigned number type (byte) 2 +Finalized unsigned number type (byte) 0 +Finalized unsigned number type (byte) 0 Finalized unsigned number type (byte) 0 Finalized unsigned number type (byte) 0 Finalized unsigned number type (byte) $25 @@ -293,7 +288,7 @@ Finalized unsigned number type (byte) 0 Finalized unsigned number type (byte) 0 Finalized unsigned number type (byte) 2 Finalized unsigned number type (byte) 0 -Finalized unsigned number type (byte) 7 +Finalized unsigned number type (byte) $1e Finalized unsigned number type (byte) 0 Successful SSA optimization PassNFinalizeNumberTypeConversions Alias col#12 = col#8 col#5 col#2 @@ -314,9 +309,9 @@ Identical Phi Values (byte) col#11 (byte) col#15 Identical Phi Values (byte) col#3 (byte) col#12 Successful SSA optimization Pass2IdenticalPhiElimination Simple Condition (bool~) main::$3 [4] if((number) 0!=(number) 1) goto main::@2 -Simple Condition (bool~) main::$0 [14] if((byte) main::i#2<(byte) $25) goto main::@4 -Simple Condition (bool~) main::$1 [23] if((byte) main::i1#2<(byte) $c0) goto main::@7 -Simple Condition (bool~) main::$2 [34] if((byte) main::i2#2<(byte) 7) goto main::@10 +Simple Condition (bool~) main::$0 [13] if((byte) main::i#2<(byte) $25) goto main::@4 +Simple Condition (bool~) main::$1 [22] if((byte) main::i1#2<(byte) $c0) goto main::@7 +Simple Condition (bool~) main::$2 [33] if((byte) main::i2#2<(byte) $1e) goto main::@10 Successful SSA optimization Pass2ConditionalJumpSimplification Constant (const byte) col#0 = 0 Constant (const byte) main::i#0 = 0 @@ -325,8 +320,8 @@ Constant (const byte) main::i2#0 = 0 Successful SSA optimization Pass2ConstantIdentification if() condition always true - replacing block destination [4] if((number) 0!=(number) 1) goto main::@2 Successful SSA optimization Pass2ConstantIfs -Simplifying expression containing zero (byte*)TIA in [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (byte) 2 -Simplifying expression containing zero (byte*)TIA in [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (byte) 0 +Simplifying expression containing zero (byte*)TIA in [5] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (byte) 2 +Simplifying expression containing zero (byte*)TIA in [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC) ← (byte) 0 Successful SSA optimization PassNSimplifyExpressionWithZero Eliminating unused constant (const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VSYNC Successful SSA optimization PassNEliminateUnusedVars @@ -351,12 +346,12 @@ CALL GRAPH Calls in [] to main:2 Created 5 initial phi equivalence classes -Coalesced [18] main::c#4 ← main::c#0 -Coalesced [26] col#18 ← col#1 -Coalesced [29] main::i2#4 ← main::i2#1 -Coalesced [34] main::i1#4 ← main::i1#1 -Coalesced [35] main::c#5 ← main::c#1 -Coalesced [38] main::i#4 ← main::i#1 +Coalesced [17] main::c#4 ← main::c#0 +Coalesced [25] col#18 ← col#1 +Coalesced [28] main::i2#4 ← main::i2#1 +Coalesced [33] main::i1#4 ← main::i1#1 +Coalesced [34] main::c#5 ← main::c#1 +Coalesced [37] main::i#4 ← main::i#1 Coalesced down to 5 phi equivalence classes Culled Empty Block (label) @2 Culled Empty Block (label) main::@11 @@ -384,49 +379,48 @@ main::@1: scope:[main] from main main::@9 [5] (byte) col#12 ← phi( main/(byte) 0 main::@9/(byte) col#1 ) to:main::@2 main::@2: scope:[main] from main::@1 - [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 - [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 - [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 - [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 - [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 + [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 + [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 to:main::@3 main::@3: scope:[main] from main::@2 main::@4 - [12] (byte) main::i#2 ← phi( main::@2/(byte) 0 main::@4/(byte) main::i#1 ) - [13] if((byte) main::i#2<(byte) $25) goto main::@4 + [11] (byte) main::i#2 ← phi( main::@2/(byte) 0 main::@4/(byte) main::i#1 ) + [12] if((byte) main::i#2<(byte) $25) goto main::@4 to:main::@5 main::@5: scope:[main] from main::@3 - [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 - [15] (byte) main::c#0 ← (byte) col#12 - [16] (byte) col#1 ← ++ (byte) col#12 + [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 + [14] (byte) main::c#0 ← (byte) col#12 + [15] (byte) col#1 ← ++ (byte) col#12 to:main::@6 main::@6: scope:[main] from main::@5 main::@7 - [17] (byte) main::c#2 ← phi( main::@5/(byte) main::c#0 main::@7/(byte) main::c#1 ) - [17] (byte) main::i1#2 ← phi( main::@5/(byte) 0 main::@7/(byte) main::i1#1 ) - [18] if((byte) main::i1#2<(byte) $c0) goto main::@7 + [16] (byte) main::c#2 ← phi( main::@5/(byte) main::c#0 main::@7/(byte) main::c#1 ) + [16] (byte) main::i1#2 ← phi( main::@5/(byte) 0 main::@7/(byte) main::i1#1 ) + [17] if((byte) main::i1#2<(byte) $c0) goto main::@7 to:main::@8 main::@8: scope:[main] from main::@6 - [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 - [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 + [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 + [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 to:main::@9 main::@9: scope:[main] from main::@10 main::@8 - [22] (byte) main::i2#2 ← phi( main::@10/(byte) main::i2#1 main::@8/(byte) 0 ) - [23] if((byte) main::i2#2<(byte) 7) goto main::@10 + [21] (byte) main::i2#2 ← phi( main::@10/(byte) main::i2#1 main::@8/(byte) 0 ) + [22] if((byte) main::i2#2<(byte) $1e) goto main::@10 to:main::@1 main::@10: scope:[main] from main::@9 - [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [25] (byte) main::i2#1 ← ++ (byte) main::i2#2 + [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [24] (byte) main::i2#1 ← ++ (byte) main::i2#2 to:main::@9 main::@7: scope:[main] from main::@6 - [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [27] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 - [28] (byte) main::c#1 ← ++ (byte) main::c#2 - [29] (byte) main::i1#1 ← ++ (byte) main::i1#2 + [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 + [27] (byte) main::c#1 ← ++ (byte) main::c#2 + [28] (byte) main::i1#1 ← ++ (byte) main::i1#2 to:main::@6 main::@4: scope:[main] from main::@3 - [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 - [31] (byte) main::i#1 ← ++ (byte) main::i#2 + [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 + [30] (byte) main::i#1 ← ++ (byte) main::i#2 to:main::@3 @@ -501,7 +495,7 @@ VARIABLE REGISTER WEIGHTS (byte) MOS6532_RIOT::TIM8T (byte) col (byte) col#1 78.71428571428571 -(byte) col#12 92.53846153846155 +(byte) col#12 100.25000000000001 (void()) main() (byte) main::c (byte) main::c#0 101.0 @@ -542,7 +536,7 @@ Target platform is atari2600 / MOS6502X // Source: https://atariage.com/forums/blogs/entry/11109-step-1-generate-a-stable-display/ // Upstart // Atari 2600 VCS 4K ROM -.file [name="atari2600-min.prg", type="bin", segments="Code, Vectors"] +.file [name="atari2600-min.a26", type="bin", segments="Code, Vectors"] .segmentdef Code [start=$f800,min=$f800,max=$fff9] .segmentdef Data [start=$80,max=$ff, virtual] .segmentdef Vectors [start=$fffa,max=$ffff] @@ -592,36 +586,32 @@ main: { jmp __b2 // main::@2 __b2: - // [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 -- _deref_pbuc1=vbuc2 // Vertical Sync // here we generate the signal that tells the TV to move the beam to the top of // the screen so we can start the next frame of video. // The Sync Signal must be on for 3 scanlines. lda #2 - sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 -- _deref_pbuc1=vbuc2 - // Wait for SYNC (halts CPU until end of scanline) - lda #2 sta TIA - // [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Accumulator D1=1, turns on Vertical Sync signal - lda #2 + lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Wait for Sync - halts CPU until end of 1st scanline of VSYNC - lda #2 + lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // wait until end of 2nd scanline of VSYNC lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 -- _deref_pbuc1=vbuc2 // wait until end of 3rd scanline of VSYNC lda #0 sta TIA - // [12] phi from main::@2 to main::@3 [phi:main::@2->main::@3] + // [11] phi from main::@2 to main::@3 [phi:main::@2->main::@3] __b3_from___b2: - // [12] phi (byte) main::i#2 = (byte) 0 [phi:main::@2->main::@3#0] -- vbuz1=vbuc1 + // [11] phi (byte) main::i#2 = (byte) 0 [phi:main::@2->main::@3#0] -- vbuz1=vbuc1 lda #0 sta.z i jmp __b3 @@ -629,65 +619,65 @@ main: { // Since we don't have any yet, just delay // main::@3 __b3: - // [13] if((byte) main::i#2<(byte) $25) goto main::@4 -- vbuz1_lt_vbuc1_then_la1 + // [12] if((byte) main::i#2<(byte) $25) goto main::@4 -- vbuz1_lt_vbuc1_then_la1 lda.z i cmp #$25 bcc __b4 jmp __b5 // main::@5 __b5: - // [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Screen - display logic // Update the registers in TIA (the video chip) in order to generate what the player sees. // For now we're just going to output 192 colored scanlines lines so we have something to see. lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK - // [15] (byte) main::c#0 ← (byte) col#12 -- vbuz1=vbum2 + // [14] (byte) main::c#0 ← (byte) col#12 -- vbuz1=vbum2 // D1=1, turns off Vertical Blank signal (image output on) lda col sta.z c - // [16] (byte) col#1 ← ++ (byte) col#12 -- vbum1=_inc_vbum1 + // [15] (byte) col#1 ← ++ (byte) col#12 -- vbum1=_inc_vbum1 inc col - // [17] phi from main::@5 to main::@6 [phi:main::@5->main::@6] + // [16] phi from main::@5 to main::@6 [phi:main::@5->main::@6] __b6_from___b5: - // [17] phi (byte) main::c#2 = (byte) main::c#0 [phi:main::@5->main::@6#0] -- register_copy - // [17] phi (byte) main::i1#2 = (byte) 0 [phi:main::@5->main::@6#1] -- vbuz1=vbuc1 + // [16] phi (byte) main::c#2 = (byte) main::c#0 [phi:main::@5->main::@6#0] -- register_copy + // [16] phi (byte) main::i1#2 = (byte) 0 [phi:main::@5->main::@6#1] -- vbuz1=vbuc1 lda #0 sta.z i1 jmp __b6 // main::@6 __b6: - // [18] if((byte) main::i1#2<(byte) $c0) goto main::@7 -- vbuz1_lt_vbuc1_then_la1 + // [17] if((byte) main::i1#2<(byte) $c0) goto main::@7 -- vbuz1_lt_vbuc1_then_la1 lda.z i1 cmp #$c0 bcc __b7 jmp __b8 // main::@8 __b8: - // [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Overscan - game logic // Since we don't have any yet, just delay lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 -- _deref_pbuc1=vbuc2 // Wait for SYNC (halts CPU until end of scanline) lda #2 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK - // [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 -- _deref_pbuc1=vbuc2 // // D1=1 turns image output off lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK - // [22] phi from main::@8 to main::@9 [phi:main::@8->main::@9] + // [21] phi from main::@8 to main::@9 [phi:main::@8->main::@9] __b9_from___b8: - // [22] phi (byte) main::i2#2 = (byte) 0 [phi:main::@8->main::@9#0] -- vbuz1=vbuc1 + // [21] phi (byte) main::i2#2 = (byte) 0 [phi:main::@8->main::@9#0] -- vbuz1=vbuc1 lda #0 sta.z i2 jmp __b9 // main::@9 __b9: - // [23] if((byte) main::i2#2<(byte) 7) goto main::@10 -- vbuz1_lt_vbuc1_then_la1 + // [22] if((byte) main::i2#2<(byte) $1e) goto main::@10 -- vbuz1_lt_vbuc1_then_la1 lda.z i2 - cmp #7 + cmp #$1e bcc __b10 // [5] phi from main::@9 to main::@1 [phi:main::@9->main::@1] __b1_from___b9: @@ -695,43 +685,43 @@ main: { jmp __b1 // main::@10 __b10: - // [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [25] (byte) main::i2#1 ← ++ (byte) main::i2#2 -- vbuz1=_inc_vbuz1 + // [24] (byte) main::i2#1 ← ++ (byte) main::i2#2 -- vbuz1=_inc_vbuz1 inc.z i2 - // [22] phi from main::@10 to main::@9 [phi:main::@10->main::@9] + // [21] phi from main::@10 to main::@9 [phi:main::@10->main::@9] __b9_from___b10: - // [22] phi (byte) main::i2#2 = (byte) main::i2#1 [phi:main::@10->main::@9#0] -- register_copy + // [21] phi (byte) main::i2#2 = (byte) main::i2#1 [phi:main::@10->main::@9#0] -- register_copy jmp __b9 // main::@7 __b7: - // [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [27] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 -- _deref_pbuc1=vbuz1 + // [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 -- _deref_pbuc1=vbuz1 // Wait for SYNC (halts CPU until end of scanline) lda.z c sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK - // [28] (byte) main::c#1 ← ++ (byte) main::c#2 -- vbuz1=_inc_vbuz1 + // [27] (byte) main::c#1 ← ++ (byte) main::c#2 -- vbuz1=_inc_vbuz1 inc.z c - // [29] (byte) main::i1#1 ← ++ (byte) main::i1#2 -- vbuz1=_inc_vbuz1 + // [28] (byte) main::i1#1 ← ++ (byte) main::i1#2 -- vbuz1=_inc_vbuz1 inc.z i1 - // [17] phi from main::@7 to main::@6 [phi:main::@7->main::@6] + // [16] phi from main::@7 to main::@6 [phi:main::@7->main::@6] __b6_from___b7: - // [17] phi (byte) main::c#2 = (byte) main::c#1 [phi:main::@7->main::@6#0] -- register_copy - // [17] phi (byte) main::i1#2 = (byte) main::i1#1 [phi:main::@7->main::@6#1] -- register_copy + // [16] phi (byte) main::c#2 = (byte) main::c#1 [phi:main::@7->main::@6#0] -- register_copy + // [16] phi (byte) main::i1#2 = (byte) main::i1#1 [phi:main::@7->main::@6#1] -- register_copy jmp __b6 // main::@4 __b4: - // [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [31] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuz1=_inc_vbuz1 + // [30] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuz1=_inc_vbuz1 inc.z i - // [12] phi from main::@4 to main::@3 [phi:main::@4->main::@3] + // [11] phi from main::@4 to main::@3 [phi:main::@4->main::@3] __b3_from___b4: - // [12] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@4->main::@3#0] -- register_copy + // [11] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@4->main::@3#0] -- register_copy jmp __b3 } // File Data @@ -739,37 +729,35 @@ main: { col: .byte 0 REGISTER UPLIFT POTENTIAL REGISTERS -Statement [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for mem[1] [ col#12 col#1 ] -Statement [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a -Statement [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a -Statement [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a -Statement [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i2#2 ] ( main:2 [ col#1 main::i2#2 ] { } ) always clobbers reg byte a +Statement [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a +Statement [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a +Statement [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a +Statement [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i2#2 ] ( main:2 [ col#1 main::i2#2 ] { } ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp[1]:5 [ main::i2#2 main::i2#1 ] -Statement [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i1#2 main::c#2 ] ( main:2 [ col#1 main::i1#2 main::c#2 ] { } ) always clobbers reg byte a +Statement [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i1#2 main::c#2 ] ( main:2 [ col#1 main::i1#2 main::c#2 ] { } ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp[1]:3 [ main::i1#2 main::i1#1 ] Removing always clobbered register reg byte a as potential for zp[1]:4 [ main::c#2 main::c#0 main::c#1 ] -Statement [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 main::i#2 ] ( main:2 [ col#12 main::i#2 ] { } ) always clobbers reg byte a +Statement [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 main::i#2 ] ( main:2 [ col#12 main::i#2 ] { } ) always clobbers reg byte a Removing always clobbered register reg byte a as potential for zp[1]:2 [ main::i#2 main::i#1 ] -Statement [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a -Statement [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a -Statement [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a -Statement [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a -Statement [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i2#2 ] ( main:2 [ col#1 main::i2#2 ] { } ) always clobbers reg byte a -Statement [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i1#2 main::c#2 ] ( main:2 [ col#1 main::i1#2 main::c#2 ] { } ) always clobbers reg byte a -Statement [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 main::i#2 ] ( main:2 [ col#12 main::i#2 ] { } ) always clobbers reg byte a +Statement [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 [ col#12 ] ( main:2 [ col#12 ] { } ) always clobbers reg byte a +Statement [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a +Statement [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a +Statement [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 [ col#1 ] ( main:2 [ col#1 ] { } ) always clobbers reg byte a +Statement [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i2#2 ] ( main:2 [ col#1 main::i2#2 ] { } ) always clobbers reg byte a +Statement [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#1 main::i1#2 main::c#2 ] ( main:2 [ col#1 main::i1#2 main::c#2 ] { } ) always clobbers reg byte a +Statement [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 [ col#12 main::i#2 ] ( main:2 [ col#12 main::i#2 ] { } ) always clobbers reg byte a Potential registers mem[1] [ col#12 col#1 ] : mem[1] , reg byte x , reg byte y , Potential registers zp[1]:2 [ main::i#2 main::i#1 ] : zp[1]:2 , reg byte x , reg byte y , Potential registers zp[1]:3 [ main::i1#2 main::i1#1 ] : zp[1]:3 , reg byte x , reg byte y , @@ -778,18 +766,18 @@ Potential registers zp[1]:5 [ main::i2#2 main::i2#1 ] : zp[1]:5 , reg byte x , r REGISTER UPLIFT SCOPES Uplift Scope [main] 3,003: zp[1]:2 [ main::i#2 main::i#1 ] 3,003: zp[1]:5 [ main::i2#2 main::i2#1 ] 2,602.6: zp[1]:3 [ main::i1#2 main::i1#1 ] 1,878: zp[1]:4 [ main::c#2 main::c#0 main::c#1 ] -Uplift Scope [] 171.25: mem[1] [ col#12 col#1 ] +Uplift Scope [] 178.96: mem[1] [ col#12 col#1 ] Uplift Scope [ATARI_TIA_WRITE] Uplift Scope [ATARI_TIA_READ] Uplift Scope [MOS6532_RIOT] -Uplifting [main] best 8212 combination reg byte x [ main::i#2 main::i#1 ] reg byte x [ main::i2#2 main::i2#1 ] reg byte y [ main::i1#2 main::i1#1 ] reg byte x [ main::c#2 main::c#0 main::c#1 ] -Uplifting [] best 8212 combination mem[1] [ col#12 col#1 ] -Uplifting [ATARI_TIA_WRITE] best 8212 combination -Uplifting [ATARI_TIA_READ] best 8212 combination -Uplifting [MOS6532_RIOT] best 8212 combination +Uplifting [main] best 8152 combination reg byte x [ main::i#2 main::i#1 ] reg byte x [ main::i2#2 main::i2#1 ] reg byte y [ main::i1#2 main::i1#1 ] reg byte x [ main::c#2 main::c#0 main::c#1 ] +Uplifting [] best 8152 combination mem[1] [ col#12 col#1 ] +Uplifting [ATARI_TIA_WRITE] best 8152 combination +Uplifting [ATARI_TIA_READ] best 8152 combination +Uplifting [MOS6532_RIOT] best 8152 combination Attempting to uplift remaining variables inmem[1] [ col#12 col#1 ] -Uplifting [] best 8212 combination mem[1] [ col#12 col#1 ] +Uplifting [] best 8152 combination mem[1] [ col#12 col#1 ] ASSEMBLER BEFORE OPTIMIZATION // File Comments @@ -797,7 +785,7 @@ ASSEMBLER BEFORE OPTIMIZATION // Source: https://atariage.com/forums/blogs/entry/11109-step-1-generate-a-stable-display/ // Upstart // Atari 2600 VCS 4K ROM -.file [name="atari2600-min.prg", type="bin", segments="Code, Vectors"] +.file [name="atari2600-min.a26", type="bin", segments="Code, Vectors"] .segmentdef Code [start=$f800,min=$f800,max=$fff9] .segmentdef Data [start=$80,max=$ff, virtual] .segmentdef Vectors [start=$fffa,max=$ffff] @@ -843,95 +831,91 @@ main: { jmp __b2 // main::@2 __b2: - // [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 -- _deref_pbuc1=vbuc2 // Vertical Sync // here we generate the signal that tells the TV to move the beam to the top of // the screen so we can start the next frame of video. // The Sync Signal must be on for 3 scanlines. lda #2 - sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 -- _deref_pbuc1=vbuc2 - // Wait for SYNC (halts CPU until end of scanline) - lda #2 sta TIA - // [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Accumulator D1=1, turns on Vertical Sync signal - lda #2 + lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Wait for Sync - halts CPU until end of 1st scanline of VSYNC - lda #2 + lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // wait until end of 2nd scanline of VSYNC lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 -- _deref_pbuc1=vbuc2 // wait until end of 3rd scanline of VSYNC lda #0 sta TIA - // [12] phi from main::@2 to main::@3 [phi:main::@2->main::@3] + // [11] phi from main::@2 to main::@3 [phi:main::@2->main::@3] __b3_from___b2: - // [12] phi (byte) main::i#2 = (byte) 0 [phi:main::@2->main::@3#0] -- vbuxx=vbuc1 + // [11] phi (byte) main::i#2 = (byte) 0 [phi:main::@2->main::@3#0] -- vbuxx=vbuc1 ldx #0 jmp __b3 // Vertical Blank - game logic // Since we don't have any yet, just delay // main::@3 __b3: - // [13] if((byte) main::i#2<(byte) $25) goto main::@4 -- vbuxx_lt_vbuc1_then_la1 + // [12] if((byte) main::i#2<(byte) $25) goto main::@4 -- vbuxx_lt_vbuc1_then_la1 cpx #$25 bcc __b4 jmp __b5 // main::@5 __b5: - // [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Screen - display logic // Update the registers in TIA (the video chip) in order to generate what the player sees. // For now we're just going to output 192 colored scanlines lines so we have something to see. lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK - // [15] (byte) main::c#0 ← (byte) col#12 -- vbuxx=vbum1 + // [14] (byte) main::c#0 ← (byte) col#12 -- vbuxx=vbum1 // D1=1, turns off Vertical Blank signal (image output on) ldx col - // [16] (byte) col#1 ← ++ (byte) col#12 -- vbum1=_inc_vbum1 + // [15] (byte) col#1 ← ++ (byte) col#12 -- vbum1=_inc_vbum1 inc col - // [17] phi from main::@5 to main::@6 [phi:main::@5->main::@6] + // [16] phi from main::@5 to main::@6 [phi:main::@5->main::@6] __b6_from___b5: - // [17] phi (byte) main::c#2 = (byte) main::c#0 [phi:main::@5->main::@6#0] -- register_copy - // [17] phi (byte) main::i1#2 = (byte) 0 [phi:main::@5->main::@6#1] -- vbuyy=vbuc1 + // [16] phi (byte) main::c#2 = (byte) main::c#0 [phi:main::@5->main::@6#0] -- register_copy + // [16] phi (byte) main::i1#2 = (byte) 0 [phi:main::@5->main::@6#1] -- vbuyy=vbuc1 ldy #0 jmp __b6 // main::@6 __b6: - // [18] if((byte) main::i1#2<(byte) $c0) goto main::@7 -- vbuyy_lt_vbuc1_then_la1 + // [17] if((byte) main::i1#2<(byte) $c0) goto main::@7 -- vbuyy_lt_vbuc1_then_la1 cpy #$c0 bcc __b7 jmp __b8 // main::@8 __b8: - // [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Overscan - game logic // Since we don't have any yet, just delay lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 -- _deref_pbuc1=vbuc2 // Wait for SYNC (halts CPU until end of scanline) lda #2 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK - // [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 -- _deref_pbuc1=vbuc2 // // D1=1 turns image output off lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK - // [22] phi from main::@8 to main::@9 [phi:main::@8->main::@9] + // [21] phi from main::@8 to main::@9 [phi:main::@8->main::@9] __b9_from___b8: - // [22] phi (byte) main::i2#2 = (byte) 0 [phi:main::@8->main::@9#0] -- vbuxx=vbuc1 + // [21] phi (byte) main::i2#2 = (byte) 0 [phi:main::@8->main::@9#0] -- vbuxx=vbuc1 ldx #0 jmp __b9 // main::@9 __b9: - // [23] if((byte) main::i2#2<(byte) 7) goto main::@10 -- vbuxx_lt_vbuc1_then_la1 - cpx #7 + // [22] if((byte) main::i2#2<(byte) $1e) goto main::@10 -- vbuxx_lt_vbuc1_then_la1 + cpx #$1e bcc __b10 // [5] phi from main::@9 to main::@1 [phi:main::@9->main::@1] __b1_from___b9: @@ -939,42 +923,42 @@ main: { jmp __b1 // main::@10 __b10: - // [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [25] (byte) main::i2#1 ← ++ (byte) main::i2#2 -- vbuxx=_inc_vbuxx + // [24] (byte) main::i2#1 ← ++ (byte) main::i2#2 -- vbuxx=_inc_vbuxx inx - // [22] phi from main::@10 to main::@9 [phi:main::@10->main::@9] + // [21] phi from main::@10 to main::@9 [phi:main::@10->main::@9] __b9_from___b10: - // [22] phi (byte) main::i2#2 = (byte) main::i2#1 [phi:main::@10->main::@9#0] -- register_copy + // [21] phi (byte) main::i2#2 = (byte) main::i2#1 [phi:main::@10->main::@9#0] -- register_copy jmp __b9 // main::@7 __b7: - // [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [27] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 -- _deref_pbuc1=vbuxx + // [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 -- _deref_pbuc1=vbuxx // Wait for SYNC (halts CPU until end of scanline) stx TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK - // [28] (byte) main::c#1 ← ++ (byte) main::c#2 -- vbuxx=_inc_vbuxx + // [27] (byte) main::c#1 ← ++ (byte) main::c#2 -- vbuxx=_inc_vbuxx inx - // [29] (byte) main::i1#1 ← ++ (byte) main::i1#2 -- vbuyy=_inc_vbuyy + // [28] (byte) main::i1#1 ← ++ (byte) main::i1#2 -- vbuyy=_inc_vbuyy iny - // [17] phi from main::@7 to main::@6 [phi:main::@7->main::@6] + // [16] phi from main::@7 to main::@6 [phi:main::@7->main::@6] __b6_from___b7: - // [17] phi (byte) main::c#2 = (byte) main::c#1 [phi:main::@7->main::@6#0] -- register_copy - // [17] phi (byte) main::i1#2 = (byte) main::i1#1 [phi:main::@7->main::@6#1] -- register_copy + // [16] phi (byte) main::c#2 = (byte) main::c#1 [phi:main::@7->main::@6#0] -- register_copy + // [16] phi (byte) main::i1#2 = (byte) main::i1#1 [phi:main::@7->main::@6#1] -- register_copy jmp __b6 // main::@4 __b4: - // [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [31] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx + // [30] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx inx - // [12] phi from main::@4 to main::@3 [phi:main::@4->main::@3] + // [11] phi from main::@4 to main::@3 [phi:main::@4->main::@3] __b3_from___b4: - // [12] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@4->main::@3#0] -- register_copy + // [11] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@4->main::@3#0] -- register_copy jmp __b3 } // File Data @@ -992,9 +976,8 @@ Removing instruction jmp __b6 Removing instruction jmp __b8 Removing instruction jmp __b9 Succesful ASM optimization Pass5NextJumpElimination -Removing instruction lda #2 -Removing instruction lda #2 -Removing instruction lda #2 +Removing instruction lda #0 +Removing instruction lda #0 Removing instruction lda #0 Succesful ASM optimization Pass5UnnecesaryLoadElimination Replacing label __b1 with __b2 @@ -1102,7 +1085,7 @@ FINAL SYMBOL TABLE (const nomodify struct ATARI_TIA_WRITE*) TIA = (struct ATARI_TIA_WRITE*) 0 (byte) col (byte) col#1 col mem[1] 78.71428571428571 -(byte) col#12 col mem[1] 92.53846153846155 +(byte) col#12 col mem[1] 100.25000000000001 (void()) main() (label) main::@1 (label) main::@10 @@ -1136,14 +1119,14 @@ reg byte x [ main::i2#2 main::i2#1 ] FINAL ASSEMBLER -Score: 6560 +Score: 6520 // File Comments // Minimal Atari 2600 VCS Program // Source: https://atariage.com/forums/blogs/entry/11109-step-1-generate-a-stable-display/ // Upstart // Atari 2600 VCS 4K ROM -.file [name="atari2600-min.prg", type="bin", segments="Code, Vectors"] +.file [name="atari2600-min.a26", type="bin", segments="Code, Vectors"] .segmentdef Code [start=$f800,min=$f800,max=$fff9] .segmentdef Data [start=$80,max=$ff, virtual] .segmentdef Vectors [start=$fffa,max=$ffff] @@ -1176,94 +1159,89 @@ main: { // main::@1 // main::@2 __b2: - // TIA->WSYNC = 2 - // [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // TIA->VSYNC = 2 + // [6] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 -- _deref_pbuc1=vbuc2 // Vertical Sync // here we generate the signal that tells the TV to move the beam to the top of // the screen so we can start the next frame of video. // The Sync Signal must be on for 3 scanlines. lda #2 - sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // TIA->VSYNC = 2 - // [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 2 -- _deref_pbuc1=vbuc2 - // Wait for SYNC (halts CPU until end of scanline) sta TIA - // TIA->WSYNC = 2 - // [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 - // Accumulator D1=1, turns on Vertical Sync signal - sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 2 -- _deref_pbuc1=vbuc2 - // Wait for Sync - halts CPU until end of 1st scanline of VSYNC - sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // TIA->WSYNC = 0 - // [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 - // wait until end of 2nd scanline of VSYNC + // [7] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // Accumulator D1=1, turns on Vertical Sync signal lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC + // [8] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // Wait for Sync - halts CPU until end of 1st scanline of VSYNC + sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC + // [9] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // wait until end of 2nd scanline of VSYNC + sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // TIA->VSYNC = 0 - // [11] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [10] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA) ← (byte) 0 -- _deref_pbuc1=vbuc2 // wait until end of 3rd scanline of VSYNC sta TIA - // [12] phi from main::@2 to main::@3 [phi:main::@2->main::@3] - // [12] phi (byte) main::i#2 = (byte) 0 [phi:main::@2->main::@3#0] -- vbuxx=vbuc1 + // [11] phi from main::@2 to main::@3 [phi:main::@2->main::@3] + // [11] phi (byte) main::i#2 = (byte) 0 [phi:main::@2->main::@3#0] -- vbuxx=vbuc1 tax // Vertical Blank - game logic // Since we don't have any yet, just delay // main::@3 __b3: // for(char i=0;i<37;i++) - // [13] if((byte) main::i#2<(byte) $25) goto main::@4 -- vbuxx_lt_vbuc1_then_la1 + // [12] if((byte) main::i#2<(byte) $25) goto main::@4 -- vbuxx_lt_vbuc1_then_la1 cpx #$25 bcc __b4 // main::@5 // TIA->VBLANK = 0 - // [14] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [13] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Screen - display logic // Update the registers in TIA (the video chip) in order to generate what the player sees. // For now we're just going to output 192 colored scanlines lines so we have something to see. lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK // c = col++ - // [15] (byte) main::c#0 ← (byte) col#12 -- vbuxx=vbum1 + // [14] (byte) main::c#0 ← (byte) col#12 -- vbuxx=vbum1 // D1=1, turns off Vertical Blank signal (image output on) ldx col - // [16] (byte) col#1 ← ++ (byte) col#12 -- vbum1=_inc_vbum1 + // [15] (byte) col#1 ← ++ (byte) col#12 -- vbum1=_inc_vbum1 inc col - // [17] phi from main::@5 to main::@6 [phi:main::@5->main::@6] - // [17] phi (byte) main::c#2 = (byte) main::c#0 [phi:main::@5->main::@6#0] -- register_copy - // [17] phi (byte) main::i1#2 = (byte) 0 [phi:main::@5->main::@6#1] -- vbuyy=vbuc1 + // [16] phi from main::@5 to main::@6 [phi:main::@5->main::@6] + // [16] phi (byte) main::c#2 = (byte) main::c#0 [phi:main::@5->main::@6#0] -- register_copy + // [16] phi (byte) main::i1#2 = (byte) 0 [phi:main::@5->main::@6#1] -- vbuyy=vbuc1 tay // main::@6 __b6: // for(char i=0;i<192;i++) - // [18] if((byte) main::i1#2<(byte) $c0) goto main::@7 -- vbuyy_lt_vbuc1_then_la1 + // [17] if((byte) main::i1#2<(byte) $c0) goto main::@7 -- vbuyy_lt_vbuc1_then_la1 cpy #$c0 bcc __b7 // main::@8 // TIA->WSYNC = 0 - // [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [18] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 // Overscan - game logic // Since we don't have any yet, just delay lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // TIA->VBLANK = 2 - // [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 -- _deref_pbuc1=vbuc2 + // [19] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK) ← (byte) 2 -- _deref_pbuc1=vbuc2 // Wait for SYNC (halts CPU until end of scanline) lda #2 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_VBLANK // TIA->COLUBK = 0 - // [21] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [20] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) 0 -- _deref_pbuc1=vbuc2 // // D1=1 turns image output off lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK - // [22] phi from main::@8 to main::@9 [phi:main::@8->main::@9] - // [22] phi (byte) main::i2#2 = (byte) 0 [phi:main::@8->main::@9#0] -- vbuxx=vbuc1 + // [21] phi from main::@8 to main::@9 [phi:main::@8->main::@9] + // [21] phi (byte) main::i2#2 = (byte) 0 [phi:main::@8->main::@9#0] -- vbuxx=vbuc1 tax // main::@9 __b9: - // for(char i=0;i<07;i++) - // [23] if((byte) main::i2#2<(byte) 7) goto main::@10 -- vbuxx_lt_vbuc1_then_la1 - cpx #7 + // for(char i=0;i<30;i++) + // [22] if((byte) main::i2#2<(byte) $1e) goto main::@10 -- vbuxx_lt_vbuc1_then_la1 + cpx #$1e bcc __b10 // [5] phi from main::@9 to main::@1 [phi:main::@9->main::@1] // [5] phi (byte) col#12 = (byte) col#1 [phi:main::@9->main::@1#0] -- register_copy @@ -1271,46 +1249,46 @@ main: { // main::@10 __b10: // TIA->WSYNC = 0 - // [24] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [23] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC - // for(char i=0;i<07;i++) - // [25] (byte) main::i2#1 ← ++ (byte) main::i2#2 -- vbuxx=_inc_vbuxx + // for(char i=0;i<30;i++) + // [24] (byte) main::i2#1 ← ++ (byte) main::i2#2 -- vbuxx=_inc_vbuxx inx - // [22] phi from main::@10 to main::@9 [phi:main::@10->main::@9] - // [22] phi (byte) main::i2#2 = (byte) main::i2#1 [phi:main::@10->main::@9#0] -- register_copy + // [21] phi from main::@10 to main::@9 [phi:main::@10->main::@9] + // [21] phi (byte) main::i2#2 = (byte) main::i2#1 [phi:main::@10->main::@9#0] -- register_copy jmp __b9 // main::@7 __b7: // TIA->WSYNC = 0 - // [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [25] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // TIA->COLUBK = c++ - // [27] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 -- _deref_pbuc1=vbuxx + // [26] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK) ← (byte) main::c#2 -- _deref_pbuc1=vbuxx // Wait for SYNC (halts CPU until end of scanline) stx TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_COLUBK // TIA->COLUBK = c++; - // [28] (byte) main::c#1 ← ++ (byte) main::c#2 -- vbuxx=_inc_vbuxx + // [27] (byte) main::c#1 ← ++ (byte) main::c#2 -- vbuxx=_inc_vbuxx inx // for(char i=0;i<192;i++) - // [29] (byte) main::i1#1 ← ++ (byte) main::i1#2 -- vbuyy=_inc_vbuyy + // [28] (byte) main::i1#1 ← ++ (byte) main::i1#2 -- vbuyy=_inc_vbuyy iny - // [17] phi from main::@7 to main::@6 [phi:main::@7->main::@6] - // [17] phi (byte) main::c#2 = (byte) main::c#1 [phi:main::@7->main::@6#0] -- register_copy - // [17] phi (byte) main::i1#2 = (byte) main::i1#1 [phi:main::@7->main::@6#1] -- register_copy + // [16] phi from main::@7 to main::@6 [phi:main::@7->main::@6] + // [16] phi (byte) main::c#2 = (byte) main::c#1 [phi:main::@7->main::@6#0] -- register_copy + // [16] phi (byte) main::i1#2 = (byte) main::i1#1 [phi:main::@7->main::@6#1] -- register_copy jmp __b6 // main::@4 __b4: // TIA->WSYNC = 0 - // [30] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 + // [29] *((byte*)(const nomodify struct ATARI_TIA_WRITE*) TIA+(const byte) OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC) ← (byte) 0 -- _deref_pbuc1=vbuc2 lda #0 sta TIA+OFFSET_STRUCT_ATARI_TIA_WRITE_WSYNC // for(char i=0;i<37;i++) - // [31] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx + // [30] (byte) main::i#1 ← ++ (byte) main::i#2 -- vbuxx=_inc_vbuxx inx - // [12] phi from main::@4 to main::@3 [phi:main::@4->main::@3] - // [12] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@4->main::@3#0] -- register_copy + // [11] phi from main::@4 to main::@3 [phi:main::@4->main::@3] + // [11] phi (byte) main::i#2 = (byte) main::i#1 [phi:main::@4->main::@3#0] -- register_copy jmp __b3 } // File Data diff --git a/src/test/ref/atari2600-min.sym b/src/test/ref/atari2600-min.sym index c71ce1d9d..4b6afb5f8 100644 --- a/src/test/ref/atari2600-min.sym +++ b/src/test/ref/atari2600-min.sym @@ -76,7 +76,7 @@ (const nomodify struct ATARI_TIA_WRITE*) TIA = (struct ATARI_TIA_WRITE*) 0 (byte) col (byte) col#1 col mem[1] 78.71428571428571 -(byte) col#12 col mem[1] 92.53846153846155 +(byte) col#12 col mem[1] 100.25000000000001 (void()) main() (label) main::@1 (label) main::@10