From 3f33cd6fcdcccd7ea50964ae1f60e16318eea6b5 Mon Sep 17 00:00:00 2001 From: Lean stage0 autoupdater <> Date: Fri, 1 Nov 2024 23:33:27 +0000 Subject: [PATCH] chore: update stage0 --- stage0/src/library/module.cpp | 5 +- stage0/src/stdlib_flags.h | 2 +- stage0/stdlib/Lake/Build/Actions.c | 544 +- stage0/stdlib/Lake/Util/Log.c | 4 +- stage0/stdlib/Lean/Data/Lsp/Capabilities.c | 24 +- stage0/stdlib/Lean/Data/Lsp/CodeActions.c | 10 +- stage0/stdlib/Lean/Data/Lsp/Diagnostics.c | 6 +- stage0/stdlib/Lean/Data/Lsp/InitShutdown.c | 8 +- stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c | 22 +- stage0/stdlib/Lean/Elab/ComputedFields.c | 4 +- stage0/stdlib/Lean/Elab/DeclUtil.c | 172 +- stage0/stdlib/Lean/Elab/Deriving/Basic.c | 3133 ++-- stage0/stdlib/Lean/Elab/Deriving/DecEq.c | 6 +- stage0/stdlib/Lean/Elab/Inductive.c | 4 +- stage0/stdlib/Lean/Elab/Structure.c | 8 +- .../Elab/Tactic/BVDecide/Frontend/Normalize.c | 6 +- stage0/stdlib/Lean/Elab/Tactic/Conv/Congr.c | 12 +- stage0/stdlib/Lean/Elab/Tactic/Ext.c | 8 +- stage0/stdlib/Lean/Elab/Tactic/Induction.c | 1087 +- stage0/stdlib/Lean/Expr.c | 135 + stage0/stdlib/Lean/Message.c | 1220 +- stage0/stdlib/Lean/Meta/AppBuilder.c | 10 +- stage0/stdlib/Lean/Meta/ArgsPacker.c | 36 +- stage0/stdlib/Lean/Meta/Check.c | 4763 +++++-- stage0/stdlib/Lean/Meta/CongrTheorems.c | 18 +- .../Lean/Meta/Constructions/NoConfusion.c | 22 +- stage0/stdlib/Lean/Meta/GeneralizeTelescope.c | 94 +- stage0/stdlib/Lean/Meta/IndPredBelow.c | 24 +- stage0/stdlib/Lean/Meta/Injective.c | 6 +- .../stdlib/Lean/Meta/Match/CaseArraySizes.c | 6 +- stage0/stdlib/Lean/Meta/Match/Match.c | 16 +- stage0/stdlib/Lean/Meta/Match/MatchEqs.c | 10 +- stage0/stdlib/Lean/Meta/SizeOf.c | 6 +- stage0/stdlib/Lean/Meta/SynthInstance.c | 106 +- stage0/stdlib/Lean/Meta/Tactic/AC/Main.c | 6 +- stage0/stdlib/Lean/Meta/Tactic/Cases.c | 10 +- stage0/stdlib/Lean/Meta/Tactic/FunInd.c | 4 +- .../Lean/Meta/Tactic/LinearArith/Nat/Simp.c | 4 +- stage0/stdlib/Lean/Meta/Tactic/Rewrite.c | 10 +- stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c | 4 +- .../Lean/Meta/Tactic/Simp/SimpTheorems.c | 6 +- stage0/stdlib/Lean/Meta/Tactic/Split.c | 8 +- stage0/stdlib/Lean/Meta/Tactic/Subst.c | 8 +- stage0/stdlib/Lean/Parser/Command.c | 970 +- .../Lean/PrettyPrinter/Delaborator/Builtins.c | 231 +- stage0/stdlib/Lean/Server/Completion.c | 4 +- stage0/stdlib/Lean/Server/FileWorker.c | 4 +- stage0/stdlib/Lean/Server/Rpc/Deriving.c | 11827 ++++++++-------- stage0/stdlib/Lean/Server/Watchdog.c | 4 +- stage0/stdlib/Lean/Util/Profiler.c | 18 +- stage0/stdlib/Lean/Widget/Diff.c | 6 +- 51 files changed, 12689 insertions(+), 11972 deletions(-) diff --git a/stage0/src/library/module.cpp b/stage0/src/library/module.cpp index baabee9f4c..f03bd7befb 100644 --- a/stage0/src/library/module.cpp +++ b/stage0/src/library/module.cpp @@ -52,7 +52,8 @@ struct olean_header { // 1 byte: version, incremented on structural changes to header uint8_t version = 2; // 1 byte of flags: - // - whether persisted bignums use GMP or Lean-native encoding + // * bit 0: whether persisted bignums use GMP or Lean-native encoding + // * bit 1-7: reserved uint8_t flags = #ifdef LEAN_USE_GMP 0b1; @@ -60,7 +61,7 @@ struct olean_header { 0b0; #endif // 33 bytes: Lean version string, padded with '\0' to the right - // e.g. "4.12.0-nightly-2024-10-18" + // e.g. "4.12.0-nightly-2024-10-18". May not be null-terminated. char lean_version[33]; // 81b008650766442a0dfa9faa796e4588c9d7d3a1 // 40 bytes: build githash, padded with `\0` to the right diff --git a/stage0/src/stdlib_flags.h b/stage0/src/stdlib_flags.h index 658ab0874e..0699845ba4 100644 --- a/stage0/src/stdlib_flags.h +++ b/stage0/src/stdlib_flags.h @@ -8,7 +8,7 @@ options get_default_options() { // switch to `true` for ABI-breaking changes affecting meta code opts = opts.update({"interpreter", "prefer_native"}, false); // switch to `true` for changing built-in parsers used in quotations - opts = opts.update({"internal", "parseQuotWithCurrentStage"}, true); + opts = opts.update({"internal", "parseQuotWithCurrentStage"}, false); // toggling `parseQuotWithCurrentStage` may also require toggling the following option if macros/syntax // with custom precheck hooks were affected opts = opts.update({"quotPrecheck"}, true); diff --git a/stage0/stdlib/Lake/Build/Actions.c b/stage0/stdlib/Lake/Build/Actions.c index 3670e7e62d..7c06b34b95 100644 --- a/stage0/stdlib/Lake/Build/Actions.c +++ b/stage0/stdlib/Lake/Build/Actions.c @@ -13,26 +13,30 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__16; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(lean_object*, lean_object*); static lean_object* l_Lake_tar___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__27; static lean_object* l_Lake_compileLeanModule___lambda__4___closed__2; lean_object* lean_string_utf8_extract(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29; LEAN_EXPORT lean_object* l_Lake_compileO(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19; +LEAN_EXPORT uint8_t l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___lambda__1(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; static lean_object* l_Lake_tar___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_compileSharedLib___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__26; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__27; lean_object* lean_uint32_to_nat(uint32_t); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__9; lean_object* lean_io_remove_file(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__30; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lake_download___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_compileLeanModule___lambda__5___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7; static lean_object* l_Lake_download___lambda__1___closed__3; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lake_compileSharedLib(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24; LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_toString(lean_object*, uint8_t, lean_object*); static lean_object* l_Lake_compileLeanModule___lambda__4___closed__1; @@ -45,100 +49,95 @@ uint8_t lean_usize_dec_eq(size_t, size_t); LEAN_EXPORT lean_object* l_Lake_untar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_download(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___lambda__1(lean_object*); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5(lean_object*, lean_object*); static lean_object* l_Lake_compileLeanModule___lambda__3___closed__2; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__9; static lean_object* l_Lake_download___lambda__1___closed__5; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33; static lean_object* l_Lake_compileLeanModule___lambda__6___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43; static lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4___closed__2; lean_object* l_Lean_mkErrorStringWithPos(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14; LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_download___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lake_compileLeanModule(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_tar___lambda__1___closed__1; static lean_object* l_Array_foldlMUnsafe_fold___at_Lake_download___spec__1___closed__1; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2(lean_object*, lean_object*); lean_object* l_System_FilePath_pathExists(lean_object*, lean_object*); lean_object* lean_string_utf8_byte_size(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__22; lean_object* lean_string_push(lean_object*, uint32_t); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__25; LEAN_EXPORT lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_compileExe(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_IO_FS_createDirAll(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__15; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__25; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__6; LEAN_EXPORT lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__10; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lake_compileSharedLib___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_download___lambda__1___closed__4; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23; static lean_object* l_Lake_tar___lambda__1___closed__3; static lean_object* l_Lake_compileLeanModule___closed__2; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1; uint8_t l_instDecidableNot___rarg(uint8_t); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2(lean_object*, lean_object*); lean_object* l_String_split___at_Lean_stringToMessageData___spec__1(lean_object*); lean_object* l_Lake_createParentDirs(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__35; static lean_object* l_Lake_tar___closed__4; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__35; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__26; static lean_object* l_Lake_untar___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lake_tar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lake_compileStaticLib___spec__1___boxed(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__32; +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__20; LEAN_EXPORT lean_object* l_Lake_download___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lake_mkCmdLog(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__36; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__17; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__2; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__41; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__3; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__37; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__15; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lake_tar___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lake_LogLevel_ofMessageSeverity(uint8_t); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__21; lean_object* l_IO_Process_output(lean_object*, lean_object*); static lean_object* l_Lake_tar___closed__2; LEAN_EXPORT lean_object* l_Lake_untar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_untar___lambda__1___closed__2; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__42; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__4; LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__17; LEAN_EXPORT lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___lambda__1___boxed(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39; static lean_object* l_Lake_untar___closed__2; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__20; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lake_compileStaticLib___spec__1(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___lambda__1___boxed(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__11; LEAN_EXPORT lean_object* l_Lake_untar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Array_append___rarg(lean_object*, lean_object*); lean_object* l_Lake_getSearchPath(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__21; LEAN_EXPORT lean_object* l_Lake_download___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4___closed__3; LEAN_EXPORT lean_object* l_Lake_tar___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Substring_takeWhileAux___at_Substring_trimLeft___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_untar___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__30; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lake_tar___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__40; LEAN_EXPORT lean_object* l_Lake_compileO___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_compileStaticLib___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__37; LEAN_EXPORT lean_object* l_Lake_download___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14; static lean_object* l_Lake_tar___closed__5; static lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__31; static lean_object* l_Lake_compileO___closed__1; lean_object* l_Std_Internal_Parsec_String_Parser_run___rarg(lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); @@ -146,39 +145,40 @@ lean_object* l_System_SearchPath_toString(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Substring_takeRightWhileAux___at_Substring_trimRight___spec__1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__32; uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19; static lean_object* l_Lake_compileLeanModule___lambda__1___closed__1; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_tar(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_compileLeanModule___lambda__3___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38; LEAN_EXPORT lean_object* l_Lake_compileExe___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_tar___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__31; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lake_download___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__22; lean_object* l_Lean_Json_Parser_any(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23; extern lean_object* l_Lake_sharedLibPathEnvVar; lean_object* l_Lake_proc(lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__10; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__11; lean_object* lean_array_mk(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; LEAN_EXPORT lean_object* l_Lake_logSerialMessage___at_Lake_compileLeanModule___spec__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_foldlM___at_Lake_compileLeanModule___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18; size_t lean_usize_add(size_t, size_t); static lean_object* l_Lake_compileLeanModule___closed__1; lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lake_tar___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__16; LEAN_EXPORT lean_object* l_Lake_compileStaticLib(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_error_to_string(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__36; static lean_object* l_Lake_tar___closed__3; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__6; lean_object* lean_string_append(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__41; static lean_object* l_Lake_compileLeanModule___lambda__7___closed__1; lean_object* lean_array_get_size(lean_object*); static lean_object* l_Lake_compileLeanModule___lambda__4___closed__3; @@ -186,14 +186,14 @@ uint8_t lean_nat_dec_le(lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__40; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__4; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__42; LEAN_EXPORT lean_object* l_Lake_compileLeanModule___lambda__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34; static lean_object* l_Lake_compileLeanModule___lambda__2___closed__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28; lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__2; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34; static lean_object* l_Lake_untar___closed__1; static lean_object* l_Lake_tar___lambda__1___closed__4; static lean_object* l_Lake_logSerialMessage___at_Lake_compileLeanModule___spec__3___closed__1; @@ -248,7 +248,7 @@ goto _start; } } } -LEAN_EXPORT uint8_t l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___lambda__1(lean_object* x_1) { +LEAN_EXPORT uint8_t l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___lambda__1(lean_object* x_1) { _start: { uint8_t x_2; @@ -256,7 +256,7 @@ x_2 = 0; return x_2; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1() { _start: { lean_object* x_1; @@ -264,7 +264,7 @@ x_1 = lean_mk_string_unchecked("fileName", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__2() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__2() { _start: { lean_object* x_1; @@ -272,7 +272,7 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__3() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__3() { _start: { lean_object* x_1; @@ -280,36 +280,36 @@ x_1 = lean_mk_string_unchecked("BaseMessage", 11, 11); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__4() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__2; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__3; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__2; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__3; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___lambda__1___boxed), 1, 0); +x_1 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___lambda__1___boxed), 1, 0); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__6() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__4; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__4; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7() { _start: { lean_object* x_1; @@ -317,48 +317,48 @@ x_1 = lean_mk_string_unchecked(".", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__6; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__6; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__9() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__10() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__10() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__9; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__9; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__11() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__10; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__10; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12() { _start: { lean_object* x_1; @@ -366,17 +366,17 @@ x_1 = lean_mk_string_unchecked(": ", 2, 2); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__11; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__11; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14() { _start: { lean_object* x_1; @@ -384,48 +384,48 @@ x_1 = lean_mk_string_unchecked("pos", 3, 3); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__15() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__16() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__16() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__15; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__15; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__17() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__16; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__16; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__17; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__17; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19() { _start: { lean_object* x_1; @@ -433,48 +433,48 @@ x_1 = lean_mk_string_unchecked("endPos", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__20() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__21() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__21() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__20; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__20; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__22() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__21; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__21; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__22; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__22; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24() { _start: { lean_object* x_1; @@ -482,48 +482,48 @@ x_1 = lean_mk_string_unchecked("keepFullRange", 13, 13); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__25() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__26() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__26() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__25; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__25; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__27() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__27() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__26; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__26; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__27; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__27; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29() { _start: { lean_object* x_1; @@ -531,48 +531,48 @@ x_1 = lean_mk_string_unchecked("severity", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__30() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__31() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__31() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__30; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__30; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__32() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__31; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__31; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__32; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__32; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34() { _start: { lean_object* x_1; @@ -580,48 +580,48 @@ x_1 = lean_mk_string_unchecked("caption", 7, 7); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__35() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__35() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__36() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__36() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__35; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__35; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__37() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__36; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__36; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__37; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__37; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39() { _start: { lean_object* x_1; @@ -629,54 +629,54 @@ x_1 = lean_mk_string_unchecked("data", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__40() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__40() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__41() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__41() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__40; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__40; x_2 = 1; -x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5; +x_3 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__42() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__42() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__41; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__41; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__42; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__42; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12; x_3 = lean_string_append(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1; lean_inc(x_1); -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -686,7 +686,7 @@ if (x_4 == 0) { lean_object* x_5; lean_object* x_6; lean_object* x_7; x_5 = lean_ctor_get(x_3, 0); -x_6 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13; +x_6 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13; x_7 = lean_string_append(x_6, x_5); lean_dec(x_5); lean_ctor_set(x_3, 0, x_7); @@ -698,7 +698,7 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_3, 0); lean_inc(x_8); lean_dec(x_3); -x_9 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13; +x_9 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13; x_10 = lean_string_append(x_9, x_8); lean_dec(x_8); x_11 = lean_alloc_ctor(0, 1, 0); @@ -712,9 +712,9 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_ctor_get(x_3, 0); lean_inc(x_12); lean_dec(x_3); -x_13 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14; +x_13 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14; lean_inc(x_1); -x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2(x_1, x_13); +x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2(x_1, x_13); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -725,7 +725,7 @@ if (x_15 == 0) { lean_object* x_16; lean_object* x_17; lean_object* x_18; x_16 = lean_ctor_get(x_14, 0); -x_17 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18; +x_17 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18; x_18 = lean_string_append(x_17, x_16); lean_dec(x_16); lean_ctor_set(x_14, 0, x_18); @@ -737,7 +737,7 @@ lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; x_19 = lean_ctor_get(x_14, 0); lean_inc(x_19); lean_dec(x_14); -x_20 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18; +x_20 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18; x_21 = lean_string_append(x_20, x_19); lean_dec(x_19); x_22 = lean_alloc_ctor(0, 1, 0); @@ -751,9 +751,9 @@ lean_object* x_23; lean_object* x_24; lean_object* x_25; x_23 = lean_ctor_get(x_14, 0); lean_inc(x_23); lean_dec(x_14); -x_24 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19; +x_24 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19; lean_inc(x_1); -x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3(x_1, x_24); +x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3(x_1, x_24); if (lean_obj_tag(x_25) == 0) { uint8_t x_26; @@ -765,7 +765,7 @@ if (x_26 == 0) { lean_object* x_27; lean_object* x_28; lean_object* x_29; x_27 = lean_ctor_get(x_25, 0); -x_28 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23; +x_28 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23; x_29 = lean_string_append(x_28, x_27); lean_dec(x_27); lean_ctor_set(x_25, 0, x_29); @@ -777,7 +777,7 @@ lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; x_30 = lean_ctor_get(x_25, 0); lean_inc(x_30); lean_dec(x_25); -x_31 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23; +x_31 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23; x_32 = lean_string_append(x_31, x_30); lean_dec(x_30); x_33 = lean_alloc_ctor(0, 1, 0); @@ -791,9 +791,9 @@ lean_object* x_34; lean_object* x_35; lean_object* x_36; x_34 = lean_ctor_get(x_25, 0); lean_inc(x_34); lean_dec(x_25); -x_35 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24; +x_35 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24; lean_inc(x_1); -x_36 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_35); +x_36 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_35); if (lean_obj_tag(x_36) == 0) { uint8_t x_37; @@ -806,7 +806,7 @@ if (x_37 == 0) { lean_object* x_38; lean_object* x_39; lean_object* x_40; x_38 = lean_ctor_get(x_36, 0); -x_39 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28; +x_39 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28; x_40 = lean_string_append(x_39, x_38); lean_dec(x_38); lean_ctor_set(x_36, 0, x_40); @@ -818,7 +818,7 @@ lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; x_41 = lean_ctor_get(x_36, 0); lean_inc(x_41); lean_dec(x_36); -x_42 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28; +x_42 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28; x_43 = lean_string_append(x_42, x_41); lean_dec(x_41); x_44 = lean_alloc_ctor(0, 1, 0); @@ -832,9 +832,9 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; x_45 = lean_ctor_get(x_36, 0); lean_inc(x_45); lean_dec(x_36); -x_46 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29; +x_46 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29; lean_inc(x_1); -x_47 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5(x_1, x_46); +x_47 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5(x_1, x_46); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -848,7 +848,7 @@ if (x_48 == 0) { lean_object* x_49; lean_object* x_50; lean_object* x_51; x_49 = lean_ctor_get(x_47, 0); -x_50 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33; +x_50 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33; x_51 = lean_string_append(x_50, x_49); lean_dec(x_49); lean_ctor_set(x_47, 0, x_51); @@ -860,7 +860,7 @@ lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; x_52 = lean_ctor_get(x_47, 0); lean_inc(x_52); lean_dec(x_47); -x_53 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33; +x_53 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33; x_54 = lean_string_append(x_53, x_52); lean_dec(x_52); x_55 = lean_alloc_ctor(0, 1, 0); @@ -874,9 +874,9 @@ lean_object* x_56; lean_object* x_57; lean_object* x_58; x_56 = lean_ctor_get(x_47, 0); lean_inc(x_56); lean_dec(x_47); -x_57 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34; +x_57 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34; lean_inc(x_1); -x_58 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_57); +x_58 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_57); if (lean_obj_tag(x_58) == 0) { uint8_t x_59; @@ -891,7 +891,7 @@ if (x_59 == 0) { lean_object* x_60; lean_object* x_61; lean_object* x_62; x_60 = lean_ctor_get(x_58, 0); -x_61 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38; +x_61 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38; x_62 = lean_string_append(x_61, x_60); lean_dec(x_60); lean_ctor_set(x_58, 0, x_62); @@ -903,7 +903,7 @@ lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; x_63 = lean_ctor_get(x_58, 0); lean_inc(x_63); lean_dec(x_58); -x_64 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38; +x_64 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38; x_65 = lean_string_append(x_64, x_63); lean_dec(x_63); x_66 = lean_alloc_ctor(0, 1, 0); @@ -917,8 +917,8 @@ lean_object* x_67; lean_object* x_68; lean_object* x_69; x_67 = lean_ctor_get(x_58, 0); lean_inc(x_67); lean_dec(x_58); -x_68 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39; -x_69 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_68); +x_68 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39; +x_69 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_68); if (lean_obj_tag(x_69) == 0) { uint8_t x_70; @@ -933,7 +933,7 @@ if (x_70 == 0) { lean_object* x_71; lean_object* x_72; lean_object* x_73; x_71 = lean_ctor_get(x_69, 0); -x_72 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43; +x_72 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43; x_73 = lean_string_append(x_72, x_71); lean_dec(x_71); lean_ctor_set(x_69, 0, x_73); @@ -945,7 +945,7 @@ lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; x_74 = lean_ctor_get(x_69, 0); lean_inc(x_74); lean_dec(x_69); -x_75 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43; +x_75 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43; x_76 = lean_string_append(x_75, x_74); lean_dec(x_74); x_77 = lean_alloc_ctor(0, 1, 0); @@ -1235,7 +1235,7 @@ lean_object* x_28; lean_object* x_29; x_28 = lean_ctor_get(x_26, 0); lean_inc(x_28); lean_dec(x_26); -x_29 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2(x_28); +x_29 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2(x_28); if (lean_obj_tag(x_29) == 0) { lean_object* x_30; @@ -3103,11 +3103,11 @@ lean_dec(x_1); return x_11; } } -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___lambda__1___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___lambda__1___boxed(lean_object* x_1) { _start: { uint8_t x_2; lean_object* x_3; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___lambda__1(x_1); +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___lambda__1(x_1); lean_dec(x_1); x_3 = lean_box(x_2); return x_3; @@ -4553,7 +4553,7 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_12, 1); x_17 = lean_ctor_get(x_14, 0); x_18 = lean_ctor_get(x_14, 1); -x_19 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7; +x_19 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7; lean_inc(x_2); lean_ctor_set_tag(x_14, 1); lean_ctor_set(x_14, 1, x_2); @@ -4627,7 +4627,7 @@ x_47 = lean_ctor_get(x_14, 1); lean_inc(x_47); lean_inc(x_46); lean_dec(x_14); -x_48 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7; +x_48 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7; lean_inc(x_2); x_49 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_49, 0, x_48); @@ -4713,7 +4713,7 @@ if (lean_is_exclusive(x_75)) { lean_dec_ref(x_75); x_79 = lean_box(0); } -x_80 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7; +x_80 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7; lean_inc(x_2); if (lean_is_scalar(x_79)) { x_81 = lean_alloc_ctor(1, 2, 0); @@ -5032,92 +5032,92 @@ l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__1 = lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__1); l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__2(); lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lake_compileLeanModule___spec__1___closed__2); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__1); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__2 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__2(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__2); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__3 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__3(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__3); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__4 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__4(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__4); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__5); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__6 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__6(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__6); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__7); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__8); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__9 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__9(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__9); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__10 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__10(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__10); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__11 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__11(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__11); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__12); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__13); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__14); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__15 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__15(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__15); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__16 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__16(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__16); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__17 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__17(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__17); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__18); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__19); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__20 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__20(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__20); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__21 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__21(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__21); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__22 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__22(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__22); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__23); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__24); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__25 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__25(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__25); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__26 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__26(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__26); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__27 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__27(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__27); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__28); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__29); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__30 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__30(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__30); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__31 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__31(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__31); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__32 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__32(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__32); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__33); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__34); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__35 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__35(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__35); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__36 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__36(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__36); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__37 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__37(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__37); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__38); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__39); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__40 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__40(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__40); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__41 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__41(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__41); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__42 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__42(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__42); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____at_Lake_compileLeanModule___spec__2___closed__43); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__1); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__2 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__2(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__2); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__3 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__3(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__3); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__4 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__4(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__4); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__5); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__6 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__6(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__6); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__7); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__8); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__9 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__9(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__9); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__10 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__10(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__10); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__11 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__11(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__11); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__12); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__13); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__14); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__15 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__15(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__15); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__16 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__16(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__16); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__17 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__17(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__17); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__18); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__19); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__20 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__20(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__20); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__21 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__21(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__21); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__22 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__22(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__22); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__23); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__24); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__25 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__25(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__25); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__26 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__26(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__26); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__27 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__27(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__27); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__28); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__29); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__30 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__30(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__30); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__31 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__31(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__31); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__32 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__32(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__32); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__33); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__34); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__35 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__35(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__35); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__36 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__36(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__36); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__37 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__37(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__37); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__38); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__39); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__40 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__40(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__40); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__41 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__41(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__41); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__42 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__42(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__42); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____at_Lake_compileLeanModule___spec__2___closed__43); l_Lake_logSerialMessage___at_Lake_compileLeanModule___spec__3___closed__1 = _init_l_Lake_logSerialMessage___at_Lake_compileLeanModule___spec__3___closed__1(); lean_mark_persistent(l_Lake_logSerialMessage___at_Lake_compileLeanModule___spec__3___closed__1); l_List_foldlM___at_Lake_compileLeanModule___spec__4___closed__1 = _init_l_List_foldlM___at_Lake_compileLeanModule___spec__4___closed__1(); diff --git a/stage0/stdlib/Lake/Util/Log.c b/stage0/stdlib/Lake/Util/Log.c index 259bd5fd8b..42dbe2e9ce 100644 --- a/stage0/stdlib/Lake/Util/Log.c +++ b/stage0/stdlib/Lake/Util/Log.c @@ -258,6 +258,7 @@ LEAN_EXPORT lean_object* l_Lake_MonadLog_stderr___rarg___boxed(lean_object*, lea LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lake_Util_Log_0__Lake_fromJsonLogEntry____x40_Lake_Util_Log___hyg_1450____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_LogIO_toBaseIO___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lake_Util_Log_0__Lake_reprLogLevel____x40_Lake_Util_Log___hyg_505____closed__5; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_LogLevel_toString(uint8_t); LEAN_EXPORT uint8_t l_Lake_LogLevel_ofMessageSeverity(uint8_t); LEAN_EXPORT lean_object* l_Lake_Log_push(lean_object*, lean_object*); @@ -553,7 +554,6 @@ static lean_object* l___private_Lake_Util_Log_0__Lake_toJsonLogEntry____x40_Lake lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lake_ELog_orElse___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_MonadLog_ofMonadState___rarg(lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_OutStream_getLogger___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lake_OutStream_logEntry___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lake_LogLevel_ofString_x3f___closed__4; @@ -3371,7 +3371,7 @@ x_12 = lean_ctor_get(x_3, 0); lean_inc(x_12); lean_dec(x_3); x_13 = l___private_Lake_Util_Log_0__Lake_toJsonLogEntry____x40_Lake_Util_Log___hyg_1398____closed__2; -x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_13); +x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_13); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; diff --git a/stage0/stdlib/Lean/Data/Lsp/Capabilities.c b/stage0/stdlib/Lean/Data/Lsp/Capabilities.c index dd744920db..b77250951d 100644 --- a/stage0/stdlib/Lean/Data/Lsp/Capabilities.c +++ b/stage0/stdlib/Lean/Data/Lsp/Capabilities.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1644____closed__62; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonClientCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1171____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonTextDocumentClientCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_280____closed__10; @@ -137,7 +138,6 @@ LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Ls static lean_object* l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1644____closed__31; LEAN_EXPORT lean_object* l_Lean_Json_opt___at___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonCompletionClientCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_129____spec__1___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonShowDocumentClientCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_436____closed__6; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1644____closed__12; lean_object* l_Lean_Json_getObjValD(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_fromJsonCompletionClientCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_157____closed__5; @@ -1955,7 +1955,7 @@ _start: { lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonShowDocumentClientCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_398____closed__1; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -6929,7 +6929,7 @@ lean_inc(x_23); lean_dec(x_14); x_24 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__3; lean_inc(x_1); -x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_24); +x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_24); if (lean_obj_tag(x_25) == 0) { uint8_t x_26; @@ -6969,7 +6969,7 @@ lean_inc(x_34); lean_dec(x_25); x_35 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__4; lean_inc(x_1); -x_36 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_35); +x_36 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_35); if (lean_obj_tag(x_36) == 0) { uint8_t x_37; @@ -7010,7 +7010,7 @@ lean_inc(x_45); lean_dec(x_36); x_46 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__5; lean_inc(x_1); -x_47 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_46); +x_47 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_46); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -7052,7 +7052,7 @@ lean_inc(x_56); lean_dec(x_47); x_57 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__6; lean_inc(x_1); -x_58 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_57); +x_58 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_57); if (lean_obj_tag(x_58) == 0) { uint8_t x_59; @@ -7095,7 +7095,7 @@ lean_inc(x_67); lean_dec(x_58); x_68 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__7; lean_inc(x_1); -x_69 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_68); +x_69 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_68); if (lean_obj_tag(x_69) == 0) { uint8_t x_70; @@ -7139,7 +7139,7 @@ lean_inc(x_78); lean_dec(x_69); x_79 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__8; lean_inc(x_1); -x_80 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_79); +x_80 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_79); if (lean_obj_tag(x_80) == 0) { uint8_t x_81; @@ -7184,7 +7184,7 @@ lean_inc(x_89); lean_dec(x_80); x_90 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__9; lean_inc(x_1); -x_91 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_90); +x_91 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_90); if (lean_obj_tag(x_91) == 0) { uint8_t x_92; @@ -7230,7 +7230,7 @@ lean_inc(x_100); lean_dec(x_91); x_101 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__10; lean_inc(x_1); -x_102 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_101); +x_102 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_101); if (lean_obj_tag(x_102) == 0) { uint8_t x_103; @@ -7325,7 +7325,7 @@ lean_inc(x_122); lean_dec(x_113); x_123 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__12; lean_inc(x_1); -x_124 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_123); +x_124 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_123); if (lean_obj_tag(x_124) == 0) { uint8_t x_125; @@ -7374,7 +7374,7 @@ lean_inc(x_133); lean_dec(x_124); x_134 = l___private_Lean_Data_Lsp_Capabilities_0__Lean_Lsp_toJsonServerCapabilities____x40_Lean_Data_Lsp_Capabilities___hyg_1460____closed__13; lean_inc(x_1); -x_135 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_134); +x_135 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_134); if (lean_obj_tag(x_135) == 0) { uint8_t x_136; diff --git a/stage0/stdlib/Lean/Data/Lsp/CodeActions.c b/stage0/stdlib/Lean/Data/Lsp/CodeActions.c index c6d83bacd3..658ea5c96b 100644 --- a/stage0/stdlib/Lean/Data/Lsp/CodeActions.c +++ b/stage0/stdlib/Lean/Data/Lsp/CodeActions.c @@ -13,6 +13,7 @@ #ifdef __cplusplus extern "C" { #endif +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_fromNat(lean_object*); static lean_object* l_Lean_Lsp_instToJsonCodeAction___closed__1; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1204____spec__5___boxed(lean_object*, lean_object*); @@ -165,7 +166,6 @@ LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Ls LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_389_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_389____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionDisabled____x40_Lean_Data_Lsp_CodeActions___hyg_698____closed__8; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionParams____x40_Lean_Data_Lsp_CodeActions___hyg_389____closed__17; lean_object* l___private_Lean_Data_Lsp_Basic_0__Lean_Lsp_fromJsonCommand____x40_Lean_Data_Lsp_Basic___hyg_1683_(lean_object*); static lean_object* l_Lean_Lsp_instToJsonResolveSupport___closed__1; @@ -209,6 +209,7 @@ static lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCo static lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionOptions____x40_Lean_Data_Lsp_CodeActions___hyg_884____closed__1; LEAN_EXPORT lean_object* l_Lean_Lsp_instToJsonResolveSupport; LEAN_EXPORT lean_object* l_Lean_Lsp_instFromJsonCodeActionDisabled; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1204____closed__36; LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionLiteralSupport____x40_Lean_Data_Lsp_CodeActions___hyg_1937_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionLiteralSupport____x40_Lean_Data_Lsp_CodeActions___hyg_1870____spec__1(lean_object*, lean_object*); @@ -383,7 +384,6 @@ static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Cod LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionLiteralSupportValueSet____x40_Lean_Data_Lsp_CodeActions___hyg_1753____spec__1(lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instToJsonCodeActionDisabled; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionLiteralSupportValueSet____x40_Lean_Data_Lsp_CodeActions___hyg_1753_(lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_opt___at___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionClientCapabilities____x40_Lean_Data_Lsp_CodeActions___hyg_2350____spec__2(lean_object*, lean_object*); @@ -2530,7 +2530,7 @@ _start: { lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_fromJsonCodeActionDisabled____x40_Lean_Data_Lsp_CodeActions___hyg_698____closed__1; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -3110,7 +3110,7 @@ _start: lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeActionOptions____x40_Lean_Data_Lsp_CodeActions___hyg_838____closed__1; lean_inc(x_1); -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -5027,7 +5027,7 @@ lean_inc(x_23); lean_dec(x_14); x_24 = l___private_Lean_Data_Lsp_CodeActions_0__Lean_Lsp_toJsonCodeAction____x40_Lean_Data_Lsp_CodeActions___hyg_1130____closed__1; lean_inc(x_1); -x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_24); +x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_24); if (lean_obj_tag(x_25) == 0) { uint8_t x_26; diff --git a/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c b/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c index 7060f4a447..e8ffe69b10 100644 --- a/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c +++ b/stage0/stdlib/Lean/Data/Lsp/Diagnostics.c @@ -189,6 +189,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_ordDi LEAN_EXPORT lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_953____lambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_DiagnosticWith_instOrdUserVisible___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instBEqDiagnosticWith(lean_object*); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1452____rarg___closed__2; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1452____rarg___closed__4; static lean_object* l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1550____rarg___closed__5; @@ -334,7 +335,6 @@ static lean_object* l_Lean_Lsp_instToJsonDiagnosticSeverity___closed__6; LEAN_EXPORT lean_object* l_Lean_Lsp_instOrdDiagnosticSeverity; static lean_object* l_Lean_Lsp_instOrdDiagnosticTag___closed__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_opt___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1452____spec__3(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_opt___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1452____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_fromJsonDiagnosticWith____x40_Lean_Data_Lsp_Diagnostics___hyg_1550____spec__1___closed__3; @@ -2148,7 +2148,7 @@ x_12 = lean_ctor_get(x_3, 0); lean_inc(x_12); lean_dec(x_3); x_13 = l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_901____closed__2; -x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_13); +x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_13); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -7391,7 +7391,7 @@ lean_inc(x_56); lean_dec(x_47); x_57 = l___private_Lean_Data_Lsp_Diagnostics_0__Lean_Lsp_toJsonDiagnosticRelatedInformation____x40_Lean_Data_Lsp_Diagnostics___hyg_901____closed__2; lean_inc(x_1); -x_58 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_57); +x_58 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_57); if (lean_obj_tag(x_58) == 0) { uint8_t x_59; diff --git a/stage0/stdlib/Lean/Data/Lsp/InitShutdown.c b/stage0/stdlib/Lean/Data/Lsp/InitShutdown.c index 99d45667d0..e134d837d5 100644 --- a/stage0/stdlib/Lean/Data/Lsp/InitShutdown.c +++ b/stage0/stdlib/Lean/Data/Lsp/InitShutdown.c @@ -105,6 +105,7 @@ static lean_object* l_Lean_Lsp_instFromJsonTrace___closed__6; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_fromJsonInitializeResult____x40_Lean_Data_Lsp_InitShutdown___hyg_966____spec__2___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Lsp_instFromJsonInitializedParams___closed__1; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_fromJsonInitializeResult____x40_Lean_Data_Lsp_InitShutdown___hyg_966____spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Lsp_Trace_noConfusion___rarg(uint8_t, uint8_t, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Lsp_instFromJsonInitializeParams___spec__7___boxed(lean_object*, lean_object*, lean_object*); @@ -195,7 +196,6 @@ lean_object* l_Lean_Json_pretty(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__6___boxed(lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_toJsonInitializeParams____x40_Lean_Data_Lsp_InitShutdown___hyg_522____closed__5; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_InitializeParams_editDelay___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Lsp_instToJsonServerInfo; static lean_object* l_Lean_Lsp_instFromJsonTrace___closed__7; @@ -498,7 +498,7 @@ _start: lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_toJsonClientInfo____x40_Lean_Data_Lsp_InitShutdown___hyg_28____closed__1; lean_inc(x_1); -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -1951,7 +1951,7 @@ lean_inc(x_1); x_5 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__2(x_1, x_4); x_6 = l___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_toJsonInitializeParams____x40_Lean_Data_Lsp_InitShutdown___hyg_522____closed__3; lean_inc(x_1); -x_7 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_6); +x_7 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_6); x_8 = l___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_toJsonInitializeParams____x40_Lean_Data_Lsp_InitShutdown___hyg_522____closed__4; lean_inc(x_1); x_9 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__3(x_1, x_8); @@ -4338,7 +4338,7 @@ _start: lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Data_Lsp_InitShutdown_0__Lean_Lsp_toJsonClientInfo____x40_Lean_Data_Lsp_InitShutdown___hyg_28____closed__1; lean_inc(x_1); -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; diff --git a/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c b/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c index 47a76b178f..15ff38567d 100644 --- a/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c +++ b/stage0/stdlib/Lean/Elab/BuiltinEvalCommand.c @@ -120,7 +120,7 @@ lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Command_elabRunElab_declRange__1(lean_object*); static lean_object* l_Lean_Elab_Command_elabEvalCoreUnsafe___lambda__17___closed__8; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Command_elabEvalCoreUnsafe___lambda__17___closed__20; static lean_object* l___regBuiltin_Lean_Elab_Command_elabRunMeta_declRange__1___closed__2; @@ -4511,11 +4511,9 @@ lean_ctor_set(x_11, 0, x_1); lean_ctor_set(x_11, 1, x_10); x_12 = lean_array_mk(x_11); x_13 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr___closed__2; -lean_inc(x_2); -x_14 = lean_alloc_closure((void*)(l_Lean_Elab_applyDerivingHandlers), 6, 3); +x_14 = lean_alloc_closure((void*)(l_Lean_Elab_applyDerivingHandlers), 5, 2); lean_closure_set(x_14, 0, x_13); lean_closure_set(x_14, 1, x_12); -lean_closure_set(x_14, 2, x_2); x_15 = 1; x_16 = l_Lean_liftCommandElabM___rarg(x_14, x_15, x_7, x_8, x_9); if (lean_obj_tag(x_16) == 0) @@ -4566,7 +4564,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_31, 1); x_34 = lean_ctor_get(x_31, 0); lean_dec(x_34); -x_35 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr(x_3, x_2, x_5, x_6, x_7, x_8, x_33); +x_35 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr(x_2, x_3, x_5, x_6, x_7, x_8, x_33); if (lean_obj_tag(x_35) == 0) { uint8_t x_36; @@ -4630,7 +4628,7 @@ lean_object* x_47; lean_object* x_48; x_47 = lean_ctor_get(x_31, 1); lean_inc(x_47); lean_dec(x_31); -x_48 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr(x_3, x_2, x_5, x_6, x_7, x_8, x_47); +x_48 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr(x_2, x_3, x_5, x_6, x_7, x_8, x_47); if (lean_obj_tag(x_48) == 0) { lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; @@ -4738,7 +4736,7 @@ if (lean_is_exclusive(x_73)) { lean_dec_ref(x_73); x_75 = lean_box(0); } -x_76 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr(x_3, x_2, x_5, x_6, x_7, x_8, x_74); +x_76 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkRepr(x_2, x_3, x_5, x_6, x_7, x_8, x_74); if (lean_obj_tag(x_76) == 0) { lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; @@ -5210,7 +5208,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_98 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_45, x_7, x_1, x_97, x_2, x_3, x_4, x_5, x_96); +x_98 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_45, x_1, x_7, x_97, x_2, x_3, x_4, x_5, x_96); if (lean_obj_tag(x_98) == 0) { lean_object* x_99; lean_object* x_100; @@ -5275,7 +5273,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_114 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_45, x_7, x_1, x_112, x_2, x_3, x_4, x_5, x_113); +x_114 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_45, x_1, x_7, x_112, x_2, x_3, x_4, x_5, x_113); lean_dec(x_112); if (lean_obj_tag(x_114) == 0) { @@ -5337,7 +5335,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_129 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_45, x_7, x_1, x_127, x_2, x_3, x_4, x_5, x_128); +x_129 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_45, x_1, x_7, x_127, x_2, x_3, x_4, x_5, x_128); lean_dec(x_127); if (lean_obj_tag(x_129) == 0) { @@ -5940,7 +5938,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_238 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_199, x_7, x_1, x_237, x_2, x_3, x_4, x_5, x_236); +x_238 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_199, x_1, x_7, x_237, x_2, x_3, x_4, x_5, x_236); if (lean_obj_tag(x_238) == 0) { lean_object* x_239; lean_object* x_240; @@ -6013,7 +6011,7 @@ lean_inc(x_4); lean_inc(x_3); lean_inc(x_2); lean_inc(x_1); -x_254 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_199, x_7, x_1, x_252, x_2, x_3, x_4, x_5, x_253); +x_254 = l___private_Lean_Elab_BuiltinEvalCommand_0__Lean_Elab_Command_mkFormat___lambda__2(x_199, x_1, x_7, x_252, x_2, x_3, x_4, x_5, x_253); lean_dec(x_252); if (lean_obj_tag(x_254) == 0) { diff --git a/stage0/stdlib/Lean/Elab/ComputedFields.c b/stage0/stdlib/Lean/Elab/ComputedFields.c index 2c53e9e7b5..acefe1c372 100644 --- a/stage0/stdlib/Lean/Elab/ComputedFields.c +++ b/stage0/stdlib/Lean/Elab/ComputedFields.c @@ -91,7 +91,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_ComputedFie LEAN_EXPORT lean_object* l_Lean_Elab_ComputedFields_overrideCasesOn___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_ComputedFields_overrideCasesOn___lambda__2___closed__1; LEAN_EXPORT lean_object* l_List_mapM_loop___at_Lean_Elab_ComputedFields_mkImplType___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_ComputedFields_validateComputedFields___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_ComputedFields_overrideCasesOn___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -123,6 +122,7 @@ static lean_object* l_Lean_Meta_whnfEasyCases___at_Lean_Elab_ComputedFields_getC lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoDefn___at_Lean_Elab_ComputedFields_overrideCasesOn___spec__1___closed__1; lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_ComputedFields_overrideConstructors___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_ComputedFields_initFn____x40_Lean_Elab_ComputedFields___hyg_5____closed__2; @@ -9747,7 +9747,7 @@ lean_closure_set(x_15, 3, x_2); x_16 = l_Lean_Elab_ComputedFields_overrideComputedFields___closed__2; x_17 = 0; x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_16, x_17, x_14, x_15, x_18, x_7, x_8, x_9, x_10, x_11); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_17, x_14, x_15, x_18, x_7, x_8, x_9, x_10, x_11); return x_19; } } diff --git a/stage0/stdlib/Lean/Elab/DeclUtil.c b/stage0/stdlib/Lean/Elab/DeclUtil.c index 93afe738da..0027e4edef 100644 --- a/stage0/stdlib/Lean/Elab/DeclUtil.c +++ b/stage0/stdlib/Lean/Elab/DeclUtil.c @@ -21,7 +21,6 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompati LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__20(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__12___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__17(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__4(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_sortDeclLevelParams(lean_object*, lean_object*, lean_object*); static lean_object* l_Array_qsort_sort___at_Lean_Elab_sortDeclLevelParams___spec__2___closed__1; @@ -50,13 +49,12 @@ lean_object* l_Array_qpartition___rarg(lean_object*, lean_object*, lean_object*, LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__20___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__7___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__4___closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_expandOptDeclSig___boxed(lean_object*); lean_object* l_List_find_x3f___rarg(lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatible___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__14___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__3___closed__1; @@ -70,6 +68,7 @@ uint8_t l_List_elem___at_Lean_addAliasEntry___spec__16(lean_object*, lean_object static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__3___closed__4; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__18___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__8(lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__22(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__4___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatibleAux(lean_object*); @@ -77,11 +76,11 @@ lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_sortDeclLevelParams___lambda__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__9(lean_object*); -lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__17___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_sortDeclLevelParams___lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__11___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__3___closed__3; +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15(lean_object*); static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__4; static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__10(lean_object*); @@ -111,11 +110,9 @@ LEAN_EXPORT uint8_t l_Lean_Elab_sortDeclLevelParams___lambda__1(lean_object*, le static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__20___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_sortDeclLevelParams___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__4___closed__2; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__19___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__5___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatible___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__4___closed__3; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_sortDeclLevelParams___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -146,7 +143,6 @@ uint8_t l_Array_contains___at_Lean_registerInternalExceptionId___spec__1(lean_ob uint8_t l_Lean_Syntax_isNone(lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Lean_Elab_sortDeclLevelParams___closed__1; -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_expandOptDeclSig(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__3(lean_object*); lean_object* lean_array_mk(lean_object*); @@ -154,6 +150,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatible___rarg___lambda__ size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_expandDeclSig___boxed(lean_object*); lean_object* lean_array_uget(lean_object*, size_t); +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__11(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__9___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); @@ -816,62 +813,49 @@ x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Meta_forallTelescop return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_11; -x_11 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) +lean_object* x_7; lean_object* x_8; uint8_t x_9; +x_7 = lean_ctor_get(x_4, 5); +x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); +x_9 = !lean_is_exclusive(x_8); +if (x_9 == 0) { -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -return x_11; +lean_object* x_10; lean_object* x_11; +x_10 = lean_ctor_get(x_8, 0); +lean_inc(x_7); +x_11 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_11, 0, x_7); +lean_ctor_set(x_11, 1, x_10); +lean_ctor_set_tag(x_8, 1); +lean_ctor_set(x_8, 0, x_11); +return x_8; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_ctor_get(x_11, 1); -lean_inc(x_14); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_8, 0); +x_13 = lean_ctor_get(x_8, 1); lean_inc(x_13); -lean_dec(x_11); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); +lean_inc(x_12); +lean_dec(x_8); +lean_inc(x_7); +x_14 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_14, 0, x_7); +lean_ctor_set(x_14, 1, x_12); +x_15 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); return x_15; } } -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_11); -if (x_16 == 0) -{ -return x_11; } -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_11, 0); -x_18 = lean_ctor_get(x_11, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_11); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -return x_19; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg___boxed), 10, 0); +x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg___boxed), 6, 0); return x_2; } } @@ -1197,52 +1181,6 @@ x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Meta_forallTelescop return x_2; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_7 = lean_ctor_get(x_4, 5); -x_8 = l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(x_1, x_2, x_3, x_4, x_5, x_6); -x_9 = !lean_is_exclusive(x_8); -if (x_9 == 0) -{ -lean_object* x_10; lean_object* x_11; -x_10 = lean_ctor_get(x_8, 0); -lean_inc(x_7); -x_11 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_11, 0, x_7); -lean_ctor_set(x_11, 1, x_10); -lean_ctor_set_tag(x_8, 1); -lean_ctor_set(x_8, 0, x_11); -return x_8; -} -else -{ -lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_12 = lean_ctor_get(x_8, 0); -x_13 = lean_ctor_get(x_8, 1); -lean_inc(x_13); -lean_inc(x_12); -lean_dec(x_8); -lean_inc(x_7); -x_14 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_14, 0, x_7); -lean_ctor_set(x_14, 1, x_12); -x_15 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_15, 0, x_14); -lean_ctor_set(x_15, 1, x_13); -return x_15; -} -} -} -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg___boxed), 6, 0); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -1265,7 +1203,7 @@ lean_closure_set(x_15, 2, x_3); lean_closure_set(x_15, 3, x_4); lean_closure_set(x_15, 4, x_5); x_16 = 0; -x_17 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(x_6, x_7, x_8, x_15, x_16, x_10, x_11, x_12, x_13, x_14); +x_17 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_6, x_7, x_8, x_15, x_16, x_10, x_11, x_12, x_13, x_14); return x_17; } } @@ -2076,7 +2014,7 @@ x_85 = lean_ctor_get(x_18, 1); lean_inc(x_85); lean_dec(x_18); x_86 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_87 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__16___rarg(x_86, x_6, x_7, x_8, x_9, x_85); +x_87 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(x_86, x_6, x_7, x_8, x_9, x_85); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2095,7 +2033,7 @@ x_88 = lean_ctor_get(x_18, 1); lean_inc(x_88); lean_dec(x_18); x_89 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_90 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__17___rarg(x_89, x_6, x_7, x_8, x_9, x_88); +x_90 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__16___rarg(x_89, x_6, x_7, x_8, x_9, x_88); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2114,7 +2052,7 @@ x_91 = lean_ctor_get(x_18, 1); lean_inc(x_91); lean_dec(x_18); x_92 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_93 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__18___rarg(x_92, x_6, x_7, x_8, x_9, x_91); +x_93 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__17___rarg(x_92, x_6, x_7, x_8, x_9, x_91); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2133,7 +2071,7 @@ x_94 = lean_ctor_get(x_18, 1); lean_inc(x_94); lean_dec(x_18); x_95 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_96 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__19___rarg(x_95, x_6, x_7, x_8, x_9, x_94); +x_96 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__18___rarg(x_95, x_6, x_7, x_8, x_9, x_94); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2153,7 +2091,7 @@ x_97 = lean_ctor_get(x_18, 1); lean_inc(x_97); lean_dec(x_18); x_98 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_99 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__20___rarg(x_98, x_6, x_7, x_8, x_9, x_97); +x_99 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__19___rarg(x_98, x_6, x_7, x_8, x_9, x_97); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2171,7 +2109,7 @@ x_100 = lean_ctor_get(x_18, 1); lean_inc(x_100); lean_dec(x_18); x_101 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_102 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__21___rarg(x_101, x_6, x_7, x_8, x_9, x_100); +x_102 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__20___rarg(x_101, x_6, x_7, x_8, x_9, x_100); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2189,7 +2127,7 @@ x_103 = lean_ctor_get(x_18, 1); lean_inc(x_103); lean_dec(x_18); x_104 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_105 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__22___rarg(x_104, x_6, x_7, x_8, x_9, x_103); +x_105 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__21___rarg(x_104, x_6, x_7, x_8, x_9, x_103); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2207,7 +2145,7 @@ x_106 = lean_ctor_get(x_18, 1); lean_inc(x_106); lean_dec(x_18); x_107 = l_Lean_Meta_forallTelescopeCompatibleAux___rarg___closed__2; -x_108 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg(x_107, x_6, x_7, x_8, x_9, x_106); +x_108 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__22___rarg(x_107, x_6, x_7, x_8, x_9, x_106); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -2462,16 +2400,16 @@ lean_dec(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -uint8_t x_11; uint8_t x_12; lean_object* x_13; -x_11 = lean_unbox(x_2); -lean_dec(x_2); -x_12 = lean_unbox(x_5); +lean_object* x_7; +x_7 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(x_1, x_2, x_3, x_4, x_5, x_6); lean_dec(x_5); -x_13 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10); -return x_13; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +return x_7; } } LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__16___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { @@ -2558,18 +2496,6 @@ lean_dec(x_2); return x_7; } } -LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_throwError___at_Lean_Meta_forallTelescopeCompatibleAux___spec__23___rarg(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -return x_7; -} -} LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeCompatibleAux___rarg___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { diff --git a/stage0/stdlib/Lean/Elab/Deriving/Basic.c b/stage0/stdlib/Lean/Elab/Deriving/Basic.c index 651b915ded..751f3192aa 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/Basic.c +++ b/stage0/stdlib/Lean/Elab/Deriving/Basic.c @@ -17,10 +17,11 @@ lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); lean_object* l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabDeriving___spec__1(lean_object*, lean_object*); lean_object* l_Lean_MapDeclarationExtension_insert___rarg(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_processDefDeriving(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabDeriving___spec__1___rarg(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__12; LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3___closed__1; static lean_object* l_Lean_Elab_getOptDerivingClasses___closed__2; @@ -31,10 +32,10 @@ extern lean_object* l_Lean_declRangeExt; lean_object* l_Lean_throwError___at_Lean_Elab_Term_mkAuxName___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_append_after(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Term_processDefDeriving___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_maxRecDepthErrorMessage; static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed__5; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__7; uint8_t l_Lean_Exception_isInterrupt(lean_object*); lean_object* l_Lean_FileMap_toPosition(lean_object*, lean_object*); static lean_object* l_Lean_Elab_defaultHandler___closed__3; @@ -44,57 +45,44 @@ static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed_ static lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_defaultHandler___closed__1; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2; lean_object* l_Lean_MessageData_ofList(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f_go_x3f___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_push(lean_object*, lean_object*); -lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_defaultHandler___closed__4; -static lean_object* l_Lean_Elab_elabDeriving___lambda__2___closed__2; lean_object* l_Lean_Syntax_getArgs(lean_object*); -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving__1___closed__3; static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___closed__6; lean_object* l_Lean_replaceRef(lean_object*, lean_object*); lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Term_MVarErrorInfo_logError___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_fget(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_processDefDeriving___spec__4___rarg___closed__1; static lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_processDefDeriving___spec__4___rarg___closed__2; lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_processDefDeriving___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); uint8_t l_Lean_MapDeclarationExtension_contains___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_name_append_before(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__3(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving__1___closed__5; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__9; lean_object* l_List_mapTR_loop___at_Lean_mkConstWithLevelParams___spec__1(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_initializing(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_defaultHandler___closed__6; LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1; size_t lean_usize_of_nat(lean_object*); -static lean_object* l_Lean_Elab_elabDeriving___lambda__2___closed__1; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__13; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__15; lean_object* l_liftExcept___at_Lean_Elab_liftMacroM___spec__1(lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Elab_Command_commandElabAttribute; LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_Lean_Elab_Term_processDefDeriving___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -102,26 +90,27 @@ lean_object* l_Lean_Elab_expandMacroImpl_x3f(lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesFromSyntax___at_Lean_Elab_Term_processDefDeriving___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3___closed__4; lean_object* l_Lean_ResolveName_resolveNamespace(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__16; static lean_object* l_Lean_Elab_elabDeriving___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__1(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__1(lean_object*); static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___closed__5; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__14; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__2; lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_registerDerivingHandler___closed__1; static lean_object* l_Lean_Elab_elabDeriving___closed__2; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__4; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_processDefDeriving___spec__4___rarg(lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__3; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_getRef(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(size_t, size_t, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__14; -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_processDefDeriving___closed__1; static lean_object* l_Lean_Elab_elabDeriving___closed__3; lean_object* l_Lean_MessageData_ofFormat(lean_object*); lean_object* l_Lean_Meta_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_defaultHandler___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__12; lean_object* l_outOfBounds___rarg(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed__4; lean_object* l_Lean_Elab_Command_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); @@ -131,46 +120,44 @@ lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); uint8_t lean_is_out_param(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_666_(lean_object*); lean_object* l_Lean_Meta_synthInstance(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabDeriving___spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_DerivingClassView_applyHandlers(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___closed__3; LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_processDefDeriving___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__11; +static lean_object* l_Lean_Elab_registerDerivingHandler___closed__2; static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___closed__2; lean_object* l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_RBNode_insert___at_Lean_NameMap_insert___spec__1___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving__1___closed__4; -static lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__6; static lean_object* l___regBuiltin_Lean_Elab_elabDeriving__1___closed__2; -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4___boxed(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906_(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_elabDeriving__1(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed__1; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__9; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwErrorAt___at_Lean_Elab_Term_processDefDeriving___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed__2; uint8_t l_Lean_Syntax_matchesNull(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__6___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_appFn_x21(lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed__6; LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__10; static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3___closed__3; -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_660_(lean_object*); static lean_object* l_Lean_Elab_getOptDerivingClasses___closed__1; -static lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2; +static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; uint8_t l_Lean_Environment_contains(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__8(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__16; -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabDeriving___closed__6; static lean_object* l_Lean_Elab_defaultHandler___closed__5; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); @@ -178,19 +165,19 @@ static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDe lean_object* l_Lean_FileMap_leanPosToLspPos(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getOptDerivingClasses(lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__6(lean_object*, lean_object*); static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeriving___spec__3___closed__5; -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__3; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__13; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f_go_x3f___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f_go_x3f___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__11; lean_object* lean_environment_main_module(lean_object*); lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); @@ -198,26 +185,21 @@ LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___boxed__const__1; lean_object* l_Lean_Meta_isExprDefEqGuarded(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabDeriving___closed__5; -static lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___closed__1; static lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__1; static lean_object* l_Lean_Elab_defaultHandler___closed__2; -uint8_t l_Lean_Syntax_isNone(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_ResolveName_resolveGlobalName(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___closed__1; -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_addInstance(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_liftCoreM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__15; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_getString_x21(lean_object*); lean_object* l_Lean_PersistentHashMap_mkEmptyEntriesArray(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f_go_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedDeclarationRanges; -static lean_object* l_Lean_Elab_elabDeriving___closed__9; lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_elabDeriving_declRange__1___closed__7; @@ -225,7 +207,7 @@ static lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Elab_Term_processDefDeri lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__2___boxed(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__10; +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__5; extern lean_object* l_Lean_instInhabitedName; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uget(lean_object*, size_t); @@ -237,13 +219,10 @@ lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_defaultHandler(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_elabDeriving___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_liftMacroM___at_Lean_Elab_Term_processDefDeriving___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__5; lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(lean_object*, size_t, size_t, lean_object*); lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_getDeclarationRange_x3f___at_Lean_Elab_Term_processDefDeriving___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); @@ -251,9 +230,9 @@ extern lean_object* l_Lean_Elab_unsupportedSyntaxExceptionId; uint8_t lean_usize_dec_lt(size_t, size_t); lean_object* l_Lean_RBNode_find___at_Lean_NameMap_find_x3f___spec__1___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__8; LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__2(lean_object*, lean_object*); lean_object* l_Lean_addAndCompile(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1; lean_object* lean_nat_add(lean_object*, lean_object*); lean_object* l_List_mapTR_loop___at_Lean_compileDecl___spec__1(lean_object*, lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); @@ -263,8 +242,11 @@ static lean_object* l_Lean_Elab_applyDerivingHandlers___closed__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* l_Lean_MessageData_ofName(lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_Term_processDefDeriving___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_ReaderT_pure___at_Lean_Elab_liftMacroM___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__8; static lean_object* l_Lean_Elab_elabDeriving___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f_go_x3f___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f_go_x3f___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9) { @@ -3707,7 +3689,7 @@ lean_dec(x_4); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_666_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_660_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; uint8_t x_4; @@ -3733,7 +3715,7 @@ return x_7; } } } -static lean_object* _init_l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1() { +static lean_object* _init_l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -3741,11 +3723,11 @@ x_1 = l_Lean_Elab_derivingHandlersRef; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; lean_object* x_6; uint8_t x_7; -x_5 = l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1; +x_5 = l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1; x_6 = lean_st_ref_take(x_5, x_4); x_7 = !lean_is_exclusive(x_6); if (x_7 == 0) @@ -3887,7 +3869,7 @@ return x_43; } } } -static lean_object* _init_l_Lean_Elab_registerDerivingHandlerWithArgs___closed__1() { +static lean_object* _init_l_Lean_Elab_registerDerivingHandler___closed__1() { _start: { lean_object* x_1; @@ -3895,17 +3877,17 @@ x_1 = lean_mk_string_unchecked("failed to register deriving handler, it can only return x_1; } } -static lean_object* _init_l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2() { +static lean_object* _init_l_Lean_Elab_registerDerivingHandler___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Elab_registerDerivingHandlerWithArgs___closed__1; +x_1 = l_Lean_Elab_registerDerivingHandler___closed__1; x_2 = lean_alloc_ctor(18, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { lean_object* x_4; lean_object* x_5; uint8_t x_6; @@ -3925,7 +3907,7 @@ if (x_7 == 0) lean_object* x_8; lean_object* x_9; x_8 = lean_ctor_get(x_4, 0); lean_dec(x_8); -x_9 = l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2; +x_9 = l_Lean_Elab_registerDerivingHandler___closed__2; lean_ctor_set_tag(x_4, 1); lean_ctor_set(x_4, 0, x_9); return x_4; @@ -3936,7 +3918,7 @@ lean_object* x_10; lean_object* x_11; lean_object* x_12; x_10 = lean_ctor_get(x_4, 1); lean_inc(x_10); lean_dec(x_4); -x_11 = l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2; +x_11 = l_Lean_Elab_registerDerivingHandler___closed__2; x_12 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_10); @@ -3950,47 +3932,20 @@ x_13 = lean_ctor_get(x_4, 1); lean_inc(x_13); lean_dec(x_4); x_14 = lean_box(0); -x_15 = l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1(x_1, x_2, x_14, x_13); +x_15 = l_Lean_Elab_registerDerivingHandler___lambda__1(x_1, x_2, x_14, x_13); return x_15; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { lean_object* x_5; -x_5 = l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1(x_1, x_2, x_3, x_4); +x_5 = l_Lean_Elab_registerDerivingHandler___lambda__1(x_1, x_2, x_3, x_4); lean_dec(x_3); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = lean_apply_4(x_1, x_2, x_4, x_5, x_6); -return x_7; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; lean_object* x_5; -x_4 = lean_alloc_closure((void*)(l_Lean_Elab_registerDerivingHandler___lambda__1___boxed), 6, 1); -lean_closure_set(x_4, 0, x_2); -x_5 = l_Lean_Elab_registerDerivingHandlerWithArgs(x_1, x_4, x_3); -return x_5; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_registerDerivingHandler___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { -_start: -{ -lean_object* x_7; -x_7 = l_Lean_Elab_registerDerivingHandler___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); -lean_dec(x_3); -return x_7; -} -} static lean_object* _init_l_Lean_Elab_defaultHandler___closed__1() { _start: { @@ -4101,121 +4056,117 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { -if (lean_obj_tag(x_7) == 0) +if (lean_obj_tag(x_6) == 0) { -lean_object* x_13; -lean_dec(x_11); +lean_object* x_12; lean_dec(x_10); -lean_dec(x_5); -lean_dec(x_2); +lean_dec(x_9); +lean_dec(x_4); lean_dec(x_1); -x_13 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_13, 0, x_8); -lean_ctor_set(x_13, 1, x_12); -return x_13; +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_7); +lean_ctor_set(x_12, 1, x_11); +return x_12; } else { -lean_object* x_14; lean_object* x_15; lean_object* x_16; -lean_dec(x_8); -x_14 = lean_ctor_get(x_7, 0); -lean_inc(x_14); -x_15 = lean_ctor_get(x_7, 1); -lean_inc(x_15); +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_dec(x_7); -lean_inc(x_11); +x_13 = lean_ctor_get(x_6, 0); +lean_inc(x_13); +x_14 = lean_ctor_get(x_6, 1); +lean_inc(x_14); +lean_dec(x_6); lean_inc(x_10); -lean_inc(x_2); +lean_inc(x_9); lean_inc(x_1); -x_16 = lean_apply_5(x_14, x_1, x_2, x_10, x_11, x_12); -if (lean_obj_tag(x_16) == 0) +x_15 = lean_apply_4(x_13, x_1, x_9, x_10, x_11); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; uint8_t x_18; -x_17 = lean_ctor_get(x_16, 0); -lean_inc(x_17); -x_18 = lean_unbox(x_17); -lean_dec(x_17); -if (x_18 == 0) -{ -lean_object* x_19; -x_19 = lean_ctor_get(x_16, 1); -lean_inc(x_19); +lean_object* x_16; uint8_t x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); +x_17 = lean_unbox(x_16); lean_dec(x_16); -lean_inc(x_5); +if (x_17 == 0) { -lean_object* _tmp_6 = x_15; -lean_object* _tmp_7 = x_5; -lean_object* _tmp_8 = lean_box(0); -lean_object* _tmp_11 = x_19; +lean_object* x_18; +x_18 = lean_ctor_get(x_15, 1); +lean_inc(x_18); +lean_dec(x_15); +lean_inc(x_4); +{ +lean_object* _tmp_5 = x_14; +lean_object* _tmp_6 = x_4; +lean_object* _tmp_7 = lean_box(0); +lean_object* _tmp_10 = x_18; +x_6 = _tmp_5; x_7 = _tmp_6; x_8 = _tmp_7; -x_9 = _tmp_8; -x_12 = _tmp_11; +x_11 = _tmp_10; } goto _start; } else { -uint8_t x_21; -lean_dec(x_15); -lean_dec(x_11); +uint8_t x_20; +lean_dec(x_14); lean_dec(x_10); -lean_dec(x_5); -lean_dec(x_2); +lean_dec(x_9); +lean_dec(x_4); lean_dec(x_1); -x_21 = !lean_is_exclusive(x_16); -if (x_21 == 0) +x_20 = !lean_is_exclusive(x_15); +if (x_20 == 0) { -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_16, 0); -lean_dec(x_22); -x_23 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2; -lean_ctor_set(x_16, 0, x_23); -return x_16; +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_15, 0); +lean_dec(x_21); +x_22 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2; +lean_ctor_set(x_15, 0, x_22); +return x_15; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_16, 1); -lean_inc(x_24); -lean_dec(x_16); -x_25 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2; -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -return x_26; -} -} -} -else -{ -uint8_t x_27; +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_15, 1); +lean_inc(x_23); lean_dec(x_15); -lean_dec(x_11); -lean_dec(x_10); -lean_dec(x_5); -lean_dec(x_2); -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_16); -if (x_27 == 0) -{ -return x_16; +x_24 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2; +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +return x_25; +} +} } else { -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_16, 0); -x_29 = lean_ctor_get(x_16, 1); -lean_inc(x_29); +uint8_t x_26; +lean_dec(x_14); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_4); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_15); +if (x_26 == 0) +{ +return x_15; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_15, 0); +x_28 = lean_ctor_get(x_15, 1); lean_inc(x_28); -lean_dec(x_16); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -return x_30; +lean_inc(x_27); +lean_dec(x_15); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; } } } @@ -4241,132 +4192,131 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; -x_7 = l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1; -x_8 = lean_st_ref_get(x_7, x_6); -x_9 = lean_ctor_get(x_8, 0); +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; +x_6 = l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1; +x_7 = lean_st_ref_get(x_6, x_5); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = lean_ctor_get(x_7, 1); lean_inc(x_9); -x_10 = lean_ctor_get(x_8, 1); -lean_inc(x_10); +lean_dec(x_7); +x_10 = l_Lean_RBNode_find___at_Lean_NameMap_find_x3f___spec__1___rarg(x_8, x_1); lean_dec(x_8); -x_11 = l_Lean_RBNode_find___at_Lean_NameMap_find_x3f___spec__1___rarg(x_9, x_1); -lean_dec(x_9); -if (lean_obj_tag(x_11) == 0) +if (lean_obj_tag(x_10) == 0) { -lean_object* x_12; -lean_dec(x_3); -x_12 = l_Lean_Elab_defaultHandler(x_1, x_2, x_4, x_5, x_10); -lean_dec(x_5); -return x_12; +lean_object* x_11; +x_11 = l_Lean_Elab_defaultHandler(x_1, x_2, x_3, x_4, x_9); +lean_dec(x_4); +return x_11; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = lean_ctor_get(x_11, 0); -lean_inc(x_13); -lean_dec(x_11); -x_14 = lean_box(0); -x_15 = l_Lean_Elab_applyDerivingHandlers___closed__1; -lean_inc(x_5); +lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_12 = lean_ctor_get(x_10, 0); +lean_inc(x_12); +lean_dec(x_10); +x_13 = lean_box(0); +x_14 = l_Lean_Elab_applyDerivingHandlers___closed__1; lean_inc(x_4); -lean_inc(x_13); +lean_inc(x_3); +lean_inc(x_12); lean_inc(x_2); -x_16 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(x_2, x_3, x_13, x_14, x_15, x_13, x_13, x_15, lean_box(0), x_4, x_5, x_10); -lean_dec(x_13); -if (lean_obj_tag(x_16) == 0) +x_15 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(x_2, x_12, x_13, x_14, x_12, x_12, x_14, lean_box(0), x_3, x_4, x_9); +lean_dec(x_12); +if (lean_obj_tag(x_15) == 0) { -lean_object* x_17; lean_object* x_18; +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_15, 0); +lean_inc(x_16); x_17 = lean_ctor_get(x_16, 0); lean_inc(x_17); -x_18 = lean_ctor_get(x_17, 0); +lean_dec(x_16); +if (lean_obj_tag(x_17) == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_ctor_get(x_15, 1); lean_inc(x_18); -lean_dec(x_17); -if (lean_obj_tag(x_18) == 0) -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_ctor_get(x_16, 1); -lean_inc(x_19); -lean_dec(x_16); -x_20 = l_Lean_Elab_defaultHandler(x_1, x_2, x_4, x_5, x_19); -lean_dec(x_5); -return x_20; -} -else -{ -uint8_t x_21; -lean_dec(x_5); +lean_dec(x_15); +x_19 = l_Lean_Elab_defaultHandler(x_1, x_2, x_3, x_4, x_18); lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_21 = !lean_is_exclusive(x_16); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; -x_22 = lean_ctor_get(x_16, 0); -lean_dec(x_22); -x_23 = lean_ctor_get(x_18, 0); -lean_inc(x_23); -lean_dec(x_18); -lean_ctor_set(x_16, 0, x_23); -return x_16; +return x_19; } else { -lean_object* x_24; lean_object* x_25; lean_object* x_26; -x_24 = lean_ctor_get(x_16, 1); -lean_inc(x_24); -lean_dec(x_16); -x_25 = lean_ctor_get(x_18, 0); -lean_inc(x_25); -lean_dec(x_18); -x_26 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_26, 0, x_25); -lean_ctor_set(x_26, 1, x_24); -return x_26; -} -} -} -else -{ -uint8_t x_27; -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -lean_dec(x_1); -x_27 = !lean_is_exclusive(x_16); -if (x_27 == 0) -{ -return x_16; -} -else -{ -lean_object* x_28; lean_object* x_29; lean_object* x_30; -x_28 = lean_ctor_get(x_16, 0); -x_29 = lean_ctor_get(x_16, 1); -lean_inc(x_29); -lean_inc(x_28); -lean_dec(x_16); -x_30 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_30, 0, x_28); -lean_ctor_set(x_30, 1, x_29); -return x_30; -} -} -} -} -} -LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { -_start: -{ -lean_object* x_13; -x_13 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -lean_dec(x_6); +uint8_t x_20; lean_dec(x_4); lean_dec(x_3); -return x_13; +lean_dec(x_2); +lean_dec(x_1); +x_20 = !lean_is_exclusive(x_15); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; +x_21 = lean_ctor_get(x_15, 0); +lean_dec(x_21); +x_22 = lean_ctor_get(x_17, 0); +lean_inc(x_22); +lean_dec(x_17); +lean_ctor_set(x_15, 0, x_22); +return x_15; +} +else +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_15, 1); +lean_inc(x_23); +lean_dec(x_15); +x_24 = lean_ctor_get(x_17, 0); +lean_inc(x_24); +lean_dec(x_17); +x_25 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_25, 0, x_24); +lean_ctor_set(x_25, 1, x_23); +return x_25; +} +} +} +else +{ +uint8_t x_26; +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_26 = !lean_is_exclusive(x_15); +if (x_26 == 0) +{ +return x_15; +} +else +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_27 = lean_ctor_get(x_15, 0); +x_28 = lean_ctor_get(x_15, 1); +lean_inc(x_28); +lean_inc(x_27); +lean_dec(x_15); +x_29 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_29, 0, x_27); +lean_ctor_set(x_29, 1, x_28); +return x_29; +} +} +} +} +} +LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { +_start: +{ +lean_object* x_12; +x_12 = l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +return x_12; } } LEAN_EXPORT lean_object* l_Lean_Elab_applyDerivingHandlers___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { @@ -4499,141 +4449,7 @@ x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__3(x_1, x_2, x return x_6; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = 1; -x_9 = lean_usize_add(x_2, x_8); -x_10 = lean_ctor_get(x_5, 1); -lean_inc(x_10); -lean_dec(x_5); -x_11 = lean_array_uset(x_7, x_2, x_10); -x_2 = x_9; -x_3 = x_11; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5(size_t x_1, size_t x_2, lean_object* x_3) { -_start: -{ -uint8_t x_4; -x_4 = lean_usize_dec_lt(x_2, x_1); -if (x_4 == 0) -{ -return x_3; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; size_t x_8; size_t x_9; lean_object* x_10; lean_object* x_11; -x_5 = lean_array_uget(x_3, x_2); -x_6 = lean_unsigned_to_nat(0u); -x_7 = lean_array_uset(x_3, x_2, x_6); -x_8 = 1; -x_9 = lean_usize_add(x_2, x_8); -x_10 = lean_ctor_get(x_5, 0); -lean_inc(x_10); -lean_dec(x_5); -x_11 = lean_array_uset(x_7, x_2, x_10); -x_2 = x_9; -x_3 = x_11; -goto _start; -} -} -} -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__7(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; uint8_t x_7; -x_6 = lean_array_get_size(x_1); -x_7 = lean_nat_dec_lt(x_4, x_6); -lean_dec(x_6); -if (x_7 == 0) -{ -lean_object* x_8; -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_8 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_8, 0, x_5); -return x_8; -} -else -{ -lean_object* x_9; uint8_t x_10; -x_9 = lean_unsigned_to_nat(0u); -x_10 = lean_nat_dec_eq(x_3, x_9); -if (x_10 == 0) -{ -lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; -x_11 = lean_unsigned_to_nat(1u); -x_12 = lean_nat_sub(x_3, x_11); -lean_dec(x_3); -x_13 = lean_array_fget(x_1, x_4); -lean_inc(x_2); -x_14 = lean_apply_1(x_2, x_13); -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_15; -lean_dec(x_12); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_2); -x_15 = lean_box(0); -return x_15; -} -else -{ -lean_object* x_16; lean_object* x_17; lean_object* x_18; -x_16 = lean_ctor_get(x_14, 0); -lean_inc(x_16); -lean_dec(x_14); -x_17 = lean_nat_add(x_4, x_11); -lean_dec(x_4); -x_18 = lean_array_push(x_5, x_16); -x_3 = x_12; -x_4 = x_17; -x_5 = x_18; -goto _start; -} -} -else -{ -lean_object* x_20; -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -x_20 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_20, 0, x_5); -return x_20; -} -} -} -} -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__6(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; -x_3 = lean_array_get_size(x_1); -x_4 = lean_mk_empty_array_with_capacity(x_3); -x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__7(x_1, x_2, x_3, x_5, x_4); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__8(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(size_t x_1, size_t x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { uint8_t x_7; @@ -4702,15 +4518,25 @@ return x_23; } } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_8; -x_8 = l_Lean_Elab_applyDerivingHandlers(x_1, x_2, x_3, x_5, x_6, x_7); -return x_8; +lean_object* x_7; +x_7 = l_Lean_Elab_applyDerivingHandlers(x_1, x_2, x_4, x_5, x_6); +return x_7; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, size_t x_5, size_t x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -4728,892 +4554,278 @@ return x_12; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_21; lean_object* x_22; lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_7); x_13 = lean_array_uget(x_4, x_6); -x_23 = lean_ctor_get(x_7, 0); -lean_inc(x_23); -x_24 = lean_ctor_get(x_7, 1); -lean_inc(x_24); -x_25 = lean_ctor_get(x_7, 2); -lean_inc(x_25); -x_26 = lean_nat_dec_lt(x_24, x_25); -if (x_26 == 0) -{ -lean_object* x_27; -lean_dec(x_25); -lean_dec(x_24); -lean_dec(x_23); -lean_dec(x_13); -x_27 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_27, 0, x_7); -x_14 = x_27; -x_15 = x_10; -goto block_22; -} -else -{ -uint8_t x_28; -x_28 = !lean_is_exclusive(x_7); -if (x_28 == 0) -{ -lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_47; lean_object* x_48; lean_object* x_49; -x_29 = lean_ctor_get(x_7, 2); -lean_dec(x_29); -x_30 = lean_ctor_get(x_7, 1); -lean_dec(x_30); -x_31 = lean_ctor_get(x_7, 0); -lean_dec(x_31); -x_32 = lean_array_fget(x_23, x_24); -x_33 = lean_unsigned_to_nat(1u); -x_34 = lean_nat_add(x_24, x_33); -lean_dec(x_24); -lean_ctor_set(x_7, 1, x_34); -x_47 = lean_box(0); +x_33 = lean_box(0); lean_inc(x_13); -x_48 = lean_alloc_closure((void*)(l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo), 5, 2); -lean_closure_set(x_48, 0, x_13); -lean_closure_set(x_48, 1, x_47); -x_49 = l_Lean_Elab_Command_liftCoreM___rarg(x_48, x_8, x_9, x_10); -if (lean_obj_tag(x_49) == 0) +x_34 = lean_alloc_closure((void*)(l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo), 5, 2); +lean_closure_set(x_34, 0, x_13); +lean_closure_set(x_34, 1, x_33); +x_35 = l_Lean_Elab_Command_liftCoreM___rarg(x_34, x_8, x_9, x_10); +if (lean_obj_tag(x_35) == 0) { -lean_object* x_50; lean_object* x_51; lean_object* x_52; uint8_t x_53; lean_object* x_54; uint8_t x_55; -x_50 = lean_ctor_get(x_49, 0); -lean_inc(x_50); -x_51 = lean_ctor_get(x_49, 1); -lean_inc(x_51); -lean_dec(x_49); -x_52 = lean_array_get_size(x_2); -x_53 = lean_nat_dec_eq(x_52, x_33); -x_54 = l_Lean_Elab_Command_getRef(x_8, x_9, x_51); -if (x_53 == 0) +lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; uint8_t x_40; uint8_t x_41; lean_object* x_42; lean_object* x_43; lean_object* x_93; +x_36 = lean_ctor_get(x_35, 0); +lean_inc(x_36); +x_37 = lean_ctor_get(x_35, 1); +lean_inc(x_37); +lean_dec(x_35); +x_38 = lean_array_get_size(x_2); +x_39 = lean_unsigned_to_nat(1u); +x_40 = lean_nat_dec_eq(x_38, x_39); +x_93 = l_Lean_Elab_Command_getRef(x_8, x_9, x_37); +if (x_40 == 0) { -uint8_t x_121; -x_121 = 0; -x_55 = x_121; -goto block_120; -} -else -{ -if (lean_obj_tag(x_32) == 0) -{ -uint8_t x_122; -x_122 = 1; -x_55 = x_122; -goto block_120; -} -else -{ -uint8_t x_123; -x_123 = 0; -x_55 = x_123; -goto block_120; -} -} -block_120: -{ -if (x_55 == 0) -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; uint8_t x_68; lean_object* x_69; lean_object* x_70; -lean_dec(x_52); -x_56 = lean_ctor_get(x_54, 0); -lean_inc(x_56); -x_57 = lean_ctor_get(x_54, 1); -lean_inc(x_57); -lean_dec(x_54); -x_58 = l_Lean_replaceRef(x_13, x_56); -lean_dec(x_56); -lean_dec(x_13); -x_59 = lean_ctor_get(x_8, 0); -lean_inc(x_59); -x_60 = lean_ctor_get(x_8, 1); -lean_inc(x_60); -x_61 = lean_ctor_get(x_8, 2); -lean_inc(x_61); -x_62 = lean_ctor_get(x_8, 3); -lean_inc(x_62); -x_63 = lean_ctor_get(x_8, 4); -lean_inc(x_63); -x_64 = lean_ctor_get(x_8, 5); -lean_inc(x_64); -x_65 = lean_ctor_get(x_8, 7); -lean_inc(x_65); -x_66 = lean_ctor_get(x_8, 8); -lean_inc(x_66); -x_67 = lean_ctor_get(x_8, 9); -lean_inc(x_67); -x_68 = lean_ctor_get_uint8(x_8, sizeof(void*)*10); -x_69 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_69, 0, x_59); -lean_ctor_set(x_69, 1, x_60); -lean_ctor_set(x_69, 2, x_61); -lean_ctor_set(x_69, 3, x_62); -lean_ctor_set(x_69, 4, x_63); -lean_ctor_set(x_69, 5, x_64); -lean_ctor_set(x_69, 6, x_58); -lean_ctor_set(x_69, 7, x_65); -lean_ctor_set(x_69, 8, x_66); -lean_ctor_set(x_69, 9, x_67); -lean_ctor_set_uint8(x_69, sizeof(void*)*10, x_68); -lean_inc(x_9); -lean_inc(x_2); -x_70 = l_Lean_Elab_applyDerivingHandlers(x_50, x_2, x_32, x_69, x_9, x_57); -if (lean_obj_tag(x_70) == 0) -{ -lean_object* x_71; lean_object* x_72; -x_71 = lean_ctor_get(x_70, 1); -lean_inc(x_71); -lean_dec(x_70); -x_72 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_72, 0, x_7); -x_14 = x_72; -x_15 = x_71; -goto block_22; -} -else -{ -lean_object* x_73; lean_object* x_74; -x_73 = lean_ctor_get(x_70, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_70, 1); -lean_inc(x_74); -lean_dec(x_70); -x_35 = x_73; -x_36 = x_74; -goto block_46; -} -} -else -{ -lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; uint8_t x_87; lean_object* x_88; lean_object* x_89; uint8_t x_90; -x_75 = lean_ctor_get(x_54, 0); -lean_inc(x_75); -x_76 = lean_ctor_get(x_54, 1); -lean_inc(x_76); -lean_dec(x_54); -x_77 = l_Lean_replaceRef(x_13, x_75); -lean_dec(x_75); -lean_dec(x_13); -x_78 = lean_ctor_get(x_8, 0); -lean_inc(x_78); -x_79 = lean_ctor_get(x_8, 1); -lean_inc(x_79); -x_80 = lean_ctor_get(x_8, 2); -lean_inc(x_80); -x_81 = lean_ctor_get(x_8, 3); -lean_inc(x_81); -x_82 = lean_ctor_get(x_8, 4); -lean_inc(x_82); -x_83 = lean_ctor_get(x_8, 5); -lean_inc(x_83); -x_84 = lean_ctor_get(x_8, 7); -lean_inc(x_84); -x_85 = lean_ctor_get(x_8, 8); -lean_inc(x_85); -x_86 = lean_ctor_get(x_8, 9); -lean_inc(x_86); -x_87 = lean_ctor_get_uint8(x_8, sizeof(void*)*10); -x_88 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_88, 0, x_78); -lean_ctor_set(x_88, 1, x_79); -lean_ctor_set(x_88, 2, x_80); -lean_ctor_set(x_88, 3, x_81); -lean_ctor_set(x_88, 4, x_82); -lean_ctor_set(x_88, 5, x_83); -lean_ctor_set(x_88, 6, x_77); -lean_ctor_set(x_88, 7, x_84); -lean_ctor_set(x_88, 8, x_85); -lean_ctor_set(x_88, 9, x_86); -lean_ctor_set_uint8(x_88, sizeof(void*)*10, x_87); -x_89 = lean_unsigned_to_nat(0u); -x_90 = lean_nat_dec_lt(x_89, x_52); -lean_dec(x_52); -if (x_90 == 0) -{ -lean_object* x_91; lean_object* x_92; lean_object* x_93; -x_91 = l_Lean_instInhabitedName; -x_92 = l_outOfBounds___rarg(x_91); -lean_inc(x_50); -x_93 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler(x_50, x_92, x_88, x_9, x_76); -if (lean_obj_tag(x_93) == 0) -{ -lean_object* x_94; uint8_t x_95; +lean_object* x_94; lean_object* x_95; uint8_t x_96; x_94 = lean_ctor_get(x_93, 0); lean_inc(x_94); -x_95 = lean_unbox(x_94); -lean_dec(x_94); -if (x_95 == 0) -{ -lean_object* x_96; lean_object* x_97; -x_96 = lean_ctor_get(x_93, 1); -lean_inc(x_96); +x_95 = lean_ctor_get(x_93, 1); +lean_inc(x_95); lean_dec(x_93); -lean_inc(x_9); -lean_inc(x_2); -x_97 = l_Lean_Elab_applyDerivingHandlers(x_50, x_2, x_32, x_88, x_9, x_96); -if (lean_obj_tag(x_97) == 0) +x_96 = 0; +x_41 = x_96; +x_42 = x_94; +x_43 = x_95; +goto block_92; +} +else { -lean_object* x_98; lean_object* x_99; -x_98 = lean_ctor_get(x_97, 1); +lean_object* x_97; lean_object* x_98; uint8_t x_99; +x_97 = lean_ctor_get(x_93, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_93, 1); lean_inc(x_98); -lean_dec(x_97); -x_99 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_99, 0, x_7); -x_14 = x_99; -x_15 = x_98; -goto block_22; -} -else -{ -lean_object* x_100; lean_object* x_101; -x_100 = lean_ctor_get(x_97, 0); -lean_inc(x_100); -x_101 = lean_ctor_get(x_97, 1); -lean_inc(x_101); -lean_dec(x_97); -x_35 = x_100; -x_36 = x_101; -goto block_46; -} -} -else -{ -lean_object* x_102; lean_object* x_103; -lean_dec(x_88); -lean_dec(x_50); -lean_dec(x_32); -x_102 = lean_ctor_get(x_93, 1); -lean_inc(x_102); lean_dec(x_93); -x_103 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_103, 0, x_7); -x_14 = x_103; -x_15 = x_102; -goto block_22; +x_99 = 1; +x_41 = x_99; +x_42 = x_97; +x_43 = x_98; +goto block_92; } -} -else +block_92: { -lean_object* x_104; lean_object* x_105; -lean_dec(x_88); -lean_dec(x_50); -lean_dec(x_32); -x_104 = lean_ctor_get(x_93, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_93, 1); -lean_inc(x_105); -lean_dec(x_93); -x_35 = x_104; -x_36 = x_105; -goto block_46; -} -} -else -{ -lean_object* x_106; lean_object* x_107; -x_106 = lean_array_fget(x_2, x_89); -lean_inc(x_50); -x_107 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler(x_50, x_106, x_88, x_9, x_76); -if (lean_obj_tag(x_107) == 0) -{ -lean_object* x_108; uint8_t x_109; -x_108 = lean_ctor_get(x_107, 0); -lean_inc(x_108); -x_109 = lean_unbox(x_108); -lean_dec(x_108); -if (x_109 == 0) -{ -lean_object* x_110; lean_object* x_111; -x_110 = lean_ctor_get(x_107, 1); -lean_inc(x_110); -lean_dec(x_107); -lean_inc(x_9); -lean_inc(x_2); -x_111 = l_Lean_Elab_applyDerivingHandlers(x_50, x_2, x_32, x_88, x_9, x_110); -if (lean_obj_tag(x_111) == 0) -{ -lean_object* x_112; lean_object* x_113; -x_112 = lean_ctor_get(x_111, 1); -lean_inc(x_112); -lean_dec(x_111); -x_113 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_113, 0, x_7); -x_14 = x_113; -x_15 = x_112; -goto block_22; -} -else -{ -lean_object* x_114; lean_object* x_115; -x_114 = lean_ctor_get(x_111, 0); -lean_inc(x_114); -x_115 = lean_ctor_get(x_111, 1); -lean_inc(x_115); -lean_dec(x_111); -x_35 = x_114; -x_36 = x_115; -goto block_46; -} -} -else -{ -lean_object* x_116; lean_object* x_117; -lean_dec(x_88); -lean_dec(x_50); -lean_dec(x_32); -x_116 = lean_ctor_get(x_107, 1); -lean_inc(x_116); -lean_dec(x_107); -x_117 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_117, 0, x_7); -x_14 = x_117; -x_15 = x_116; -goto block_22; -} -} -else -{ -lean_object* x_118; lean_object* x_119; -lean_dec(x_88); -lean_dec(x_50); -lean_dec(x_32); -x_118 = lean_ctor_get(x_107, 0); -lean_inc(x_118); -x_119 = lean_ctor_get(x_107, 1); -lean_inc(x_119); -lean_dec(x_107); -x_35 = x_118; -x_36 = x_119; -goto block_46; -} -} -} -} -} -else -{ -uint8_t x_124; -lean_dec(x_32); +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; uint8_t x_54; lean_object* x_55; +x_44 = l_Lean_replaceRef(x_13, x_42); +lean_dec(x_42); lean_dec(x_13); -x_124 = !lean_is_exclusive(x_49); -if (x_124 == 0) -{ -lean_object* x_125; lean_object* x_126; uint8_t x_127; -x_125 = lean_ctor_get(x_49, 0); -x_126 = lean_ctor_get(x_49, 1); -x_127 = l_Lean_Exception_isInterrupt(x_125); -if (x_127 == 0) -{ -lean_object* x_128; -lean_free_object(x_49); -lean_inc(x_8); -x_128 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_125, x_8, x_9, x_126); -if (lean_obj_tag(x_128) == 0) -{ -lean_object* x_129; lean_object* x_130; -x_129 = lean_ctor_get(x_128, 1); -lean_inc(x_129); -lean_dec(x_128); -x_130 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_130, 0, x_7); -x_14 = x_130; -x_15 = x_129; -goto block_22; -} -else -{ -uint8_t x_131; -lean_dec(x_7); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -x_131 = !lean_is_exclusive(x_128); -if (x_131 == 0) -{ -return x_128; -} -else -{ -lean_object* x_132; lean_object* x_133; lean_object* x_134; -x_132 = lean_ctor_get(x_128, 0); -x_133 = lean_ctor_get(x_128, 1); -lean_inc(x_133); -lean_inc(x_132); -lean_dec(x_128); -x_134 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_134, 0, x_132); -lean_ctor_set(x_134, 1, x_133); -return x_134; -} -} -} -else -{ -lean_dec(x_7); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -return x_49; -} -} -else -{ -lean_object* x_135; lean_object* x_136; uint8_t x_137; -x_135 = lean_ctor_get(x_49, 0); -x_136 = lean_ctor_get(x_49, 1); -lean_inc(x_136); -lean_inc(x_135); -lean_dec(x_49); -x_137 = l_Lean_Exception_isInterrupt(x_135); -if (x_137 == 0) -{ -lean_object* x_138; -lean_inc(x_8); -x_138 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_135, x_8, x_9, x_136); -if (lean_obj_tag(x_138) == 0) -{ -lean_object* x_139; lean_object* x_140; -x_139 = lean_ctor_get(x_138, 1); -lean_inc(x_139); -lean_dec(x_138); -x_140 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_140, 0, x_7); -x_14 = x_140; -x_15 = x_139; -goto block_22; -} -else -{ -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; -lean_dec(x_7); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -x_141 = lean_ctor_get(x_138, 0); -lean_inc(x_141); -x_142 = lean_ctor_get(x_138, 1); -lean_inc(x_142); -if (lean_is_exclusive(x_138)) { - lean_ctor_release(x_138, 0); - lean_ctor_release(x_138, 1); - x_143 = x_138; -} else { - lean_dec_ref(x_138); - x_143 = lean_box(0); -} -if (lean_is_scalar(x_143)) { - x_144 = lean_alloc_ctor(1, 2, 0); -} else { - x_144 = x_143; -} -lean_ctor_set(x_144, 0, x_141); -lean_ctor_set(x_144, 1, x_142); -return x_144; -} -} -else -{ -lean_object* x_145; -lean_dec(x_7); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -x_145 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_145, 0, x_135); -lean_ctor_set(x_145, 1, x_136); -return x_145; -} -} -} -block_46: -{ -uint8_t x_37; -x_37 = l_Lean_Exception_isInterrupt(x_35); -if (x_37 == 0) -{ -lean_object* x_38; -lean_inc(x_8); -x_38 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_35, x_8, x_9, x_36); -if (lean_obj_tag(x_38) == 0) -{ -lean_object* x_39; lean_object* x_40; -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); -lean_dec(x_38); -x_40 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_40, 0, x_7); -x_14 = x_40; -x_15 = x_39; -goto block_22; -} -else -{ -uint8_t x_41; -lean_dec(x_7); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -x_41 = !lean_is_exclusive(x_38); +x_45 = lean_ctor_get(x_8, 0); +lean_inc(x_45); +x_46 = lean_ctor_get(x_8, 1); +lean_inc(x_46); +x_47 = lean_ctor_get(x_8, 2); +lean_inc(x_47); +x_48 = lean_ctor_get(x_8, 3); +lean_inc(x_48); +x_49 = lean_ctor_get(x_8, 4); +lean_inc(x_49); +x_50 = lean_ctor_get(x_8, 5); +lean_inc(x_50); +x_51 = lean_ctor_get(x_8, 7); +lean_inc(x_51); +x_52 = lean_ctor_get(x_8, 8); +lean_inc(x_52); +x_53 = lean_ctor_get(x_8, 9); +lean_inc(x_53); +x_54 = lean_ctor_get_uint8(x_8, sizeof(void*)*10); +x_55 = lean_alloc_ctor(0, 10, 1); +lean_ctor_set(x_55, 0, x_45); +lean_ctor_set(x_55, 1, x_46); +lean_ctor_set(x_55, 2, x_47); +lean_ctor_set(x_55, 3, x_48); +lean_ctor_set(x_55, 4, x_49); +lean_ctor_set(x_55, 5, x_50); +lean_ctor_set(x_55, 6, x_44); +lean_ctor_set(x_55, 7, x_51); +lean_ctor_set(x_55, 8, x_52); +lean_ctor_set(x_55, 9, x_53); +lean_ctor_set_uint8(x_55, sizeof(void*)*10, x_54); if (x_41 == 0) { -return x_38; -} -else -{ -lean_object* x_42; lean_object* x_43; lean_object* x_44; -x_42 = lean_ctor_get(x_38, 0); -x_43 = lean_ctor_get(x_38, 1); -lean_inc(x_43); -lean_inc(x_42); +lean_object* x_56; lean_dec(x_38); -x_44 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_44, 0, x_42); -lean_ctor_set(x_44, 1, x_43); -return x_44; -} -} -} -else -{ -lean_object* x_45; -lean_dec(x_7); -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); -x_45 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_45, 0, x_35); -lean_ctor_set(x_45, 1, x_36); -return x_45; -} -} -} -else -{ -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_162; lean_object* x_163; lean_object* x_164; -lean_dec(x_7); -x_146 = lean_array_fget(x_23, x_24); -x_147 = lean_unsigned_to_nat(1u); -x_148 = lean_nat_add(x_24, x_147); -lean_dec(x_24); -x_149 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_149, 0, x_23); -lean_ctor_set(x_149, 1, x_148); -lean_ctor_set(x_149, 2, x_25); -x_162 = lean_box(0); -lean_inc(x_13); -x_163 = lean_alloc_closure((void*)(l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo), 5, 2); -lean_closure_set(x_163, 0, x_13); -lean_closure_set(x_163, 1, x_162); -x_164 = l_Lean_Elab_Command_liftCoreM___rarg(x_163, x_8, x_9, x_10); -if (lean_obj_tag(x_164) == 0) -{ -lean_object* x_165; lean_object* x_166; lean_object* x_167; uint8_t x_168; lean_object* x_169; uint8_t x_170; -x_165 = lean_ctor_get(x_164, 0); -lean_inc(x_165); -x_166 = lean_ctor_get(x_164, 1); -lean_inc(x_166); -lean_dec(x_164); -x_167 = lean_array_get_size(x_2); -x_168 = lean_nat_dec_eq(x_167, x_147); -x_169 = l_Lean_Elab_Command_getRef(x_8, x_9, x_166); -if (x_168 == 0) -{ -uint8_t x_236; -x_236 = 0; -x_170 = x_236; -goto block_235; -} -else -{ -if (lean_obj_tag(x_146) == 0) -{ -uint8_t x_237; -x_237 = 1; -x_170 = x_237; -goto block_235; -} -else -{ -uint8_t x_238; -x_238 = 0; -x_170 = x_238; -goto block_235; -} -} -block_235: -{ -if (x_170 == 0) -{ -lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; uint8_t x_183; lean_object* x_184; lean_object* x_185; -lean_dec(x_167); -x_171 = lean_ctor_get(x_169, 0); -lean_inc(x_171); -x_172 = lean_ctor_get(x_169, 1); -lean_inc(x_172); -lean_dec(x_169); -x_173 = l_Lean_replaceRef(x_13, x_171); -lean_dec(x_171); -lean_dec(x_13); -x_174 = lean_ctor_get(x_8, 0); -lean_inc(x_174); -x_175 = lean_ctor_get(x_8, 1); -lean_inc(x_175); -x_176 = lean_ctor_get(x_8, 2); -lean_inc(x_176); -x_177 = lean_ctor_get(x_8, 3); -lean_inc(x_177); -x_178 = lean_ctor_get(x_8, 4); -lean_inc(x_178); -x_179 = lean_ctor_get(x_8, 5); -lean_inc(x_179); -x_180 = lean_ctor_get(x_8, 7); -lean_inc(x_180); -x_181 = lean_ctor_get(x_8, 8); -lean_inc(x_181); -x_182 = lean_ctor_get(x_8, 9); -lean_inc(x_182); -x_183 = lean_ctor_get_uint8(x_8, sizeof(void*)*10); -x_184 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_184, 0, x_174); -lean_ctor_set(x_184, 1, x_175); -lean_ctor_set(x_184, 2, x_176); -lean_ctor_set(x_184, 3, x_177); -lean_ctor_set(x_184, 4, x_178); -lean_ctor_set(x_184, 5, x_179); -lean_ctor_set(x_184, 6, x_173); -lean_ctor_set(x_184, 7, x_180); -lean_ctor_set(x_184, 8, x_181); -lean_ctor_set(x_184, 9, x_182); -lean_ctor_set_uint8(x_184, sizeof(void*)*10, x_183); lean_inc(x_9); lean_inc(x_2); -x_185 = l_Lean_Elab_applyDerivingHandlers(x_165, x_2, x_146, x_184, x_9, x_172); -if (lean_obj_tag(x_185) == 0) +x_56 = l_Lean_Elab_applyDerivingHandlers(x_36, x_2, x_55, x_9, x_43); +if (lean_obj_tag(x_56) == 0) { -lean_object* x_186; lean_object* x_187; -x_186 = lean_ctor_get(x_185, 1); -lean_inc(x_186); -lean_dec(x_185); -x_187 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_187, 0, x_149); -x_14 = x_187; -x_15 = x_186; -goto block_22; +lean_object* x_57; lean_object* x_58; +x_57 = lean_ctor_get(x_56, 1); +lean_inc(x_57); +lean_dec(x_56); +x_58 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_58; +x_15 = x_57; +goto block_20; } else { -lean_object* x_188; lean_object* x_189; -x_188 = lean_ctor_get(x_185, 0); -lean_inc(x_188); -x_189 = lean_ctor_get(x_185, 1); -lean_inc(x_189); -lean_dec(x_185); -x_150 = x_188; -x_151 = x_189; -goto block_161; +lean_object* x_59; lean_object* x_60; +x_59 = lean_ctor_get(x_56, 0); +lean_inc(x_59); +x_60 = lean_ctor_get(x_56, 1); +lean_inc(x_60); +lean_dec(x_56); +x_21 = x_59; +x_22 = x_60; +goto block_32; } } else { -lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; uint8_t x_202; lean_object* x_203; lean_object* x_204; uint8_t x_205; -x_190 = lean_ctor_get(x_169, 0); -lean_inc(x_190); -x_191 = lean_ctor_get(x_169, 1); -lean_inc(x_191); -lean_dec(x_169); -x_192 = l_Lean_replaceRef(x_13, x_190); -lean_dec(x_190); -lean_dec(x_13); -x_193 = lean_ctor_get(x_8, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_8, 1); -lean_inc(x_194); -x_195 = lean_ctor_get(x_8, 2); -lean_inc(x_195); -x_196 = lean_ctor_get(x_8, 3); -lean_inc(x_196); -x_197 = lean_ctor_get(x_8, 4); -lean_inc(x_197); -x_198 = lean_ctor_get(x_8, 5); -lean_inc(x_198); -x_199 = lean_ctor_get(x_8, 7); -lean_inc(x_199); -x_200 = lean_ctor_get(x_8, 8); -lean_inc(x_200); -x_201 = lean_ctor_get(x_8, 9); -lean_inc(x_201); -x_202 = lean_ctor_get_uint8(x_8, sizeof(void*)*10); -x_203 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_203, 0, x_193); -lean_ctor_set(x_203, 1, x_194); -lean_ctor_set(x_203, 2, x_195); -lean_ctor_set(x_203, 3, x_196); -lean_ctor_set(x_203, 4, x_197); -lean_ctor_set(x_203, 5, x_198); -lean_ctor_set(x_203, 6, x_192); -lean_ctor_set(x_203, 7, x_199); -lean_ctor_set(x_203, 8, x_200); -lean_ctor_set(x_203, 9, x_201); -lean_ctor_set_uint8(x_203, sizeof(void*)*10, x_202); -x_204 = lean_unsigned_to_nat(0u); -x_205 = lean_nat_dec_lt(x_204, x_167); -lean_dec(x_167); -if (x_205 == 0) +lean_object* x_61; uint8_t x_62; +x_61 = lean_unsigned_to_nat(0u); +x_62 = lean_nat_dec_lt(x_61, x_38); +lean_dec(x_38); +if (x_62 == 0) { -lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_206 = l_Lean_instInhabitedName; -x_207 = l_outOfBounds___rarg(x_206); -lean_inc(x_165); -x_208 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler(x_165, x_207, x_203, x_9, x_191); -if (lean_obj_tag(x_208) == 0) +lean_object* x_63; lean_object* x_64; lean_object* x_65; +x_63 = l_Lean_instInhabitedName; +x_64 = l_outOfBounds___rarg(x_63); +lean_inc(x_36); +x_65 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler(x_36, x_64, x_55, x_9, x_43); +if (lean_obj_tag(x_65) == 0) { -lean_object* x_209; uint8_t x_210; -x_209 = lean_ctor_get(x_208, 0); -lean_inc(x_209); -x_210 = lean_unbox(x_209); -lean_dec(x_209); -if (x_210 == 0) +lean_object* x_66; uint8_t x_67; +x_66 = lean_ctor_get(x_65, 0); +lean_inc(x_66); +x_67 = lean_unbox(x_66); +lean_dec(x_66); +if (x_67 == 0) { -lean_object* x_211; lean_object* x_212; -x_211 = lean_ctor_get(x_208, 1); -lean_inc(x_211); -lean_dec(x_208); +lean_object* x_68; lean_object* x_69; +x_68 = lean_ctor_get(x_65, 1); +lean_inc(x_68); +lean_dec(x_65); lean_inc(x_9); lean_inc(x_2); -x_212 = l_Lean_Elab_applyDerivingHandlers(x_165, x_2, x_146, x_203, x_9, x_211); -if (lean_obj_tag(x_212) == 0) +x_69 = l_Lean_Elab_applyDerivingHandlers(x_36, x_2, x_55, x_9, x_68); +if (lean_obj_tag(x_69) == 0) { -lean_object* x_213; lean_object* x_214; -x_213 = lean_ctor_get(x_212, 1); -lean_inc(x_213); -lean_dec(x_212); -x_214 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_214, 0, x_149); -x_14 = x_214; -x_15 = x_213; -goto block_22; +lean_object* x_70; lean_object* x_71; +x_70 = lean_ctor_get(x_69, 1); +lean_inc(x_70); +lean_dec(x_69); +x_71 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_71; +x_15 = x_70; +goto block_20; } else { -lean_object* x_215; lean_object* x_216; -x_215 = lean_ctor_get(x_212, 0); -lean_inc(x_215); -x_216 = lean_ctor_get(x_212, 1); -lean_inc(x_216); -lean_dec(x_212); -x_150 = x_215; -x_151 = x_216; -goto block_161; +lean_object* x_72; lean_object* x_73; +x_72 = lean_ctor_get(x_69, 0); +lean_inc(x_72); +x_73 = lean_ctor_get(x_69, 1); +lean_inc(x_73); +lean_dec(x_69); +x_21 = x_72; +x_22 = x_73; +goto block_32; } } else { -lean_object* x_217; lean_object* x_218; -lean_dec(x_203); -lean_dec(x_165); -lean_dec(x_146); -x_217 = lean_ctor_get(x_208, 1); -lean_inc(x_217); -lean_dec(x_208); -x_218 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_218, 0, x_149); -x_14 = x_218; -x_15 = x_217; -goto block_22; +lean_object* x_74; lean_object* x_75; +lean_dec(x_55); +lean_dec(x_36); +x_74 = lean_ctor_get(x_65, 1); +lean_inc(x_74); +lean_dec(x_65); +x_75 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_75; +x_15 = x_74; +goto block_20; } } else { -lean_object* x_219; lean_object* x_220; -lean_dec(x_203); -lean_dec(x_165); -lean_dec(x_146); -x_219 = lean_ctor_get(x_208, 0); -lean_inc(x_219); -x_220 = lean_ctor_get(x_208, 1); -lean_inc(x_220); -lean_dec(x_208); -x_150 = x_219; -x_151 = x_220; -goto block_161; +lean_object* x_76; lean_object* x_77; +lean_dec(x_55); +lean_dec(x_36); +x_76 = lean_ctor_get(x_65, 0); +lean_inc(x_76); +x_77 = lean_ctor_get(x_65, 1); +lean_inc(x_77); +lean_dec(x_65); +x_21 = x_76; +x_22 = x_77; +goto block_32; } } else { -lean_object* x_221; lean_object* x_222; -x_221 = lean_array_fget(x_2, x_204); -lean_inc(x_165); -x_222 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler(x_165, x_221, x_203, x_9, x_191); -if (lean_obj_tag(x_222) == 0) +lean_object* x_78; lean_object* x_79; +x_78 = lean_array_fget(x_2, x_61); +lean_inc(x_36); +x_79 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_tryApplyDefHandler(x_36, x_78, x_55, x_9, x_43); +if (lean_obj_tag(x_79) == 0) { -lean_object* x_223; uint8_t x_224; -x_223 = lean_ctor_get(x_222, 0); -lean_inc(x_223); -x_224 = lean_unbox(x_223); -lean_dec(x_223); -if (x_224 == 0) +lean_object* x_80; uint8_t x_81; +x_80 = lean_ctor_get(x_79, 0); +lean_inc(x_80); +x_81 = lean_unbox(x_80); +lean_dec(x_80); +if (x_81 == 0) { -lean_object* x_225; lean_object* x_226; -x_225 = lean_ctor_get(x_222, 1); -lean_inc(x_225); -lean_dec(x_222); +lean_object* x_82; lean_object* x_83; +x_82 = lean_ctor_get(x_79, 1); +lean_inc(x_82); +lean_dec(x_79); lean_inc(x_9); lean_inc(x_2); -x_226 = l_Lean_Elab_applyDerivingHandlers(x_165, x_2, x_146, x_203, x_9, x_225); -if (lean_obj_tag(x_226) == 0) +x_83 = l_Lean_Elab_applyDerivingHandlers(x_36, x_2, x_55, x_9, x_82); +if (lean_obj_tag(x_83) == 0) { -lean_object* x_227; lean_object* x_228; -x_227 = lean_ctor_get(x_226, 1); -lean_inc(x_227); -lean_dec(x_226); -x_228 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_228, 0, x_149); -x_14 = x_228; -x_15 = x_227; -goto block_22; +lean_object* x_84; lean_object* x_85; +x_84 = lean_ctor_get(x_83, 1); +lean_inc(x_84); +lean_dec(x_83); +x_85 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_85; +x_15 = x_84; +goto block_20; } else { -lean_object* x_229; lean_object* x_230; -x_229 = lean_ctor_get(x_226, 0); -lean_inc(x_229); -x_230 = lean_ctor_get(x_226, 1); -lean_inc(x_230); -lean_dec(x_226); -x_150 = x_229; -x_151 = x_230; -goto block_161; +lean_object* x_86; lean_object* x_87; +x_86 = lean_ctor_get(x_83, 0); +lean_inc(x_86); +x_87 = lean_ctor_get(x_83, 1); +lean_inc(x_87); +lean_dec(x_83); +x_21 = x_86; +x_22 = x_87; +goto block_32; } } else { -lean_object* x_231; lean_object* x_232; -lean_dec(x_203); -lean_dec(x_165); -lean_dec(x_146); -x_231 = lean_ctor_get(x_222, 1); -lean_inc(x_231); -lean_dec(x_222); -x_232 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_232, 0, x_149); -x_14 = x_232; -x_15 = x_231; -goto block_22; +lean_object* x_88; lean_object* x_89; +lean_dec(x_55); +lean_dec(x_36); +x_88 = lean_ctor_get(x_79, 1); +lean_inc(x_88); +lean_dec(x_79); +x_89 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_89; +x_15 = x_88; +goto block_20; } } else { -lean_object* x_233; lean_object* x_234; -lean_dec(x_203); -lean_dec(x_165); -lean_dec(x_146); -x_233 = lean_ctor_get(x_222, 0); -lean_inc(x_233); -x_234 = lean_ctor_get(x_222, 1); -lean_inc(x_234); -lean_dec(x_222); -x_150 = x_233; -x_151 = x_234; -goto block_161; +lean_object* x_90; lean_object* x_91; +lean_dec(x_55); +lean_dec(x_36); +x_90 = lean_ctor_get(x_79, 0); +lean_inc(x_90); +x_91 = lean_ctor_get(x_79, 1); +lean_inc(x_91); +lean_dec(x_79); +x_21 = x_90; +x_22 = x_91; +goto block_32; } } } @@ -5621,276 +4833,207 @@ goto block_161; } else { -lean_object* x_239; lean_object* x_240; lean_object* x_241; uint8_t x_242; -lean_dec(x_146); +uint8_t x_100; lean_dec(x_13); -x_239 = lean_ctor_get(x_164, 0); -lean_inc(x_239); -x_240 = lean_ctor_get(x_164, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_164)) { - lean_ctor_release(x_164, 0); - lean_ctor_release(x_164, 1); - x_241 = x_164; -} else { - lean_dec_ref(x_164); - x_241 = lean_box(0); -} -x_242 = l_Lean_Exception_isInterrupt(x_239); -if (x_242 == 0) +x_100 = !lean_is_exclusive(x_35); +if (x_100 == 0) { -lean_object* x_243; -lean_dec(x_241); +lean_object* x_101; lean_object* x_102; uint8_t x_103; +x_101 = lean_ctor_get(x_35, 0); +x_102 = lean_ctor_get(x_35, 1); +x_103 = l_Lean_Exception_isInterrupt(x_101); +if (x_103 == 0) +{ +lean_object* x_104; +lean_free_object(x_35); lean_inc(x_8); -x_243 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_239, x_8, x_9, x_240); -if (lean_obj_tag(x_243) == 0) +x_104 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_101, x_8, x_9, x_102); +if (lean_obj_tag(x_104) == 0) { -lean_object* x_244; lean_object* x_245; -x_244 = lean_ctor_get(x_243, 1); -lean_inc(x_244); -lean_dec(x_243); -x_245 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_245, 0, x_149); -x_14 = x_245; -x_15 = x_244; -goto block_22; +lean_object* x_105; lean_object* x_106; +x_105 = lean_ctor_get(x_104, 1); +lean_inc(x_105); +lean_dec(x_104); +x_106 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_106; +x_15 = x_105; +goto block_20; } else { -lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; -lean_dec(x_149); +uint8_t x_107; lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); -x_246 = lean_ctor_get(x_243, 0); -lean_inc(x_246); -x_247 = lean_ctor_get(x_243, 1); -lean_inc(x_247); -if (lean_is_exclusive(x_243)) { - lean_ctor_release(x_243, 0); - lean_ctor_release(x_243, 1); - x_248 = x_243; -} else { - lean_dec_ref(x_243); - x_248 = lean_box(0); +x_107 = !lean_is_exclusive(x_104); +if (x_107 == 0) +{ +return x_104; } -if (lean_is_scalar(x_248)) { - x_249 = lean_alloc_ctor(1, 2, 0); -} else { - x_249 = x_248; +else +{ +lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_108 = lean_ctor_get(x_104, 0); +x_109 = lean_ctor_get(x_104, 1); +lean_inc(x_109); +lean_inc(x_108); +lean_dec(x_104); +x_110 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_110, 0, x_108); +lean_ctor_set(x_110, 1, x_109); +return x_110; } -lean_ctor_set(x_249, 0, x_246); -lean_ctor_set(x_249, 1, x_247); -return x_249; } } else { -lean_object* x_250; -lean_dec(x_149); lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); -if (lean_is_scalar(x_241)) { - x_250 = lean_alloc_ctor(1, 2, 0); -} else { - x_250 = x_241; -} -lean_ctor_set(x_250, 0, x_239); -lean_ctor_set(x_250, 1, x_240); -return x_250; +return x_35; } } -block_161: +else { -uint8_t x_152; -x_152 = l_Lean_Exception_isInterrupt(x_150); -if (x_152 == 0) +lean_object* x_111; lean_object* x_112; uint8_t x_113; +x_111 = lean_ctor_get(x_35, 0); +x_112 = lean_ctor_get(x_35, 1); +lean_inc(x_112); +lean_inc(x_111); +lean_dec(x_35); +x_113 = l_Lean_Exception_isInterrupt(x_111); +if (x_113 == 0) { -lean_object* x_153; +lean_object* x_114; lean_inc(x_8); -x_153 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_150, x_8, x_9, x_151); -if (lean_obj_tag(x_153) == 0) +x_114 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_111, x_8, x_9, x_112); +if (lean_obj_tag(x_114) == 0) { -lean_object* x_154; lean_object* x_155; -x_154 = lean_ctor_get(x_153, 1); -lean_inc(x_154); -lean_dec(x_153); -x_155 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_155, 0, x_149); -x_14 = x_155; -x_15 = x_154; -goto block_22; +lean_object* x_115; lean_object* x_116; +x_115 = lean_ctor_get(x_114, 1); +lean_inc(x_115); +lean_dec(x_114); +x_116 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_116; +x_15 = x_115; +goto block_20; } else { -lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; -lean_dec(x_149); +lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); -x_156 = lean_ctor_get(x_153, 0); -lean_inc(x_156); -x_157 = lean_ctor_get(x_153, 1); -lean_inc(x_157); -if (lean_is_exclusive(x_153)) { - lean_ctor_release(x_153, 0); - lean_ctor_release(x_153, 1); - x_158 = x_153; +x_117 = lean_ctor_get(x_114, 0); +lean_inc(x_117); +x_118 = lean_ctor_get(x_114, 1); +lean_inc(x_118); +if (lean_is_exclusive(x_114)) { + lean_ctor_release(x_114, 0); + lean_ctor_release(x_114, 1); + x_119 = x_114; } else { - lean_dec_ref(x_153); - x_158 = lean_box(0); + lean_dec_ref(x_114); + x_119 = lean_box(0); } -if (lean_is_scalar(x_158)) { - x_159 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_119)) { + x_120 = lean_alloc_ctor(1, 2, 0); } else { - x_159 = x_158; + x_120 = x_119; } -lean_ctor_set(x_159, 0, x_156); -lean_ctor_set(x_159, 1, x_157); -return x_159; +lean_ctor_set(x_120, 0, x_117); +lean_ctor_set(x_120, 1, x_118); +return x_120; } } else { -lean_object* x_160; -lean_dec(x_149); +lean_object* x_121; lean_dec(x_9); lean_dec(x_8); lean_dec(x_2); -x_160 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_160, 0, x_150); -lean_ctor_set(x_160, 1, x_151); -return x_160; +x_121 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_121, 0, x_111); +lean_ctor_set(x_121, 1, x_112); +return x_121; } } } -} -block_22: +block_20: { -if (lean_obj_tag(x_14) == 0) -{ -lean_object* x_16; lean_object* x_17; -lean_dec(x_9); -lean_dec(x_8); -lean_dec(x_2); +lean_object* x_16; size_t x_17; size_t x_18; x_16 = lean_ctor_get(x_14, 0); lean_inc(x_16); lean_dec(x_14); -x_17 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -return x_17; -} -else -{ -lean_object* x_18; size_t x_19; size_t x_20; -x_18 = lean_ctor_get(x_14, 0); -lean_inc(x_18); -lean_dec(x_14); -x_19 = 1; -x_20 = lean_usize_add(x_6, x_19); -x_6 = x_20; -x_7 = x_18; +x_17 = 1; +x_18 = lean_usize_add(x_6, x_17); +x_6 = x_18; +x_7 = x_16; x_10 = x_15; goto _start; } -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: +block_32: { -lean_object* x_4; lean_object* x_5; -x_4 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_4, 0, x_1); -lean_ctor_set(x_4, 1, x_3); -x_5 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_5, 0, x_4); -return x_5; -} -} -static lean_object* _init_l_Lean_Elab_elabDeriving___lambda__2___closed__1() { -_start: +uint8_t x_23; +x_23 = l_Lean_Exception_isInterrupt(x_21); +if (x_23 == 0) { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("group", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_elabDeriving___lambda__2___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Elab_elabDeriving___lambda__2___closed__1; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; uint8_t x_3; -x_2 = l_Lean_Elab_elabDeriving___lambda__2___closed__2; -lean_inc(x_1); -x_3 = l_Lean_Syntax_isOfKind(x_1, x_2); -if (x_3 == 0) -{ -lean_object* x_4; -lean_dec(x_1); -x_4 = lean_box(0); -return x_4; -} -else -{ -lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; -x_5 = lean_unsigned_to_nat(0u); -x_6 = l_Lean_Syntax_getArg(x_1, x_5); -x_7 = lean_unsigned_to_nat(1u); -x_8 = l_Lean_Syntax_getArg(x_1, x_7); -lean_dec(x_1); -x_9 = l_Lean_Syntax_isNone(x_8); -if (x_9 == 0) -{ -lean_object* x_10; uint8_t x_11; -x_10 = lean_unsigned_to_nat(2u); +lean_object* x_24; lean_inc(x_8); -x_11 = l_Lean_Syntax_matchesNull(x_8, x_10); -if (x_11 == 0) +x_24 = l_Lean_Elab_logException___at_Lean_Elab_Command_runLinters___spec__1(x_21, x_8, x_9, x_22); +if (lean_obj_tag(x_24) == 0) { -lean_object* x_12; -lean_dec(x_8); -lean_dec(x_6); -x_12 = lean_box(0); -return x_12; +lean_object* x_25; lean_object* x_26; +x_25 = lean_ctor_get(x_24, 1); +lean_inc(x_25); +lean_dec(x_24); +x_26 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1; +x_14 = x_26; +x_15 = x_25; +goto block_20; } else { -lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; -x_13 = l_Lean_Syntax_getArg(x_8, x_7); +uint8_t x_27; +lean_dec(x_9); lean_dec(x_8); -x_14 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_14, 0, x_13); -x_15 = lean_box(0); -x_16 = l_Lean_Elab_elabDeriving___lambda__1(x_6, x_15, x_14); -return x_16; +lean_dec(x_2); +x_27 = !lean_is_exclusive(x_24); +if (x_27 == 0) +{ +return x_24; +} +else +{ +lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_28 = lean_ctor_get(x_24, 0); +x_29 = lean_ctor_get(x_24, 1); +lean_inc(x_29); +lean_inc(x_28); +lean_dec(x_24); +x_30 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_30, 0, x_28); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} } } else { -lean_object* x_17; lean_object* x_18; lean_object* x_19; +lean_object* x_31; +lean_dec(x_9); lean_dec(x_8); -x_17 = lean_box(0); -x_18 = lean_box(0); -x_19 = l_Lean_Elab_elabDeriving___lambda__1(x_6, x_18, x_17); -return x_19; +lean_dec(x_2); +x_31 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_31, 0, x_21); +lean_ctor_set(x_31, 1, x_22); +return x_31; } } } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__3(lean_object* x_1) { +} +LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__1(lean_object* x_1) { _start: { lean_object* x_2; @@ -5969,15 +5112,7 @@ static lean_object* _init_l_Lean_Elab_elabDeriving___closed__8() { _start: { lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_elabDeriving___lambda__2), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_elabDeriving___closed__9() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_elabDeriving___lambda__3), 1, 0); +x_1 = lean_alloc_closure((void*)(l_Lean_Elab_elabDeriving___lambda__1), 1, 0); return x_1; } } @@ -6018,43 +5153,43 @@ x_12 = lean_unsigned_to_nat(0u); x_13 = lean_nat_dec_lt(x_12, x_11); if (x_13 == 0) { -lean_object* x_68; +lean_object* x_62; lean_dec(x_11); lean_dec(x_10); -x_68 = l_Lean_Elab_elabDeriving___closed__6; -x_14 = x_68; -goto block_67; +x_62 = l_Lean_Elab_elabDeriving___closed__6; +x_14 = x_62; +goto block_61; } else { -uint8_t x_69; -x_69 = lean_nat_dec_le(x_11, x_11); -if (x_69 == 0) +uint8_t x_63; +x_63 = lean_nat_dec_le(x_11, x_11); +if (x_63 == 0) { -lean_object* x_70; +lean_object* x_64; lean_dec(x_11); lean_dec(x_10); -x_70 = l_Lean_Elab_elabDeriving___closed__6; -x_14 = x_70; -goto block_67; +x_64 = l_Lean_Elab_elabDeriving___closed__6; +x_14 = x_64; +goto block_61; } else { -size_t x_71; size_t x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; -x_71 = 0; -x_72 = lean_usize_of_nat(x_11); +size_t x_65; size_t x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; +x_65 = 0; +x_66 = lean_usize_of_nat(x_11); lean_dec(x_11); -x_73 = l_Lean_Elab_elabDeriving___closed__7; -x_74 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_10, x_71, x_72, x_73); +x_67 = l_Lean_Elab_elabDeriving___closed__7; +x_68 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_10, x_65, x_66, x_67); lean_dec(x_10); -x_75 = lean_ctor_get(x_74, 1); -lean_inc(x_75); -lean_dec(x_74); -x_14 = x_75; -goto block_67; +x_69 = lean_ctor_get(x_68, 1); +lean_inc(x_69); +lean_dec(x_68); +x_14 = x_69; +goto block_61; } } -block_67: +block_61: { lean_object* x_15; lean_object* x_16; x_15 = l_Lean_Elab_elabDeriving___closed__8; @@ -6071,176 +5206,167 @@ return x_17; } else { -lean_object* x_18; size_t x_19; size_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; uint8_t x_27; lean_object* x_28; +lean_object* x_18; lean_object* x_19; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; uint8_t x_52; x_18 = lean_ctor_get(x_16, 0); lean_inc(x_18); lean_dec(x_16); -x_19 = lean_array_size(x_18); -x_20 = 0; -lean_inc(x_18); -x_21 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(x_19, x_20, x_18); -x_22 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5(x_19, x_20, x_18); -x_23 = lean_unsigned_to_nat(4u); -x_24 = l_Lean_Syntax_getArg(x_1, x_23); +x_48 = lean_unsigned_to_nat(4u); +x_49 = l_Lean_Syntax_getArg(x_1, x_48); lean_dec(x_1); -x_25 = l_Lean_Syntax_getArgs(x_24); -lean_dec(x_24); -x_26 = lean_array_get_size(x_25); -x_27 = lean_nat_dec_lt(x_12, x_26); -if (x_27 == 0) +x_50 = l_Lean_Syntax_getArgs(x_49); +lean_dec(x_49); +x_51 = lean_array_get_size(x_50); +x_52 = lean_nat_dec_lt(x_12, x_51); +if (x_52 == 0) { -lean_object* x_60; -lean_dec(x_26); -lean_dec(x_25); -x_60 = l_Lean_Elab_elabDeriving___closed__6; -x_28 = x_60; -goto block_59; +lean_object* x_53; +lean_dec(x_51); +lean_dec(x_50); +x_53 = l_Lean_Elab_elabDeriving___closed__6; +x_19 = x_53; +goto block_47; } else { -uint8_t x_61; -x_61 = lean_nat_dec_le(x_26, x_26); -if (x_61 == 0) +uint8_t x_54; +x_54 = lean_nat_dec_le(x_51, x_51); +if (x_54 == 0) { -lean_object* x_62; -lean_dec(x_26); -lean_dec(x_25); -x_62 = l_Lean_Elab_elabDeriving___closed__6; -x_28 = x_62; -goto block_59; +lean_object* x_55; +lean_dec(x_51); +lean_dec(x_50); +x_55 = l_Lean_Elab_elabDeriving___closed__6; +x_19 = x_55; +goto block_47; } else { -size_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; -x_63 = lean_usize_of_nat(x_26); -lean_dec(x_26); -x_64 = l_Lean_Elab_elabDeriving___closed__7; -x_65 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_25, x_20, x_63, x_64); -lean_dec(x_25); -x_66 = lean_ctor_get(x_65, 1); -lean_inc(x_66); -lean_dec(x_65); -x_28 = x_66; -goto block_59; +size_t x_56; size_t x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; +x_56 = 0; +x_57 = lean_usize_of_nat(x_51); +lean_dec(x_51); +x_58 = l_Lean_Elab_elabDeriving___closed__7; +x_59 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_50, x_56, x_57, x_58); +lean_dec(x_50); +x_60 = lean_ctor_get(x_59, 1); +lean_inc(x_60); +lean_dec(x_59); +x_19 = x_60; +goto block_47; } } -block_59: +block_47: { -lean_object* x_29; lean_object* x_30; -x_29 = l_Lean_Elab_elabDeriving___closed__9; -x_30 = l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__6(x_28, x_29); +lean_object* x_20; +x_20 = l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__2(x_19, x_15); +lean_dec(x_19); +if (lean_obj_tag(x_20) == 0) +{ +lean_object* x_21; +lean_dec(x_18); +lean_dec(x_3); +lean_dec(x_2); +x_21 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabDeriving___spec__1___rarg(x_4); +return x_21; +} +else +{ +lean_object* x_22; size_t x_23; size_t x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; +x_22 = lean_ctor_get(x_20, 0); +lean_inc(x_22); +lean_dec(x_20); +x_23 = lean_array_size(x_22); +x_24 = 0; +x_25 = lean_box_usize(x_23); +x_26 = l_Lean_Elab_elabDeriving___boxed__const__1; +x_27 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4___boxed), 6, 3); +lean_closure_set(x_27, 0, x_25); +lean_closure_set(x_27, 1, x_26); +lean_closure_set(x_27, 2, x_22); +x_28 = l_Lean_Elab_Command_liftCoreM___rarg(x_27, x_2, x_3, x_4); +if (lean_obj_tag(x_28) == 0) +{ +lean_object* x_29; lean_object* x_30; lean_object* x_31; size_t x_32; lean_object* x_33; lean_object* x_34; +x_29 = lean_ctor_get(x_28, 0); +lean_inc(x_29); +x_30 = lean_ctor_get(x_28, 1); +lean_inc(x_30); lean_dec(x_28); -if (lean_obj_tag(x_30) == 0) +x_31 = lean_box(0); +x_32 = lean_array_size(x_18); +x_33 = lean_box(0); +x_34 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5(x_18, x_29, x_31, x_18, x_32, x_24, x_33, x_2, x_3, x_30); +lean_dec(x_18); +if (lean_obj_tag(x_34) == 0) { -lean_object* x_31; -lean_dec(x_22); -lean_dec(x_21); +uint8_t x_35; +x_35 = !lean_is_exclusive(x_34); +if (x_35 == 0) +{ +lean_object* x_36; +x_36 = lean_ctor_get(x_34, 0); +lean_dec(x_36); +lean_ctor_set(x_34, 0, x_33); +return x_34; +} +else +{ +lean_object* x_37; lean_object* x_38; +x_37 = lean_ctor_get(x_34, 1); +lean_inc(x_37); +lean_dec(x_34); +x_38 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_38, 0, x_33); +lean_ctor_set(x_38, 1, x_37); +return x_38; +} +} +else +{ +uint8_t x_39; +x_39 = !lean_is_exclusive(x_34); +if (x_39 == 0) +{ +return x_34; +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = lean_ctor_get(x_34, 0); +x_41 = lean_ctor_get(x_34, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_34); +x_42 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +return x_42; +} +} +} +else +{ +uint8_t x_43; +lean_dec(x_18); lean_dec(x_3); lean_dec(x_2); -x_31 = l_Lean_Elab_throwUnsupportedSyntax___at_Lean_Elab_elabDeriving___spec__1___rarg(x_4); -return x_31; +x_43 = !lean_is_exclusive(x_28); +if (x_43 == 0) +{ +return x_28; } else { -lean_object* x_32; size_t x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; -x_32 = lean_ctor_get(x_30, 0); -lean_inc(x_32); -lean_dec(x_30); -x_33 = lean_array_size(x_32); -x_34 = lean_box_usize(x_33); -x_35 = l_Lean_Elab_elabDeriving___boxed__const__1; -x_36 = lean_alloc_closure((void*)(l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__8___boxed), 6, 3); -lean_closure_set(x_36, 0, x_34); -lean_closure_set(x_36, 1, x_35); -lean_closure_set(x_36, 2, x_32); -x_37 = l_Lean_Elab_Command_liftCoreM___rarg(x_36, x_2, x_3, x_4); -if (lean_obj_tag(x_37) == 0) -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; size_t x_43; lean_object* x_44; -x_38 = lean_ctor_get(x_37, 0); -lean_inc(x_38); -x_39 = lean_ctor_get(x_37, 1); -lean_inc(x_39); -lean_dec(x_37); -x_40 = lean_array_get_size(x_21); -x_41 = l_Array_toSubarray___rarg(x_21, x_12, x_40); -x_42 = lean_box(0); -x_43 = lean_array_size(x_22); -x_44 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9(x_22, x_38, x_42, x_22, x_43, x_20, x_41, x_2, x_3, x_39); -lean_dec(x_22); -if (lean_obj_tag(x_44) == 0) -{ -uint8_t x_45; -x_45 = !lean_is_exclusive(x_44); -if (x_45 == 0) -{ -lean_object* x_46; lean_object* x_47; -x_46 = lean_ctor_get(x_44, 0); -lean_dec(x_46); -x_47 = lean_box(0); -lean_ctor_set(x_44, 0, x_47); -return x_44; -} -else -{ -lean_object* x_48; lean_object* x_49; lean_object* x_50; -x_48 = lean_ctor_get(x_44, 1); -lean_inc(x_48); -lean_dec(x_44); -x_49 = lean_box(0); -x_50 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_50, 0, x_49); -lean_ctor_set(x_50, 1, x_48); -return x_50; -} -} -else -{ -uint8_t x_51; -x_51 = !lean_is_exclusive(x_44); -if (x_51 == 0) -{ -return x_44; -} -else -{ -lean_object* x_52; lean_object* x_53; lean_object* x_54; -x_52 = lean_ctor_get(x_44, 0); -x_53 = lean_ctor_get(x_44, 1); -lean_inc(x_53); -lean_inc(x_52); -lean_dec(x_44); -x_54 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_54, 0, x_52); -lean_ctor_set(x_54, 1, x_53); -return x_54; -} -} -} -else -{ -uint8_t x_55; -lean_dec(x_22); -lean_dec(x_21); -lean_dec(x_3); -lean_dec(x_2); -x_55 = !lean_is_exclusive(x_37); -if (x_55 == 0) -{ -return x_37; -} -else -{ -lean_object* x_56; lean_object* x_57; lean_object* x_58; -x_56 = lean_ctor_get(x_37, 0); -x_57 = lean_ctor_get(x_37, 1); -lean_inc(x_57); -lean_inc(x_56); -lean_dec(x_37); -x_58 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_58, 0, x_56); -lean_ctor_set(x_58, 1, x_57); -return x_58; +lean_object* x_44; lean_object* x_45; lean_object* x_46; +x_44 = lean_ctor_get(x_28, 0); +x_45 = lean_ctor_get(x_28, 1); +lean_inc(x_45); +lean_inc(x_44); +lean_dec(x_28); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_44); +lean_ctor_set(x_46, 1, x_45); +return x_46; } } } @@ -6278,49 +5404,7 @@ lean_dec(x_1); return x_3; } } -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(x_4, x_5, x_3); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -size_t x_4; size_t x_5; lean_object* x_6; -x_4 = lean_unbox_usize(x_1); -lean_dec(x_1); -x_5 = lean_unbox_usize(x_2); -lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5(x_4, x_5, x_3); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__7___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { -_start: -{ -lean_object* x_6; -x_6 = l_Array_sequenceMap_loop___at_Lean_Elab_elabDeriving___spec__7(x_1, x_2, x_3, x_4, x_5); -lean_dec(x_1); -return x_6; -} -} -LEAN_EXPORT lean_object* l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__6___boxed(lean_object* x_1, lean_object* x_2) { -_start: -{ -lean_object* x_3; -x_3 = l_Array_sequenceMap___at_Lean_Elab_elabDeriving___spec__6(x_1, x_2); -lean_dec(x_1); -return x_3; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__8___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { size_t x_7; size_t x_8; lean_object* x_9; @@ -6328,20 +5412,20 @@ x_7 = lean_unbox_usize(x_1); lean_dec(x_1); x_8 = lean_unbox_usize(x_2); lean_dec(x_2); -x_9 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__8(x_7, x_8, x_3, x_4, x_5, x_6); +x_9 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(x_7, x_8, x_3, x_4, x_5, x_6); return x_9; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { -lean_object* x_8; -x_8 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7); -lean_dec(x_4); -return x_8; +lean_object* x_7; +x_7 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6); +lean_dec(x_3); +return x_7; } } -LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { size_t x_11; size_t x_12; lean_object* x_13; @@ -6349,22 +5433,13 @@ x_11 = lean_unbox_usize(x_5); lean_dec(x_5); x_12 = lean_unbox_usize(x_6); lean_dec(x_6); -x_13 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__9(x_1, x_2, x_3, x_4, x_11, x_12, x_7, x_8, x_9, x_10); +x_13 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5(x_1, x_2, x_3, x_4, x_11, x_12, x_7, x_8, x_9, x_10); lean_dec(x_4); lean_dec(x_3); lean_dec(x_1); return x_13; } } -LEAN_EXPORT lean_object* l_Lean_Elab_elabDeriving___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { -_start: -{ -lean_object* x_4; -x_4 = l_Lean_Elab_elabDeriving___lambda__1(x_1, x_2, x_3); -lean_dec(x_2); -return x_4; -} -} static lean_object* _init_l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1() { _start: { @@ -6539,294 +5614,56 @@ return x_11; } else { -lean_object* x_12; uint8_t x_13; +lean_object* x_12; lean_object* x_13; lean_object* x_14; x_12 = lean_array_uget(x_3, x_5); -x_13 = !lean_is_exclusive(x_6); -if (x_13 == 0) +x_13 = lean_box(0); +lean_inc(x_8); +lean_inc(x_7); +lean_inc(x_12); +x_14 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_12, x_13, x_7, x_8, x_9); +if (lean_obj_tag(x_14) == 0) { -lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; uint8_t x_19; -x_14 = lean_ctor_get(x_6, 0); -x_15 = lean_ctor_get(x_6, 1); -x_16 = lean_ctor_get(x_14, 0); +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; size_t x_19; size_t x_20; +x_15 = lean_ctor_get(x_14, 0); +lean_inc(x_15); +x_16 = lean_ctor_get(x_14, 1); lean_inc(x_16); -x_17 = lean_ctor_get(x_14, 1); -lean_inc(x_17); -x_18 = lean_ctor_get(x_14, 2); -lean_inc(x_18); -x_19 = lean_nat_dec_lt(x_17, x_18); -if (x_19 == 0) -{ -lean_object* x_20; -lean_dec(x_18); -lean_dec(x_17); -lean_dec(x_16); -lean_dec(x_12); -lean_dec(x_8); -lean_dec(x_7); -x_20 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_20, 0, x_6); -lean_ctor_set(x_20, 1, x_9); -return x_20; -} -else -{ -uint8_t x_21; -x_21 = !lean_is_exclusive(x_14); -if (x_21 == 0) -{ -lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_22 = lean_ctor_get(x_14, 2); -lean_dec(x_22); -x_23 = lean_ctor_get(x_14, 1); -lean_dec(x_23); -x_24 = lean_ctor_get(x_14, 0); -lean_dec(x_24); -x_25 = lean_array_fget(x_16, x_17); -x_26 = lean_unsigned_to_nat(1u); -x_27 = lean_nat_add(x_17, x_26); -lean_dec(x_17); -lean_ctor_set(x_14, 1, x_27); -x_28 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_12); -x_29 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_12, x_28, x_7, x_8, x_9); -if (lean_obj_tag(x_29) == 0) -{ -lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; size_t x_34; size_t x_35; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_ctor_get(x_29, 1); -lean_inc(x_31); -lean_dec(x_29); -x_32 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_32, 0, x_12); -lean_ctor_set(x_32, 1, x_30); -lean_ctor_set(x_32, 2, x_25); -x_33 = lean_array_push(x_15, x_32); -lean_ctor_set(x_6, 1, x_33); -x_34 = 1; -x_35 = lean_usize_add(x_5, x_34); -x_5 = x_35; -x_9 = x_31; +lean_dec(x_14); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_12); +lean_ctor_set(x_17, 1, x_15); +x_18 = lean_array_push(x_6, x_17); +x_19 = 1; +x_20 = lean_usize_add(x_5, x_19); +x_5 = x_20; +x_6 = x_18; +x_9 = x_16; goto _start; } else { -uint8_t x_37; -lean_dec(x_14); -lean_dec(x_25); -lean_free_object(x_6); -lean_dec(x_15); +uint8_t x_22; lean_dec(x_12); lean_dec(x_8); lean_dec(x_7); -x_37 = !lean_is_exclusive(x_29); -if (x_37 == 0) -{ -return x_29; -} -else -{ -lean_object* x_38; lean_object* x_39; lean_object* x_40; -x_38 = lean_ctor_get(x_29, 0); -x_39 = lean_ctor_get(x_29, 1); -lean_inc(x_39); -lean_inc(x_38); -lean_dec(x_29); -x_40 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_40, 0, x_38); -lean_ctor_set(x_40, 1, x_39); -return x_40; -} -} -} -else -{ -lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; -lean_dec(x_14); -x_41 = lean_array_fget(x_16, x_17); -x_42 = lean_unsigned_to_nat(1u); -x_43 = lean_nat_add(x_17, x_42); -lean_dec(x_17); -x_44 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_44, 0, x_16); -lean_ctor_set(x_44, 1, x_43); -lean_ctor_set(x_44, 2, x_18); -x_45 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_12); -x_46 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_12, x_45, x_7, x_8, x_9); -if (lean_obj_tag(x_46) == 0) -{ -lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; size_t x_51; size_t x_52; -x_47 = lean_ctor_get(x_46, 0); -lean_inc(x_47); -x_48 = lean_ctor_get(x_46, 1); -lean_inc(x_48); -lean_dec(x_46); -x_49 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_49, 0, x_12); -lean_ctor_set(x_49, 1, x_47); -lean_ctor_set(x_49, 2, x_41); -x_50 = lean_array_push(x_15, x_49); -lean_ctor_set(x_6, 1, x_50); -lean_ctor_set(x_6, 0, x_44); -x_51 = 1; -x_52 = lean_usize_add(x_5, x_51); -x_5 = x_52; -x_9 = x_48; -goto _start; -} -else -{ -lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; -lean_dec(x_44); -lean_dec(x_41); -lean_free_object(x_6); -lean_dec(x_15); -lean_dec(x_12); -lean_dec(x_8); -lean_dec(x_7); -x_54 = lean_ctor_get(x_46, 0); -lean_inc(x_54); -x_55 = lean_ctor_get(x_46, 1); -lean_inc(x_55); -if (lean_is_exclusive(x_46)) { - lean_ctor_release(x_46, 0); - lean_ctor_release(x_46, 1); - x_56 = x_46; -} else { - lean_dec_ref(x_46); - x_56 = lean_box(0); -} -if (lean_is_scalar(x_56)) { - x_57 = lean_alloc_ctor(1, 2, 0); -} else { - x_57 = x_56; -} -lean_ctor_set(x_57, 0, x_54); -lean_ctor_set(x_57, 1, x_55); -return x_57; -} -} -} -} -else -{ -lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; uint8_t x_63; -x_58 = lean_ctor_get(x_6, 0); -x_59 = lean_ctor_get(x_6, 1); -lean_inc(x_59); -lean_inc(x_58); lean_dec(x_6); -x_60 = lean_ctor_get(x_58, 0); -lean_inc(x_60); -x_61 = lean_ctor_get(x_58, 1); -lean_inc(x_61); -x_62 = lean_ctor_get(x_58, 2); -lean_inc(x_62); -x_63 = lean_nat_dec_lt(x_61, x_62); -if (x_63 == 0) +x_22 = !lean_is_exclusive(x_14); +if (x_22 == 0) { -lean_object* x_64; lean_object* x_65; -lean_dec(x_62); -lean_dec(x_61); -lean_dec(x_60); -lean_dec(x_12); -lean_dec(x_8); -lean_dec(x_7); -x_64 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_64, 0, x_58); -lean_ctor_set(x_64, 1, x_59); -x_65 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_65, 0, x_64); -lean_ctor_set(x_65, 1, x_9); -return x_65; +return x_14; } else { -lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; -if (lean_is_exclusive(x_58)) { - lean_ctor_release(x_58, 0); - lean_ctor_release(x_58, 1); - lean_ctor_release(x_58, 2); - x_66 = x_58; -} else { - lean_dec_ref(x_58); - x_66 = lean_box(0); -} -x_67 = lean_array_fget(x_60, x_61); -x_68 = lean_unsigned_to_nat(1u); -x_69 = lean_nat_add(x_61, x_68); -lean_dec(x_61); -if (lean_is_scalar(x_66)) { - x_70 = lean_alloc_ctor(0, 3, 0); -} else { - x_70 = x_66; -} -lean_ctor_set(x_70, 0, x_60); -lean_ctor_set(x_70, 1, x_69); -lean_ctor_set(x_70, 2, x_62); -x_71 = lean_box(0); -lean_inc(x_8); -lean_inc(x_7); -lean_inc(x_12); -x_72 = l_Lean_Elab_realizeGlobalConstNoOverloadWithInfo(x_12, x_71, x_7, x_8, x_9); -if (lean_obj_tag(x_72) == 0) -{ -lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; size_t x_78; size_t x_79; -x_73 = lean_ctor_get(x_72, 0); -lean_inc(x_73); -x_74 = lean_ctor_get(x_72, 1); -lean_inc(x_74); -lean_dec(x_72); -x_75 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_75, 0, x_12); -lean_ctor_set(x_75, 1, x_73); -lean_ctor_set(x_75, 2, x_67); -x_76 = lean_array_push(x_59, x_75); -x_77 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_77, 0, x_70); -lean_ctor_set(x_77, 1, x_76); -x_78 = 1; -x_79 = lean_usize_add(x_5, x_78); -x_5 = x_79; -x_6 = x_77; -x_9 = x_74; -goto _start; -} -else -{ -lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; -lean_dec(x_70); -lean_dec(x_67); -lean_dec(x_59); -lean_dec(x_12); -lean_dec(x_8); -lean_dec(x_7); -x_81 = lean_ctor_get(x_72, 0); -lean_inc(x_81); -x_82 = lean_ctor_get(x_72, 1); -lean_inc(x_82); -if (lean_is_exclusive(x_72)) { - lean_ctor_release(x_72, 0); - lean_ctor_release(x_72, 1); - x_83 = x_72; -} else { - lean_dec_ref(x_72); - x_83 = lean_box(0); -} -if (lean_is_scalar(x_83)) { - x_84 = lean_alloc_ctor(1, 2, 0); -} else { - x_84 = x_83; -} -lean_ctor_set(x_84, 0, x_81); -lean_ctor_set(x_84, 1, x_82); -return x_84; -} +lean_object* x_23; lean_object* x_24; lean_object* x_25; +x_23 = lean_ctor_get(x_14, 0); +x_24 = lean_ctor_get(x_14, 1); +lean_inc(x_24); +lean_inc(x_23); +lean_dec(x_14); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +return x_25; } } } @@ -6904,43 +5741,43 @@ x_18 = lean_array_get_size(x_17); x_19 = lean_nat_dec_lt(x_9, x_18); if (x_19 == 0) { -lean_object* x_49; +lean_object* x_40; lean_dec(x_18); lean_dec(x_17); -x_49 = l_Lean_Elab_elabDeriving___closed__6; -x_20 = x_49; -goto block_48; +x_40 = l_Lean_Elab_elabDeriving___closed__6; +x_20 = x_40; +goto block_39; } else { -uint8_t x_50; -x_50 = lean_nat_dec_le(x_18, x_18); -if (x_50 == 0) +uint8_t x_41; +x_41 = lean_nat_dec_le(x_18, x_18); +if (x_41 == 0) { -lean_object* x_51; +lean_object* x_42; lean_dec(x_18); lean_dec(x_17); -x_51 = l_Lean_Elab_elabDeriving___closed__6; -x_20 = x_51; -goto block_48; +x_42 = l_Lean_Elab_elabDeriving___closed__6; +x_20 = x_42; +goto block_39; } else { -size_t x_52; size_t x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; -x_52 = 0; -x_53 = lean_usize_of_nat(x_18); +size_t x_43; size_t x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; +x_43 = 0; +x_44 = lean_usize_of_nat(x_18); lean_dec(x_18); -x_54 = l_Lean_Elab_elabDeriving___closed__7; -x_55 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_17, x_52, x_53, x_54); +x_45 = l_Lean_Elab_elabDeriving___closed__7; +x_46 = l_Array_foldlMUnsafe_fold___at_Lean_Syntax_SepArray_getElems___spec__1(x_17, x_43, x_44, x_45); lean_dec(x_17); -x_56 = lean_ctor_get(x_55, 1); -lean_inc(x_56); -lean_dec(x_55); -x_20 = x_56; -goto block_48; +x_47 = lean_ctor_get(x_46, 1); +lean_inc(x_47); +lean_dec(x_46); +x_20 = x_47; +goto block_39; } } -block_48: +block_39: { lean_object* x_21; lean_object* x_22; x_21 = l_Lean_Elab_elabDeriving___closed__8; @@ -6959,76 +5796,58 @@ return x_24; } else { -lean_object* x_25; size_t x_26; size_t x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; size_t x_35; lean_object* x_36; +lean_object* x_25; lean_object* x_26; size_t x_27; size_t x_28; lean_object* x_29; lean_object* x_30; x_25 = lean_ctor_get(x_22, 0); lean_inc(x_25); lean_dec(x_22); -x_26 = lean_array_size(x_25); -x_27 = 0; -lean_inc(x_25); -x_28 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__4(x_26, x_27, x_25); -x_29 = l_Array_mapMUnsafe_map___at_Lean_Elab_elabDeriving___spec__5(x_26, x_27, x_25); -x_30 = lean_array_get_size(x_28); -x_31 = l_Array_toSubarray___rarg(x_28, x_9, x_30); -x_32 = lean_box(0); -x_33 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f___closed__1; +x_26 = lean_box(0); +x_27 = lean_array_size(x_25); +x_28 = 0; +x_29 = l___private_Lean_Elab_Deriving_Basic_0__Lean_Elab_Term_mkInst_x3f___closed__1; +x_30 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1(x_25, x_26, x_25, x_27, x_28, x_29, x_2, x_3, x_4); +lean_dec(x_25); +if (lean_obj_tag(x_30) == 0) +{ +uint8_t x_31; +x_31 = !lean_is_exclusive(x_30); +if (x_31 == 0) +{ +return x_30; +} +else +{ +lean_object* x_32; lean_object* x_33; lean_object* x_34; +x_32 = lean_ctor_get(x_30, 0); +x_33 = lean_ctor_get(x_30, 1); +lean_inc(x_33); +lean_inc(x_32); +lean_dec(x_30); x_34 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_34, 0, x_31); +lean_ctor_set(x_34, 0, x_32); lean_ctor_set(x_34, 1, x_33); -x_35 = lean_array_size(x_29); -x_36 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_getOptDerivingClasses___spec__1(x_29, x_32, x_29, x_35, x_27, x_34, x_2, x_3, x_4); -lean_dec(x_29); -if (lean_obj_tag(x_36) == 0) -{ -uint8_t x_37; -x_37 = !lean_is_exclusive(x_36); -if (x_37 == 0) -{ -lean_object* x_38; lean_object* x_39; -x_38 = lean_ctor_get(x_36, 0); -x_39 = lean_ctor_get(x_38, 1); -lean_inc(x_39); -lean_dec(x_38); -lean_ctor_set(x_36, 0, x_39); -return x_36; -} -else -{ -lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; -x_40 = lean_ctor_get(x_36, 0); -x_41 = lean_ctor_get(x_36, 1); -lean_inc(x_41); -lean_inc(x_40); -lean_dec(x_36); -x_42 = lean_ctor_get(x_40, 1); -lean_inc(x_42); -lean_dec(x_40); -x_43 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_43, 0, x_42); -lean_ctor_set(x_43, 1, x_41); -return x_43; +return x_34; } } else { -uint8_t x_44; -x_44 = !lean_is_exclusive(x_36); -if (x_44 == 0) +uint8_t x_35; +x_35 = !lean_is_exclusive(x_30); +if (x_35 == 0) { -return x_36; +return x_30; } else { -lean_object* x_45; lean_object* x_46; lean_object* x_47; -x_45 = lean_ctor_get(x_36, 0); -x_46 = lean_ctor_get(x_36, 1); -lean_inc(x_46); -lean_inc(x_45); -lean_dec(x_36); -x_47 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_47, 0, x_45); -lean_ctor_set(x_47, 1, x_46); -return x_47; +lean_object* x_36; lean_object* x_37; lean_object* x_38; +x_36 = lean_ctor_get(x_30, 0); +x_37 = lean_ctor_get(x_30, 1); +lean_inc(x_37); +lean_inc(x_36); +lean_dec(x_30); +x_38 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_38, 0, x_36); +lean_ctor_set(x_38, 1, x_37); +return x_38; } } } @@ -7055,47 +5874,44 @@ return x_12; LEAN_EXPORT lean_object* l_Lean_Elab_DerivingClassView_applyHandlers(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { -lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; uint8_t x_13; +lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; uint8_t x_12; x_6 = lean_ctor_get(x_1, 0); lean_inc(x_6); x_7 = lean_ctor_get(x_1, 1); lean_inc(x_7); -x_8 = lean_ctor_get(x_1, 2); -lean_inc(x_8); lean_dec(x_1); -x_9 = l_Lean_Elab_Command_getRef(x_3, x_4, x_5); -x_10 = lean_ctor_get(x_9, 0); +x_8 = l_Lean_Elab_Command_getRef(x_3, x_4, x_5); +x_9 = lean_ctor_get(x_8, 0); +lean_inc(x_9); +x_10 = lean_ctor_get(x_8, 1); lean_inc(x_10); -x_11 = lean_ctor_get(x_9, 1); -lean_inc(x_11); +lean_dec(x_8); +x_11 = l_Lean_replaceRef(x_6, x_9); lean_dec(x_9); -x_12 = l_Lean_replaceRef(x_6, x_10); -lean_dec(x_10); lean_dec(x_6); -x_13 = !lean_is_exclusive(x_3); -if (x_13 == 0) +x_12 = !lean_is_exclusive(x_3); +if (x_12 == 0) { -lean_object* x_14; lean_object* x_15; -x_14 = lean_ctor_get(x_3, 6); -lean_dec(x_14); -lean_ctor_set(x_3, 6, x_12); -x_15 = l_Lean_Elab_applyDerivingHandlers(x_7, x_2, x_8, x_3, x_4, x_11); -return x_15; +lean_object* x_13; lean_object* x_14; +x_13 = lean_ctor_get(x_3, 6); +lean_dec(x_13); +lean_ctor_set(x_3, 6, x_11); +x_14 = l_Lean_Elab_applyDerivingHandlers(x_7, x_2, x_3, x_4, x_10); +return x_14; } else { -lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; uint8_t x_25; lean_object* x_26; lean_object* x_27; -x_16 = lean_ctor_get(x_3, 0); -x_17 = lean_ctor_get(x_3, 1); -x_18 = lean_ctor_get(x_3, 2); -x_19 = lean_ctor_get(x_3, 3); -x_20 = lean_ctor_get(x_3, 4); -x_21 = lean_ctor_get(x_3, 5); -x_22 = lean_ctor_get(x_3, 7); -x_23 = lean_ctor_get(x_3, 8); -x_24 = lean_ctor_get(x_3, 9); -x_25 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); -lean_inc(x_24); +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; uint8_t x_24; lean_object* x_25; lean_object* x_26; +x_15 = lean_ctor_get(x_3, 0); +x_16 = lean_ctor_get(x_3, 1); +x_17 = lean_ctor_get(x_3, 2); +x_18 = lean_ctor_get(x_3, 3); +x_19 = lean_ctor_get(x_3, 4); +x_20 = lean_ctor_get(x_3, 5); +x_21 = lean_ctor_get(x_3, 7); +x_22 = lean_ctor_get(x_3, 8); +x_23 = lean_ctor_get(x_3, 9); +x_24 = lean_ctor_get_uint8(x_3, sizeof(void*)*10); lean_inc(x_23); lean_inc(x_22); lean_inc(x_21); @@ -7104,25 +5920,26 @@ lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); +lean_inc(x_15); lean_dec(x_3); -x_26 = lean_alloc_ctor(0, 10, 1); -lean_ctor_set(x_26, 0, x_16); -lean_ctor_set(x_26, 1, x_17); -lean_ctor_set(x_26, 2, x_18); -lean_ctor_set(x_26, 3, x_19); -lean_ctor_set(x_26, 4, x_20); -lean_ctor_set(x_26, 5, x_21); -lean_ctor_set(x_26, 6, x_12); -lean_ctor_set(x_26, 7, x_22); -lean_ctor_set(x_26, 8, x_23); -lean_ctor_set(x_26, 9, x_24); -lean_ctor_set_uint8(x_26, sizeof(void*)*10, x_25); -x_27 = l_Lean_Elab_applyDerivingHandlers(x_7, x_2, x_8, x_26, x_4, x_11); -return x_27; +x_25 = lean_alloc_ctor(0, 10, 1); +lean_ctor_set(x_25, 0, x_15); +lean_ctor_set(x_25, 1, x_16); +lean_ctor_set(x_25, 2, x_17); +lean_ctor_set(x_25, 3, x_18); +lean_ctor_set(x_25, 4, x_19); +lean_ctor_set(x_25, 5, x_20); +lean_ctor_set(x_25, 6, x_11); +lean_ctor_set(x_25, 7, x_21); +lean_ctor_set(x_25, 8, x_22); +lean_ctor_set(x_25, 9, x_23); +lean_ctor_set_uint8(x_25, sizeof(void*)*10, x_24); +x_26 = l_Lean_Elab_applyDerivingHandlers(x_7, x_2, x_25, x_4, x_10); +return x_26; } } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1() { _start: { lean_object* x_1; @@ -7130,17 +5947,17 @@ x_1 = lean_mk_string_unchecked("Deriving", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__2() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__3() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -7150,17 +5967,17 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__4() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__3; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__3; x_2 = l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__5() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__5() { _start: { lean_object* x_1; @@ -7168,17 +5985,17 @@ x_1 = lean_mk_string_unchecked("initFn", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__6() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__4; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__5; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__4; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__7() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__7() { _start: { lean_object* x_1; @@ -7186,47 +6003,47 @@ x_1 = lean_mk_string_unchecked("_@", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__8() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__6; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__7; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__6; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__9() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__8; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__8; x_2 = l_Lean_Elab_elabDeriving___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__10() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__9; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__9; x_2 = l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__11() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__10; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__10; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__12() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__12() { _start: { lean_object* x_1; @@ -7234,17 +6051,17 @@ x_1 = lean_mk_string_unchecked("Basic", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__13() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__11; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__12; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__11; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__14() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__14() { _start: { lean_object* x_1; @@ -7252,33 +6069,33 @@ x_1 = lean_mk_string_unchecked("_hyg", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__15() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__13; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__14; +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__13; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__16() { +static lean_object* _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__15; -x_2 = lean_unsigned_to_nat(2549u); +x_1 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__15; +x_2 = lean_unsigned_to_nat(1906u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__2; +x_2 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__2; x_3 = 0; -x_4 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__16; +x_4 = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__16; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -7330,17 +6147,17 @@ l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___c lean_mark_persistent(l_Lean_addDeclarationRanges___at_Lean_Elab_Term_processDefDeriving___spec__7___closed__7); l_Lean_Elab_Term_processDefDeriving___closed__1 = _init_l_Lean_Elab_Term_processDefDeriving___closed__1(); lean_mark_persistent(l_Lean_Elab_Term_processDefDeriving___closed__1); -if (builtin) {res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_666_(lean_io_mk_world()); +if (builtin) {res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_660_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_derivingHandlersRef = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_derivingHandlersRef); lean_dec_ref(res); -}l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1 = _init_l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1(); -lean_mark_persistent(l_Lean_Elab_registerDerivingHandlerWithArgs___lambda__1___closed__1); -l_Lean_Elab_registerDerivingHandlerWithArgs___closed__1 = _init_l_Lean_Elab_registerDerivingHandlerWithArgs___closed__1(); -lean_mark_persistent(l_Lean_Elab_registerDerivingHandlerWithArgs___closed__1); -l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2 = _init_l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2(); -lean_mark_persistent(l_Lean_Elab_registerDerivingHandlerWithArgs___closed__2); +}l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1 = _init_l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_Elab_registerDerivingHandler___lambda__1___closed__1); +l_Lean_Elab_registerDerivingHandler___closed__1 = _init_l_Lean_Elab_registerDerivingHandler___closed__1(); +lean_mark_persistent(l_Lean_Elab_registerDerivingHandler___closed__1); +l_Lean_Elab_registerDerivingHandler___closed__2 = _init_l_Lean_Elab_registerDerivingHandler___closed__2(); +lean_mark_persistent(l_Lean_Elab_registerDerivingHandler___closed__2); l_Lean_Elab_defaultHandler___closed__1 = _init_l_Lean_Elab_defaultHandler___closed__1(); lean_mark_persistent(l_Lean_Elab_defaultHandler___closed__1); l_Lean_Elab_defaultHandler___closed__2 = _init_l_Lean_Elab_defaultHandler___closed__2(); @@ -7359,10 +6176,8 @@ l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2 lean_mark_persistent(l_List_forIn_x27_loop___at_Lean_Elab_applyDerivingHandlers___spec__1___closed__2); l_Lean_Elab_applyDerivingHandlers___closed__1 = _init_l_Lean_Elab_applyDerivingHandlers___closed__1(); lean_mark_persistent(l_Lean_Elab_applyDerivingHandlers___closed__1); -l_Lean_Elab_elabDeriving___lambda__2___closed__1 = _init_l_Lean_Elab_elabDeriving___lambda__2___closed__1(); -lean_mark_persistent(l_Lean_Elab_elabDeriving___lambda__2___closed__1); -l_Lean_Elab_elabDeriving___lambda__2___closed__2 = _init_l_Lean_Elab_elabDeriving___lambda__2___closed__2(); -lean_mark_persistent(l_Lean_Elab_elabDeriving___lambda__2___closed__2); +l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_elabDeriving___spec__5___closed__1); l_Lean_Elab_elabDeriving___closed__1 = _init_l_Lean_Elab_elabDeriving___closed__1(); lean_mark_persistent(l_Lean_Elab_elabDeriving___closed__1); l_Lean_Elab_elabDeriving___closed__2 = _init_l_Lean_Elab_elabDeriving___closed__2(); @@ -7379,8 +6194,6 @@ l_Lean_Elab_elabDeriving___closed__7 = _init_l_Lean_Elab_elabDeriving___closed__ lean_mark_persistent(l_Lean_Elab_elabDeriving___closed__7); l_Lean_Elab_elabDeriving___closed__8 = _init_l_Lean_Elab_elabDeriving___closed__8(); lean_mark_persistent(l_Lean_Elab_elabDeriving___closed__8); -l_Lean_Elab_elabDeriving___closed__9 = _init_l_Lean_Elab_elabDeriving___closed__9(); -lean_mark_persistent(l_Lean_Elab_elabDeriving___closed__9); l_Lean_Elab_elabDeriving___boxed__const__1 = _init_l_Lean_Elab_elabDeriving___boxed__const__1(); lean_mark_persistent(l_Lean_Elab_elabDeriving___boxed__const__1); l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1 = _init_l___regBuiltin_Lean_Elab_elabDeriving__1___closed__1(); @@ -7417,39 +6230,39 @@ lean_dec_ref(res); lean_mark_persistent(l_Lean_Elab_getOptDerivingClasses___closed__1); l_Lean_Elab_getOptDerivingClasses___closed__2 = _init_l_Lean_Elab_getOptDerivingClasses___closed__2(); lean_mark_persistent(l_Lean_Elab_getOptDerivingClasses___closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__1); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__2(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__2); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__3(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__3); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__4 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__4(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__4); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__5 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__5(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__5); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__6 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__6(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__6); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__7 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__7(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__7); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__8 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__8(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__8); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__9 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__9(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__9); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__10 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__10(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__10); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__11 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__11(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__11); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__12 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__12(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__12); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__13 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__13(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__13); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__14 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__14(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__14); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__15 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__15(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__15); -l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__16 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__16(); -lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549____closed__16); -if (builtin) {res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_2549_(lean_io_mk_world()); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__1); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__2 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__2(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__2); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__3 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__3(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__3); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__4 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__4(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__4); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__5 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__5(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__5); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__6 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__6(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__6); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__7 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__7(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__7); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__8 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__8(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__8); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__9 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__9(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__9); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__10 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__10(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__10); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__11 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__11(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__11); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__12 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__12(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__12); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__13 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__13(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__13); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__14 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__14(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__14); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__15 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__15(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__15); +l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__16 = _init_l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__16(); +lean_mark_persistent(l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906____closed__16); +if (builtin) {res = l_Lean_Elab_initFn____x40_Lean_Elab_Deriving_Basic___hyg_1906_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c index f1b0a09cc4..6fb215e9a6 100644 --- a/stage0/stdlib/Lean/Elab/Deriving/DecEq.c +++ b/stage0/stdlib/Lean/Elab/Deriving/DecEq.c @@ -151,6 +151,7 @@ static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__2 lean_object* l_Lean_Elab_registerDerivingHandler(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Deriving_DecEq_mkAuxFunctions___spec__2(size_t, size_t, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__12; static lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___closed__35; static lean_object* l_Lean_Elab_Deriving_DecEq_initFn____x40_Lean_Elab_Deriving_DecEq___hyg_4877____closed__12; @@ -398,7 +399,6 @@ static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__2 LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__2___closed__45; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_mkEnumOfNatThm___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Deriving_DecEq_mkAuxFunction___closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Deriving_DecEq_mkDecEqEnum___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Deriving_DecEq_mkDecEq___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -12200,7 +12200,7 @@ lean_closure_set(x_15, 4, x_1); x_16 = l_Lean_Elab_Deriving_DecEq_mkMatch_mkSameCtorRhs___lambda__2___closed__41; x_17 = 0; x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_16, x_17, x_14, x_15, x_18, x_2, x_3, x_4, x_5, x_9); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_17, x_14, x_15, x_18, x_2, x_3, x_4, x_5, x_9); return x_19; } else @@ -12737,7 +12737,7 @@ lean_closure_set(x_23, 6, x_22); x_24 = l_Lean_Elab_Deriving_DecEq_mkEnumOfNatThm___closed__10; x_25 = 0; x_26 = 0; -x_27 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_24, x_25, x_17, x_23, x_26, x_2, x_3, x_4, x_5, x_9); +x_27 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_24, x_25, x_17, x_23, x_26, x_2, x_3, x_4, x_5, x_9); return x_27; } else diff --git a/stage0/stdlib/Lean/Elab/Inductive.c b/stage0/stdlib/Lean/Elab/Inductive.c index d9e3d35472..199bddd5dd 100644 --- a/stage0/stdlib/Lean/Elab/Inductive.c +++ b/stage0/stdlib/Lean/Elab/Inductive.c @@ -527,6 +527,7 @@ lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_obj lean_object* l_outOfBounds___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Command_elabInductiveViewsPostprocessing___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Command_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Constructions_BRecOn_0__Lean_buildBelowMinorPremise_go___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_checkUnsafe___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_mapM_loop___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors___spec__2___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -715,7 +716,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_ch LEAN_EXPORT lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_getArrowBinderNames(lean_object*); static lean_object* l_Lean_Elab_Command_instInhabitedInductiveView___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_elabAttrs___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___spec__20___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_mod(size_t, size_t); static lean_object* l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_elabCtors_checkParamOccs___lambda__2___closed__2; @@ -30670,7 +30670,7 @@ lean_closure_set(x_13, 4, x_5); x_14 = l___private_Lean_Elab_Inductive_0__Lean_Elab_Command_fixedIndicesToParams_go___lambda__3___closed__2; x_15 = 0; x_16 = 0; -x_17 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(x_14, x_15, x_6, x_13, x_16, x_8, x_9, x_10, x_11, x_12); +x_17 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Constructions_BRecOn_0__Lean_buildBelowMinorPremise_go___spec__1___rarg(x_14, x_15, x_6, x_13, x_16, x_8, x_9, x_10, x_11, x_12); return x_17; } } diff --git a/stage0/stdlib/Lean/Elab/Structure.c b/stage0/stdlib/Lean/Elab/Structure.c index 203980b46d..4b13dfd139 100644 --- a/stage0/stdlib/Lean/Elab/Structure.c +++ b/stage0/stdlib/Lean/Elab/Structure.c @@ -294,7 +294,6 @@ lean_object* l_Lean_CollectLevelParams_main(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_reprStructFieldKind____x40_Lean_Elab_Structure___hyg_748____closed__16; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_go___spec__9(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_addDefaults___boxed__const__1; -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_isPropCandidate___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_levelMVarToParam___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -496,6 +495,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_el static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_reprStructFieldKind____x40_Lean_Elab_Structure___hyg_748____closed__14; static lean_object* l___private_Lean_Elab_Structure_0__Lean_Elab_Command_copyNewFieldsFrom_copyFields_copy___rarg___closed__8; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_checkResolutionOrder___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Constructions_BRecOn_0__Lean_buildBelowMinorPremise_go___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_addDeclarationRangesForBuiltin___at___private_Lean_Elab_Inductive_0__Lean_Elab_Command_inductiveSyntaxToView___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Structure_0__Lean_Elab_Command_withFields_go___spec__1(lean_object*); static lean_object* l_Lean_Elab_Command_instInhabitedStructCtorView___closed__3; @@ -10039,7 +10039,7 @@ lean_closure_set(x_12, 1, x_1); lean_closure_set(x_12, 2, x_2); x_13 = 0; x_14 = 0; -x_15 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_10, x_13, x_2, x_12, x_14, x_4, x_5, x_6, x_7, x_11); +x_15 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Constructions_BRecOn_0__Lean_buildBelowMinorPremise_go___spec__1___rarg(x_10, x_13, x_2, x_12, x_14, x_4, x_5, x_6, x_7, x_11); return x_15; } } @@ -28949,7 +28949,7 @@ lean_closure_set(x_28, 9, x_26); lean_closure_set(x_28, 10, x_27); x_29 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkCoercionToCopiedParent___closed__2; x_30 = 0; -x_31 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_29, x_25, x_21, x_28, x_30, x_6, x_7, x_8, x_9, x_13); +x_31 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Constructions_BRecOn_0__Lean_buildBelowMinorPremise_go___spec__1___rarg(x_29, x_25, x_21, x_28, x_30, x_6, x_7, x_8, x_9, x_13); return x_31; } else @@ -28973,7 +28973,7 @@ lean_closure_set(x_35, 10, x_34); x_36 = l___private_Lean_Elab_Structure_0__Lean_Elab_Command_mkCoercionToCopiedParent___closed__2; x_37 = 0; x_38 = 0; -x_39 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_36, x_37, x_21, x_35, x_38, x_6, x_7, x_8, x_9, x_13); +x_39 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Constructions_BRecOn_0__Lean_buildBelowMinorPremise_go___spec__1___rarg(x_36, x_37, x_21, x_35, x_38, x_6, x_7, x_8, x_9, x_13); return x_39; } } diff --git a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c index 472837b5fa..de418fa238 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c +++ b/stage0/stdlib/Lean/Elab/Tactic/BVDecide/Frontend/Normalize.c @@ -377,7 +377,6 @@ uint8_t lean_usize_dec_lt(size_t, size_t); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bvNormalize___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_evalBVNormalize__1(lean_object*); -lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_fixpointPipeline___closed__8; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embeddedConstraintPass___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__add__const_x27_declare__1____x40_Lean_Elab_Tactic_BVDecide_Frontend_Normalize___hyg_3478____closed__1; @@ -392,6 +391,7 @@ static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_eqToBEq___lam LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bvNormalize___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_evalBVNormalize__1___closed__4; static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bvNormalize___lambda__3___closed__2; +lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bv__add__const_x27___lambda__1___closed__3; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_bvNormalize___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_BVDecide_Frontend_Normalize_Pass_embeddedConstraintPass___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -14012,7 +14012,7 @@ x_19 = lean_ctor_get(x_17, 1); lean_inc(x_19); lean_dec(x_17); x_20 = lean_box(0); -x_21 = l_Lean_Elab_Tactic_setGoals(x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); +x_21 = l_Lean_Elab_Tactic_replaceMainGoal(x_20, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_19); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); @@ -14032,7 +14032,7 @@ x_24 = lean_box(0); x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_23); lean_ctor_set(x_25, 1, x_24); -x_26 = l_Lean_Elab_Tactic_setGoals(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_22); +x_26 = l_Lean_Elab_Tactic_replaceMainGoal(x_25, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_22); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Conv/Congr.c b/stage0/stdlib/Lean/Elab/Tactic/Conv/Congr.c index 001013a104..a4303ad3d1 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Conv/Congr.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Conv/Congr.c @@ -171,6 +171,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Conv_Congr_0__Lean_Elab_Ta LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Conv_evalCongr___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Conv_congrFunN___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Conv_evalFun___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Conv_congrFunN___lambda__2___closed__2; static lean_object* l___private_Lean_Elab_Tactic_Conv_Congr_0__Lean_Elab_Tactic_Conv_resolveRhsFromProof___closed__5; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Conv_congrArgN___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -417,7 +418,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Conv_Congr_0__Lean_Elab_Ta static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalRhs__1___closed__3; lean_object* l_Lean_Meta_mkCongrFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Conv_Congr_0__Lean_Elab_Tactic_Conv_resolveRhs___closed__1; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_Meta_instInhabitedParamInfo; size_t lean_usize_add(size_t, size_t); static lean_object* l___regBuiltin_Lean_Elab_Tactic_Conv_evalRhs_declRange__1___closed__7; @@ -9455,7 +9455,7 @@ lean_closure_set(x_17, 4, x_1); lean_closure_set(x_17, 5, x_5); x_18 = 0; x_19 = 0; -x_20 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_15, x_18, x_12, x_17, x_19, x_6, x_7, x_8, x_9, x_16); +x_20 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_18, x_12, x_17, x_19, x_6, x_7, x_8, x_9, x_16); return x_20; } else @@ -15445,7 +15445,7 @@ lean_inc(x_10); lean_inc(x_9); lean_inc(x_3); lean_inc(x_2); -x_17 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_2, x_15, x_3, x_14, x_16, x_9, x_10, x_11, x_12, x_13); +x_17 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_2, x_15, x_3, x_14, x_16, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_17) == 0) { lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; uint8_t x_22; @@ -15475,7 +15475,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_3); -x_26 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_2, x_15, x_3, x_25, x_16, x_9, x_10, x_11, x_12, x_20); +x_26 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_2, x_15, x_3, x_25, x_16, x_9, x_10, x_11, x_12, x_20); if (lean_obj_tag(x_26) == 0) { lean_object* x_27; lean_object* x_28; uint8_t x_29; @@ -15686,7 +15686,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_3); -x_76 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_2, x_15, x_3, x_75, x_16, x_9, x_10, x_11, x_12, x_20); +x_76 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_2, x_15, x_3, x_75, x_16, x_9, x_10, x_11, x_12, x_20); if (lean_obj_tag(x_76) == 0) { lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; @@ -16896,7 +16896,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_4); -x_16 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_8, x_3, x_4, x_14, x_15, x_9, x_10, x_11, x_12, x_13); +x_16 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_8, x_3, x_4, x_14, x_15, x_9, x_10, x_11, x_12, x_13); if (lean_obj_tag(x_16) == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; diff --git a/stage0/stdlib/Lean/Elab/Tactic/Ext.c b/stage0/stdlib/Lean/Elab/Tactic/Ext.c index 14087cd492..496a685e21 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Ext.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Ext.c @@ -295,6 +295,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_Ext_evalApplyExtTheorem static lean_object* l_Lean_addDeclarationRanges___at_Lean_Elab_Tactic_Ext_realizeExtTheorem___spec__5___closed__3; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_liftExcept___at_Lean_Elab_liftMacroM___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Ext_mkExtIffType___lambda__4___closed__1; static lean_object* l_Lean_Elab_Tactic_Ext_mkExtType___closed__1; @@ -537,7 +538,6 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_foldlM___at_Lean_Elab_Tactic_E LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_findAux___at_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_3378____spec__3___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_tryIntros(lean_object*); static lean_object* l_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_3378____closed__4; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_withExtHyps___rarg___lambda__1(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_applyExtTheoremAt___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Ext_getExtTheorems___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -697,6 +697,7 @@ LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAux___at_Lean_Elab_Tacti static lean_object* l_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_3673____lambda__6___closed__7; lean_object* l_Lean_registerBuiltinAttribute(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_Ext_ExtTheorems_erase___spec__4(lean_object*, lean_object*, size_t, size_t, uint8_t); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_getConstInfo___at_Lean_Elab_Tactic_Ext_realizeExtIffTheorem___spec__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_ExtTheorems_erase___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Ext_0__Lean_Elab_Tactic_Ext_reprExtTheorem____x40_Lean_Elab_Tactic_Ext___hyg_3098____closed__24; @@ -718,7 +719,6 @@ static lean_object* l___private_Lean_Elab_Tactic_Ext_0__Lean_Elab_Tactic_Ext_rep static lean_object* l_Lean_getConstInfoInduct___at_Lean_Elab_Tactic_Ext_realizeExtTheorem___spec__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_ExtTheorems_erase___at_Lean_Elab_Tactic_Ext_initFn____x40_Lean_Elab_Tactic_Ext___hyg_3673____spec__8___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_applyExtTheoremAt___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_Ext_realizeExtIffTheorem___lambda__1___closed__45; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_withExt1___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_Ext_extExtension; @@ -1303,7 +1303,7 @@ lean_closure_set(x_15, 5, x_5); x_16 = l_Lean_Elab_Tactic_Ext_withExtHyps___rarg___lambda__3___closed__2; x_17 = 1; x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_16, x_17, x_6, x_15, x_18, x_8, x_9, x_10, x_11, x_12); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_17, x_6, x_15, x_18, x_8, x_9, x_10, x_11, x_12); return x_19; } } @@ -1358,7 +1358,7 @@ x_20 = 1; x_21 = 0; x_22 = lean_box(x_20); x_23 = lean_box(x_21); -x_24 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg___boxed), 10, 5); +x_24 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg___boxed), 10, 5); lean_closure_set(x_24, 0, x_19); lean_closure_set(x_24, 1, x_22); lean_closure_set(x_24, 2, x_15); diff --git a/stage0/stdlib/Lean/Elab/Tactic/Induction.c b/stage0/stdlib/Lean/Elab/Tactic/Induction.c index d786383b8c..f873f72344 100644 --- a/stage0/stdlib/Lean/Elab/Tactic/Induction.c +++ b/stage0/stdlib/Lean/Elab/Tactic/Induction.c @@ -13,14 +13,14 @@ #ifdef __cplusplus extern "C" { #endif -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2(lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__5; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__3(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forM___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingName_x21(lean_object*); lean_object* l_Lean_Elab_Tactic_tagUntaggedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getElimInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_isAssigned___at_Lean_Elab_Term_synthesizeInstMVarCore___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__6; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -37,6 +37,9 @@ lean_object* lean_format_pretty(lean_object*, lean_object*, lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedTacticReuse___at_Lean_Elab_Tactic_evalInduction___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName(lean_object*); +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__5; +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1; +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___closed__1; @@ -48,13 +51,13 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__7(lean_objec lean_object* l_Array_mapMUnsafe_map___at_Lean_LocalContext_getFVars___spec__1(size_t, size_t, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalCases___lambda__4___closed__1; lean_object* l_Lean_Elab_Term_resolveId_x3f(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_elabCasesTargets___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange__1___closed__1; lean_object* l_Lean_Meta_throwTacticEx___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_empty_array_with_capacity(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__2___closed__1; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__5___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__6___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__6; lean_object* l_Lean_Elab_CommandContextInfo_save___at_Lean_Elab_Term_withoutModifyingElabMetaStateWithInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__3___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getArgExpectedType(lean_object*); @@ -70,6 +73,8 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambd static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__8___closed__3; static lean_object* l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalAlt___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabCasesTargets___lambda__1(lean_object*, lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2; +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__6; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getBindingName___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__3; @@ -89,6 +94,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_io_promise_new(lean_object*); uint8_t l_Lean_Exception_isInterrupt(lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__12; lean_object* l_Lean_Elab_Term_synthesizeSyntheticMVars(uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___boxed(lean_object**); @@ -101,7 +107,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_T lean_object* l_Lean_Elab_Tactic_evalTacticAt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___boxed__const__1; -static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Language_withAlwaysResolvedPromises___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_elabCasesTargets___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -111,7 +116,6 @@ lean_object* l_Lean_Meta_mkGeneralizationForbiddenSet(lean_object*, lean_object* lean_object* l_Lean_Syntax_getId(lean_object*); extern lean_object* l_Lean_Elab_Tactic_tacticElabAttribute; lean_object* l_Array_findIdx_x3f_loop___rarg(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__3; lean_object* l_Lean_Expr_sort___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutErrToSorry___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___lambda__2___closed__3; @@ -120,8 +124,8 @@ lean_object* lean_array_push(lean_object*, lean_object*); lean_object* l_Array_toSubarray___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange__1___closed__7; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__1; static lean_object* l_Lean_Elab_Tactic_elabCasesTargets___lambda__1___closed__2; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltVars___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalInduction___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -133,8 +137,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac lean_object* l_Lean_Meta_generalizeTargetsEq(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_mkTacticInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__16; -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Tactic_Generalize_0__Lean_Meta_generalizeCore(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -144,6 +146,7 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_ lean_object* l_Lean_replaceRef(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__11___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__1___closed__1; +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___at_Lean_Elab_Tactic_evalInduction___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_assign___at_Lean_Elab_Tactic_refineCore___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -153,7 +156,6 @@ lean_object* lean_array_fget(lean_object*, lean_object*); extern lean_object* l_Lean_casesOnSuffix; static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__3___closed__4; static lean_object* l_Lean_Elab_Tactic_elabCasesTargets___closed__1; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__14; lean_object* l_Lean_Elab_Tactic_getMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_FVarSubst_get(lean_object*, lean_object*); @@ -161,6 +163,7 @@ lean_object* l_Lean_MVarId_getTag(lean_object*, lean_object*, lean_object*, lean LEAN_EXPORT lean_object* l_Lean_isInductive___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_LocalDecl_hasValue(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__5; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__5(lean_object*, lean_object*, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -171,7 +174,6 @@ lean_object* l_Lean_MVarId_setKind(lean_object*, uint8_t, lean_object*, lean_obj LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltRHS(lean_object*); lean_object* l_Lean_addBuiltinDeclarationRanges(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__4___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__5___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapMAux___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__10(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -184,9 +186,11 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_eval extern lean_object* l_Lean_LocalContext_empty; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_expandMultiAlt_x3f(lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__10; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg___lambda__1___boxed(lean_object*); +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__1; lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_Expr_mvar___override(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -208,7 +212,6 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction__1___closed__5 LEAN_EXPORT lean_object* l_Array_zipWithAux___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at_Lean_Elab_Tactic_elabCasesTargets___spec__3___closed__1; lean_object* l_Lean_Meta_appendTag(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__12; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -216,7 +219,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambd LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___spec__2(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutHeedElabAsElim___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -226,19 +228,20 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_altHasExplicitModifier(lean_object*); LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_isHoleRHS(lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__7; +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getNumArgs(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabCasesTargets___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__5; -static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__4; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303_(lean_object*); uint8_t l_Lean_Expr_hasMVar(lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__2; static lean_object* l_Lean_Elab_Tactic_elabCasesTargets___lambda__1___closed__6; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_expandInductionAlts_x3f___spec__1___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__5; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_addNewArg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -250,6 +253,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp(lean_object*, lean LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___lambda__1(lean_object*, lean_object*, lean_object*, uint8_t, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltNameStx(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__5___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__8; lean_object* l_List_appendTR___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__4; lean_object* l_Lean_Elab_Term_withoutHeedElabAsElimImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -257,15 +261,14 @@ LEAN_EXPORT uint8_t l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_E lean_object* lean_io_promise_resolve(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6___closed__3; size_t lean_usize_of_nat(lean_object*); +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__2(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getNameOfIdent_x27(lean_object*); lean_object* l_Lean_Elab_Tactic_getGoals___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_getUnsolvedGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__2; static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__8___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___boxed(lean_object**); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___spec__4___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTerm(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_instInhabitedAlt___closed__1; @@ -273,6 +276,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases__1___closed__1; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getOptPreTacOfOptInductionAlts___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_tactic_customEliminators; +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__3(lean_object*, lean_object*, size_t, size_t); lean_object* l_Lean_Syntax_eqWithInfoAndTraceReuse(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); @@ -292,12 +296,13 @@ static lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_zip___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_withCaseRef___at_Lean_Elab_Tactic_evalAlt___spec__1___closed__1; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__13; static lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_InfoTree_Main_0__Lean_Elab_withSavedPartialInfoContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__3___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__9; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getOptPreTacOfOptInductionAlts___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__4; lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__5___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__6___boxed(lean_object**); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -309,7 +314,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_T LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltRHS___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__1; lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__7; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -317,6 +321,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction_declRange lean_object* l_Lean_Name_getPrefix(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_elabCasesTargets___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_isHoleRHS___closed__2; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_elabCasesTargets___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -325,6 +330,7 @@ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction__1___closed__4 LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabCasesTargets(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_ElimApp_mkElimApp___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__4; +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__4___closed__2; uint8_t l_Lean_InductiveVal_isNested(lean_object*); @@ -334,7 +340,6 @@ LEAN_EXPORT uint8_t l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_eva lean_object* l_Lean_MessageData_ofFormat(lean_object*); lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); lean_object* l_Lean_Elab_getBetterRef(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__11; lean_object* l_Lean_MVarId_withContext___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -361,7 +366,6 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_Elab_Tactic_ElimApp_evalAlt lean_object* l_Lean_Elab_addBuiltinIncrementalElab(lean_object*, lean_object*); uint8_t l_List_isEmpty___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withNarrowedArgTacticReuse___at_Lean_Elab_Tactic_evalInduction___spec__2___lambda__1(lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__4; lean_object* lean_st_mk_ref(lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_synthesizeInstMVarCore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_to_list(lean_object*); @@ -370,9 +374,7 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambd static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___lambda__1___closed__1; lean_object* l_Lean_Meta_abstractMVars(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__8; lean_object* l_Lean_MVarId_withContext___at_Lean_Elab_Tactic_withMainContext___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_num___override(lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_elabTermEnsuringType(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -382,18 +384,21 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___at___private_Lean_E LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_ElimApp_mkElimApp___spec__3(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___lambda__2___closed__2; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__4___lambda__1___boxed(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__1; +static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalAlt(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_levelZero; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg___lambda__1(lean_object*); lean_object* l_Lean_MVarId_revert(lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__16; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_instInhabitedExpr; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_InfoTree_substitute(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_addImplicitTargets(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__11; lean_object* l_Lean_Expr_constName_x3f(lean_object*); lean_object* l_Lean_Elab_pushInfoLeaf___at_Lean_Elab_Term_addDotCompletionInfo___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___closed__1; @@ -401,11 +406,10 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases___lambda__2(lean_object*, static lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__2; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabCasesTargets___boxed__const__1; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__9; static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction_declRange__1___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_MessageData_orList(lean_object*); lean_object* l_Lean_instantiateMVars___at_Lean_Elab_Tactic_getMainTarget___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__5; lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6___closed__1; lean_object* l_Lean_Syntax_getSepArgs(lean_object*); @@ -418,7 +422,6 @@ static lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_eva static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction__1___closed__1; lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___lambda__2___closed__2; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_addConstInfo___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabCasesTargets___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -432,9 +435,12 @@ static lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___closed__3; lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_instInhabitedAlt; +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__7(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_mkFreshExprMVarImpl(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__13; lean_object* l_Lean_Meta_saveState___rarg(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isIdent(lean_object*); @@ -442,7 +448,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__6___boxed(le static lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_addConstInfo___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_withInfoTreeContext___at_Lean_Elab_Tactic_evalTactic_eval___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__4; extern lean_object* l_Lean_Language_Snapshot_Diagnostics_empty; static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__4___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__7___boxed(lean_object**); @@ -471,9 +476,9 @@ lean_object* l_Array_append___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_MessageData_ofExpr(lean_object*); lean_object* l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_6____spec__1(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__5(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___closed__1; -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Meta_mkSimpCongrTheorem___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_eta(lean_object*); @@ -484,7 +489,6 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__3(lean_objec LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Term_ensureHasType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction_declRange__1___closed__1; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__5; lean_object* l_Lean_Name_mkStr6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds___closed__1; static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___lambda__2___closed__2; @@ -497,8 +501,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_Tactic_closeUsingOrAdmit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_elabCasesTargets___lambda__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__6; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__3; lean_object* l_Lean_Syntax_setArg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -506,7 +508,6 @@ lean_object* l_Lean_Meta_introNCore(lean_object*, lean_object*, lean_object*, ui static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__7; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__3___boxed(lean_object**); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(lean_object*, lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__8(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; @@ -519,6 +520,8 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_ static lean_object* l_Lean_Elab_Tactic_ElimApp_instInhabitedAlt___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getArgExpectedType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___boxed(lean_object**); +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltDArrow___boxed(lean_object*); lean_object* l_Lean_Elab_Term_addLocalVarInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingDomain_x21(lean_object*); @@ -529,12 +532,12 @@ LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___at___private_Lean_E LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___closed__1; +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getArgExpectedType___boxed(lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases__1___closed__3; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__15; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6___boxed(lean_object**); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); lean_object* l_Lean_MVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -543,9 +546,10 @@ lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Term_withDeclName___sp LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltDArrow(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getOptPreTacOfOptInductionAlts(lean_object*); +LEAN_EXPORT uint8_t l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__2(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__13(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); @@ -575,13 +579,12 @@ lean_object* l_Lean_Elab_Tactic_focus___rarg(lean_object*, lean_object*, lean_ob lean_object* l_Lean_RBTree_toArray___at_Lean_Meta_getFVarsToGeneralize___spec__1(lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); lean_object* l_Lean_addMessageContextFull___at_Lean_Meta_instAddMessageContextMetaM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l_Array_contains___at_Lean_registerInternalExceptionId___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__4___boxed(lean_object**); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Tactic_evalTactic_handleEx___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases__1___closed__4; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__2; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_mkElimApp___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Syntax_isNone(lean_object*); -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_panic_fn(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -589,15 +592,18 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_T LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___boxed__const__1; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__3; static lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_sub(lean_object*, lean_object*); lean_object* l_Lean_MVarId_tryClear(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn(lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__4; static lean_object* l_Lean_Elab_Tactic_elabCasesTargets___lambda__1___closed__1; -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__8; +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__7; LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__5___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getOptPreTacOfOptInductionAlts___boxed(lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_getRange_x3f(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_elabCasesTargets___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts___lambda__1___boxed(lean_object**); @@ -619,6 +625,7 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_Elim lean_object* lean_erase_macro_scopes(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getBindingName___boxed(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__2; static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__2; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Elab_Tactic_elabCasesTargets___spec__4(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__5___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__6___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -626,24 +633,25 @@ lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withReuseContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___spec__3___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getFType___boxed(lean_object*); static lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__5; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__15; uint8_t l_Lean_Syntax_hasMissing(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___boxed(lean_object**); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___spec__5___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__6; size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction___lambda__3___boxed(lean_object**); static lean_object* l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___closed__4; static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__8___closed__7; static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6___closed__4; lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalGeneralize___spec__9(size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; lean_object* lean_array_uget(lean_object*, size_t); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__4___boxed(lean_object**); lean_object* l_Lean_Expr_fvar___override(lean_object*); size_t lean_array_size(lean_object*); lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__2___boxed(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_checkAltsOfOptInductionAlts___spec__1___closed__2; @@ -660,11 +668,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_expandInduction_x3f(lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases___lambda__1___boxed(lean_object**); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange__1___closed__2; +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction__1___closed__3; lean_object* l_Lean_Meta_sortFVarIds(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -677,6 +685,7 @@ lean_object* l_Lean_Elab_Tactic_withTacticInfoContext___rarg(lean_object*, lean_ static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction_declRange__1___closed__7; lean_object* lean_string_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_withSaveInfoContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__2___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__6; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalInduction_checkTargets(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases__2(lean_object*); @@ -687,14 +696,11 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__11(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeTargets___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_isHoleRHS___boxed(lean_object*); static lean_object* l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__1; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103_(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); uint8_t l_Array_contains___at___private_Lean_Meta_FunInfo_0__Lean_Meta_collectDeps_visit___spec__2(lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg___lambda__1___closed__2; @@ -708,14 +714,16 @@ LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tac lean_object* l_Lean_Elab_Tactic_setGoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__7; LEAN_EXPORT lean_object* l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___lambda__2___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___boxed(lean_object**); uint8_t l_Lean_Exception_isRuntime(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Elab_Tactic_ElimApp_mkElimApp___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkConstWithLevelParams___at_Lean_Elab_Term_expandDeclId___spec__7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__5(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__3; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__1___boxed(lean_object**); +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__10; +static lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__14; LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_isFVar(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_evalInduction_checkTargets___spec__1___closed__1; @@ -723,9 +731,11 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_ lean_object* l_Lean_Expr_mvarId_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_evalCases___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getElimNameInfo___lambda__5___closed__2; +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Elab_getResetInfoTrees___at_Lean_Elab_Tactic_withTacticInfoContext___spec__2___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltLhses(lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalInduction_declRange__1___closed__5; +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2; static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__2; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); lean_object* lean_dbg_trace(lean_object*, lean_object*); @@ -735,10 +745,13 @@ static lean_object* l_Lean_Elab_Tactic_evalAlt___lambda__3___closed__2; lean_object* l_Lean_Elab_Tactic_replaceMainGoal(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_expr_instantiate1(lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); +static lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_setMotiveArg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Elab_Tactic_evalCases_declRange__1___closed__6; +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Elab_Tactic_evalCases___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__5; LEAN_EXPORT uint8_t l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___lambda__1(uint8_t, lean_object*); static lean_object* l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_withAltsOfOptInductionAlts___rarg___closed__1; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4973,7 +4986,78 @@ x_3 = lean_box(x_2); return x_3; } } -LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(size_t x_1, size_t x_2, lean_object* x_3) { +_start: +{ +uint8_t x_4; +x_4 = lean_usize_dec_lt(x_2, x_1); +if (x_4 == 0) +{ +return x_3; +} +else +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; size_t x_13; size_t x_14; lean_object* x_15; +x_5 = lean_array_uget(x_3, x_2); +x_6 = lean_unsigned_to_nat(0u); +x_7 = lean_array_uset(x_3, x_2, x_6); +x_8 = lean_ctor_get(x_5, 0); +lean_inc(x_8); +lean_dec(x_5); +x_9 = l_Lean_MessageData_ofName(x_8); +x_10 = l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__6; +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +x_12 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +x_13 = 1; +x_14 = lean_usize_add(x_2, x_13); +x_15 = lean_array_uset(x_7, x_2, x_12); +x_2 = x_14; +x_3 = x_15; +goto _start; +} +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5) { +_start: +{ +uint8_t x_6; +x_6 = lean_usize_dec_eq(x_3, x_4); +if (x_6 == 0) +{ +lean_object* x_7; lean_object* x_8; uint8_t x_9; size_t x_10; size_t x_11; +x_7 = lean_array_uget(x_2, x_3); +x_8 = lean_ctor_get(x_7, 0); +lean_inc(x_8); +x_9 = l_Array_contains___at_Lean_registerInternalExceptionId___spec__1(x_1, x_8); +lean_dec(x_8); +x_10 = 1; +x_11 = lean_usize_add(x_3, x_10); +if (x_9 == 0) +{ +lean_object* x_12; +x_12 = lean_array_push(x_5, x_7); +x_3 = x_11; +x_5 = x_12; +goto _start; +} +else +{ +lean_dec(x_7); +x_3 = x_11; +goto _start; +} +} +else +{ +return x_5; +} +} +} +LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4) { _start: { uint8_t x_5; @@ -5010,7 +5094,7 @@ return x_13; } } } -static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__1() { +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -5018,120 +5102,311 @@ x_1 = lean_mk_string_unchecked("invalid alternative name '", 26, 26); return x_1; } } -static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__2() { +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__1; +x_1 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3() { +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__3() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("', expected ", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__4() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = lean_box(0); -x_2 = lean_alloc_ctor(1, 1, 0); -lean_ctor_set(x_2, 0, x_1); +x_1 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__3; +x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__5() { _start: { -lean_object* x_13; lean_object* x_14; lean_object* x_26; uint8_t x_27; -x_13 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName(x_1); -x_26 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__7; -x_27 = lean_name_eq(x_13, x_26); -if (x_27 == 0) +lean_object* x_1; +x_1 = lean_mk_string_unchecked("', no unhandled alternatives", 28, 28); +return x_1; +} +} +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__6() { +_start: { -lean_object* x_28; lean_object* x_29; uint8_t x_30; -x_28 = lean_array_get_size(x_2); -x_29 = lean_unsigned_to_nat(0u); -x_30 = lean_nat_dec_lt(x_29, x_28); -if (x_30 == 0) +lean_object* x_1; lean_object* x_2; +x_1 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__5; +x_2 = l_Lean_stringToMessageData(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: { -lean_object* x_31; -lean_dec(x_28); -x_31 = lean_box(0); -x_14 = x_31; -goto block_25; +lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_59; uint8_t x_60; +lean_inc(x_1); +x_15 = lean_array_push(x_4, x_1); +x_16 = lean_array_get_size(x_2); +x_59 = lean_unsigned_to_nat(0u); +x_60 = lean_nat_dec_lt(x_59, x_16); +if (x_60 == 0) +{ +lean_object* x_61; +x_61 = lean_box(0); +x_17 = x_61; +goto block_58; } else { -size_t x_32; size_t x_33; uint8_t x_34; -x_32 = 0; -x_33 = lean_usize_of_nat(x_28); -lean_dec(x_28); -x_34 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(x_13, x_2, x_32, x_33); -if (x_34 == 0) +size_t x_62; size_t x_63; uint8_t x_64; +x_62 = 0; +x_63 = lean_usize_of_nat(x_16); +x_64 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__3(x_1, x_2, x_62, x_63); +if (x_64 == 0) { -lean_object* x_35; -x_35 = lean_box(0); -x_14 = x_35; -goto block_25; +lean_object* x_65; +x_65 = lean_box(0); +x_17 = x_65; +goto block_58; } else { -lean_object* x_36; lean_object* x_37; -lean_dec(x_13); -lean_dec(x_10); -x_36 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; -x_37 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_37, 0, x_36); -lean_ctor_set(x_37, 1, x_12); -return x_37; +lean_object* x_66; lean_object* x_67; +lean_dec(x_16); +lean_dec(x_12); +lean_dec(x_1); +x_66 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_66, 0, x_15); +x_67 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_67, 0, x_66); +lean_ctor_set(x_67, 1, x_14); +return x_67; } } +block_58: +{ +lean_object* x_18; uint8_t x_19; lean_object* x_20; +lean_dec(x_17); +x_18 = lean_unsigned_to_nat(0u); +x_19 = lean_nat_dec_lt(x_18, x_16); +if (x_19 == 0) +{ +lean_object* x_51; +lean_dec(x_16); +lean_dec(x_15); +x_51 = l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__1; +x_20 = x_51; +goto block_50; } else { -lean_object* x_38; lean_object* x_39; -lean_dec(x_13); -lean_dec(x_10); -x_38 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; -x_39 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_39, 0, x_38); -lean_ctor_set(x_39, 1, x_12); -return x_39; -} -block_25: +uint8_t x_52; +x_52 = lean_nat_dec_le(x_16, x_16); +if (x_52 == 0) { -lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; uint8_t x_21; -lean_dec(x_14); -x_15 = l_Lean_MessageData_ofName(x_13); -x_16 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__2; -x_17 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_17, 0, x_16); -lean_ctor_set(x_17, 1, x_15); -x_18 = l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___closed__4; -x_19 = lean_alloc_ctor(7, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -x_20 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalTactic___spec__1(x_1, x_19, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); -x_21 = !lean_is_exclusive(x_20); +lean_object* x_53; +lean_dec(x_16); +lean_dec(x_15); +x_53 = l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__1; +x_20 = x_53; +goto block_50; +} +else +{ +size_t x_54; size_t x_55; lean_object* x_56; lean_object* x_57; +x_54 = 0; +x_55 = lean_usize_of_nat(x_16); +lean_dec(x_16); +x_56 = l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__1; +x_57 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(x_15, x_2, x_54, x_55, x_56); +lean_dec(x_15); +x_20 = x_57; +goto block_50; +} +} +block_50: +{ +uint8_t x_21; +x_21 = l_Array_isEmpty___rarg(x_20); if (x_21 == 0) { -return x_20; +size_t x_22; size_t x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; uint8_t x_36; +x_22 = lean_array_size(x_20); +x_23 = 0; +x_24 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(x_22, x_23, x_20); +x_25 = lean_array_to_list(x_24); +x_26 = l_Lean_MessageData_orList(x_25); +x_27 = l_Lean_MessageData_ofName(x_1); +x_28 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2; +x_29 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_29, 0, x_28); +lean_ctor_set(x_29, 1, x_27); +x_30 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__4; +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_29); +lean_ctor_set(x_31, 1, x_30); +x_32 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_32, 0, x_31); +lean_ctor_set(x_32, 1, x_26); +x_33 = l_Lean_Elab_Tactic_ElimApp_setMotiveArg___closed__6; +x_34 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_34, 0, x_32); +lean_ctor_set(x_34, 1, x_33); +x_35 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalTactic___spec__1(x_3, x_34, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_36 = !lean_is_exclusive(x_35); +if (x_36 == 0) +{ +return x_35; } else { -lean_object* x_22; lean_object* x_23; lean_object* x_24; -x_22 = lean_ctor_get(x_20, 0); -x_23 = lean_ctor_get(x_20, 1); -lean_inc(x_23); -lean_inc(x_22); +lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_37 = lean_ctor_get(x_35, 0); +x_38 = lean_ctor_get(x_35, 1); +lean_inc(x_38); +lean_inc(x_37); +lean_dec(x_35); +x_39 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_39, 0, x_37); +lean_ctor_set(x_39, 1, x_38); +return x_39; +} +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; uint8_t x_46; lean_dec(x_20); -x_24 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_24, 0, x_22); -lean_ctor_set(x_24, 1, x_23); -return x_24; +x_40 = l_Lean_MessageData_ofName(x_1); +x_41 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2; +x_42 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_42, 0, x_41); +lean_ctor_set(x_42, 1, x_40); +x_43 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__6; +x_44 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_44, 0, x_42); +lean_ctor_set(x_44, 1, x_43); +x_45 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalTactic___spec__1(x_3, x_44, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +x_46 = !lean_is_exclusive(x_45); +if (x_46 == 0) +{ +return x_45; +} +else +{ +lean_object* x_47; lean_object* x_48; lean_object* x_49; +x_47 = lean_ctor_get(x_45, 0); +x_48 = lean_ctor_get(x_45, 1); +lean_inc(x_48); +lean_inc(x_47); +lean_dec(x_45); +x_49 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_49, 0, x_47); +lean_ctor_set(x_49, 1, x_48); +return x_49; } } } } -static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__1() { +} +} +LEAN_EXPORT uint8_t l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__2(lean_object* x_1) { +_start: +{ +uint8_t x_2; +x_2 = 0; +return x_2; +} +} +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__2___boxed), 1, 0); +return x_1; +} +} +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("duplicate alternative name '", 28, 28); +return x_1; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; lean_object* x_15; uint8_t x_16; +x_14 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName(x_1); +x_15 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__7; +x_16 = lean_name_eq(x_14, x_15); +if (x_16 == 0) +{ +uint8_t x_17; +x_17 = l_Array_contains___at_Lean_registerInternalExceptionId___spec__1(x_3, x_14); +if (x_17 == 0) +{ +lean_object* x_18; lean_object* x_19; +x_18 = lean_box(0); +x_19 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1(x_14, x_2, x_1, x_3, x_18, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +return x_19; +} +else +{ +uint8_t x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; +lean_dec(x_3); +x_20 = 1; +x_21 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1; +x_22 = l_Lean_Name_toString(x_14, x_20, x_21); +x_23 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__2; +x_24 = lean_string_append(x_23, x_22); +lean_dec(x_22); +x_25 = l_Lean_Elab_Tactic_ElimApp_mkElimApp_loop___closed__3; +x_26 = lean_string_append(x_24, x_25); +x_27 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_27, 0, x_26); +x_28 = l_Lean_MessageData_ofFormat(x_27); +x_29 = l_Lean_throwErrorAt___at_Lean_Elab_Tactic_evalTactic___spec__1(x_1, x_28, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +x_30 = !lean_is_exclusive(x_29); +if (x_30 == 0) +{ +return x_29; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +x_31 = lean_ctor_get(x_29, 0); +x_32 = lean_ctor_get(x_29, 1); +lean_inc(x_32); +lean_inc(x_31); +lean_dec(x_29); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +} +else +{ +lean_object* x_34; lean_object* x_35; +lean_dec(x_14); +lean_dec(x_11); +x_34 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_34, 0, x_3); +x_35 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_35, 0, x_34); +lean_ctor_set(x_35, 1, x_13); +return x_35; +} +} +} +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__1() { _start: { lean_object* x_1; @@ -5139,16 +5414,16 @@ x_1 = lean_mk_string_unchecked("invalid occurrence of wildcard alternative, it m return x_1; } } -static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2() { +static lean_object* _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__1; +x_1 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { uint8_t x_21; @@ -5172,7 +5447,6 @@ x_24 = lean_nat_dec_eq(x_8, x_23); if (x_24 == 0) { lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; uint8_t x_30; -lean_dec(x_11); x_25 = lean_unsigned_to_nat(1u); x_26 = lean_nat_sub(x_8, x_25); lean_dec(x_8); @@ -5186,7 +5460,7 @@ if (x_30 == 0) lean_object* x_31; lean_object* x_32; x_31 = lean_box(0); lean_inc(x_18); -x_32 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1(x_27, x_1, x_31, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_32 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3(x_27, x_1, x_11, x_31, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_27); if (lean_obj_tag(x_32) == 0) { @@ -5244,6 +5518,7 @@ if (x_43 == 0) { uint8_t x_44; lean_dec(x_26); +lean_dec(x_11); lean_dec(x_9); x_44 = !lean_is_exclusive(x_18); if (x_44 == 0) @@ -5254,7 +5529,7 @@ x_46 = l_Lean_replaceRef(x_27, x_45); lean_dec(x_45); lean_dec(x_27); lean_ctor_set(x_18, 5, x_46); -x_47 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2; +x_47 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2; x_48 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic___spec__2(x_47, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_18); x_49 = !lean_is_exclusive(x_48); @@ -5324,7 +5599,7 @@ lean_ctor_set(x_68, 10, x_63); lean_ctor_set(x_68, 11, x_65); lean_ctor_set_uint8(x_68, sizeof(void*)*12, x_64); lean_ctor_set_uint8(x_68, sizeof(void*)*12 + 1, x_66); -x_69 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2; +x_69 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2; x_70 = l_Lean_throwError___at_Lean_Elab_Tactic_evalTactic___spec__2(x_69, x_12, x_13, x_14, x_15, x_16, x_17, x_68, x_19, x_20); lean_dec(x_68); x_71 = lean_ctor_get(x_70, 0); @@ -5354,7 +5629,7 @@ else lean_object* x_75; lean_object* x_76; x_75 = lean_box(0); lean_inc(x_18); -x_76 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1(x_27, x_1, x_75, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_76 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3(x_27, x_1, x_11, x_75, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_27); if (lean_obj_tag(x_76) == 0) { @@ -5430,9 +5705,9 @@ x_15 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_15, 0, x_13); lean_ctor_set(x_15, 1, x_12); lean_ctor_set(x_15, 2, x_14); -x_16 = lean_box(0); +x_16 = l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__1; lean_inc(x_12); -x_17 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(x_1, x_2, x_12, x_15, x_13, x_12, x_14, x_12, x_13, lean_box(0), x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); +x_17 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4(x_1, x_2, x_12, x_15, x_13, x_12, x_14, x_12, x_13, lean_box(0), x_16, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11); lean_dec(x_15); lean_dec(x_12); if (lean_obj_tag(x_17) == 0) @@ -5441,49 +5716,77 @@ uint8_t x_18; x_18 = !lean_is_exclusive(x_17); if (x_18 == 0) { -lean_object* x_19; +lean_object* x_19; lean_object* x_20; x_19 = lean_ctor_get(x_17, 0); lean_dec(x_19); -lean_ctor_set(x_17, 0, x_16); +x_20 = lean_box(0); +lean_ctor_set(x_17, 0, x_20); return x_17; } else { -lean_object* x_20; lean_object* x_21; -x_20 = lean_ctor_get(x_17, 1); -lean_inc(x_20); +lean_object* x_21; lean_object* x_22; lean_object* x_23; +x_21 = lean_ctor_get(x_17, 1); +lean_inc(x_21); lean_dec(x_17); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_16); -lean_ctor_set(x_21, 1, x_20); -return x_21; +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_22); +lean_ctor_set(x_23, 1, x_21); +return x_23; } } else { -uint8_t x_22; -x_22 = !lean_is_exclusive(x_17); -if (x_22 == 0) +uint8_t x_24; +x_24 = !lean_is_exclusive(x_17); +if (x_24 == 0) { return x_17; } else { -lean_object* x_23; lean_object* x_24; lean_object* x_25; -x_23 = lean_ctor_get(x_17, 0); -x_24 = lean_ctor_get(x_17, 1); -lean_inc(x_24); -lean_inc(x_23); +lean_object* x_25; lean_object* x_26; lean_object* x_27; +x_25 = lean_ctor_get(x_17, 0); +x_26 = lean_ctor_get(x_17, 1); +lean_inc(x_26); +lean_inc(x_25); lean_dec(x_17); -x_25 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_25, 0, x_23); -lean_ctor_set(x_25, 1, x_24); -return x_25; +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_25); +lean_ctor_set(x_27, 1, x_26); +return x_27; } } } } -LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +_start: +{ +size_t x_4; size_t x_5; lean_object* x_6; +x_4 = lean_unbox_usize(x_1); +lean_dec(x_1); +x_5 = lean_unbox_usize(x_2); +lean_dec(x_2); +x_6 = l_Array_mapMUnsafe_map___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(x_4, x_5, x_3); +return x_6; +} +} +LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { +_start: +{ +size_t x_6; size_t x_7; lean_object* x_8; +x_6 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_7 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_8 = l_Array_foldlMUnsafe_fold___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(x_1, x_2, x_6, x_7, x_5); +lean_dec(x_2); +lean_dec(x_1); +return x_8; +} +} +LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4) { _start: { size_t x_5; size_t x_6; uint8_t x_7; lean_object* x_8; @@ -5491,32 +5794,60 @@ x_5 = lean_unbox_usize(x_3); lean_dec(x_3); x_6 = lean_unbox_usize(x_4); lean_dec(x_4); -x_7 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__1(x_1, x_2, x_5, x_6); +x_7 = l_Array_anyMUnsafe_any___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__3(x_1, x_2, x_5, x_6); lean_dec(x_2); lean_dec(x_1); x_8 = lean_box(x_7); return x_8; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { _start: { -lean_object* x_13; -x_13 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12); +lean_object* x_15; +x_15 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_13); lean_dec(x_11); +lean_dec(x_10); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_3); +lean_dec(x_2); +return x_15; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__2___boxed(lean_object* x_1) { +_start: +{ +uint8_t x_2; lean_object* x_3; +x_2 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__2(x_1); +lean_dec(x_1); +x_3 = lean_box(x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13) { +_start: +{ +lean_object* x_14; +x_14 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13); +lean_dec(x_12); +lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); lean_dec(x_7); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); -lean_dec(x_3); lean_dec(x_2); lean_dec(x_1); -return x_13; +return x_14; } } -LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___boxed(lean_object** _args) { +LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___boxed(lean_object** _args) { lean_object* x_1 = _args[0]; lean_object* x_2 = _args[1]; lean_object* x_3 = _args[2]; @@ -5540,7 +5871,7 @@ lean_object* x_20 = _args[19]; _start: { lean_object* x_21; -x_21 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +x_21 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); lean_dec(x_19); lean_dec(x_17); lean_dec(x_16); @@ -15158,16 +15489,26 @@ return x_24; static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("' has not been provided", 23, 23); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = lean_box(0); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2() { _start: { +lean_object* x_1; +x_1 = lean_mk_string_unchecked("' has not been provided", 23, 23); +return x_1; +} +} +static lean_object* _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; +x_1 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } @@ -15273,7 +15614,7 @@ if (x_41 == 0) lean_object* x_42; lean_object* x_43; x_42 = lean_ctor_get(x_40, 0); lean_dec(x_42); -x_43 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_43 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; lean_ctor_set(x_40, 0, x_43); return x_40; } @@ -15283,7 +15624,7 @@ lean_object* x_44; lean_object* x_45; lean_object* x_46; x_44 = lean_ctor_get(x_40, 1); lean_inc(x_44); lean_dec(x_40); -x_45 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_45 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; x_46 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_46, 0, x_45); lean_ctor_set(x_46, 1, x_44); @@ -15303,7 +15644,7 @@ x_49 = l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6___closed__2; x_50 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2; +x_51 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3; x_52 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); @@ -15327,7 +15668,7 @@ if (x_57 == 0) lean_object* x_58; lean_object* x_59; x_58 = lean_ctor_get(x_56, 0); lean_dec(x_58); -x_59 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_59 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; lean_ctor_set(x_56, 0, x_59); return x_56; } @@ -15337,7 +15678,7 @@ lean_object* x_60; lean_object* x_61; lean_object* x_62; x_60 = lean_ctor_get(x_56, 1); lean_inc(x_60); lean_dec(x_56); -x_61 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_61 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; x_62 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_62, 0, x_61); lean_ctor_set(x_62, 1, x_60); @@ -15380,7 +15721,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_6); -x_67 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_67 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; lean_ctor_set(x_30, 0, x_67); return x_30; } @@ -15426,7 +15767,7 @@ if (lean_is_exclusive(x_76)) { lean_dec_ref(x_76); x_78 = lean_box(0); } -x_79 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_79 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; if (lean_is_scalar(x_78)) { x_80 = lean_alloc_ctor(0, 2, 0); } else { @@ -15448,7 +15789,7 @@ x_83 = l_Lean_Elab_Tactic_ElimApp_evalAlts_applyAltStx___lambda__6___closed__2; x_84 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_84, 0, x_83); lean_ctor_set(x_84, 1, x_82); -x_85 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2; +x_85 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3; x_86 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_86, 0, x_84); lean_ctor_set(x_86, 1, x_85); @@ -15476,7 +15817,7 @@ if (lean_is_exclusive(x_90)) { lean_dec_ref(x_90); x_92 = lean_box(0); } -x_93 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_93 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; if (lean_is_scalar(x_92)) { x_94 = lean_alloc_ctor(0, 2, 0); } else { @@ -15524,7 +15865,7 @@ lean_dec(x_11); lean_dec(x_10); lean_dec(x_9); lean_dec(x_6); -x_99 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_99 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; x_100 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_100, 0, x_99); lean_ctor_set(x_100, 1, x_69); @@ -15721,7 +16062,7 @@ lean_dec(x_36); x_52 = lean_ctor_get(x_50, 1); lean_inc(x_52); lean_dec(x_50); -x_53 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3; +x_53 = l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1; x_27 = x_53; x_28 = x_52; goto block_35; @@ -17057,15 +17398,7 @@ x_20 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental(x_1, x_2, x_3, x_4, return x_20; } } -LEAN_EXPORT uint8_t l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2(lean_object* x_1) { -_start: -{ -uint8_t x_2; -x_2 = 0; -return x_2; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1() { _start: { lean_object* x_1; @@ -17073,7 +17406,7 @@ x_1 = lean_mk_string_unchecked("Tactic", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__2() { _start: { lean_object* x_1; @@ -17081,7 +17414,7 @@ x_1 = lean_mk_string_unchecked("ElimApp", 7, 7); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__3() { _start: { lean_object* x_1; @@ -17089,7 +17422,7 @@ x_1 = lean_mk_string_unchecked("evalAlts", 8, 8); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__4() { _start: { lean_object* x_1; @@ -17097,45 +17430,37 @@ x_1 = lean_mk_string_unchecked("goWithInfo", 10, 10); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_2 = l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; -x_4 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__2; -x_5 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__3; -x_6 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__4; +x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; +x_4 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__2; +x_5 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__3; +x_6 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__4; x_7 = l_Lean_Name_mkStr6(x_1, x_2, x_3, x_4, x_5, x_6); return x_7; } } -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___boxed), 1, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__6() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__5; +x_1 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__5; x_2 = 1; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__6; +x_3 = l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; x_1 = lean_box(0); -x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__7; +x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__6; x_3 = l_Lean_Language_Snapshot_Diagnostics_empty; x_4 = 0; x_5 = lean_alloc_ctor(0, 3, 1); @@ -17146,7 +17471,7 @@ lean_ctor_set_uint8(x_5, sizeof(void*)*3, x_4); return x_5; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; @@ -17166,7 +17491,7 @@ lean_ctor_set(x_26, 1, x_25); x_27 = lean_unsigned_to_nat(0u); x_28 = l_Lean_Elab_Tactic_ElimApp_mkElimApp___closed__1; x_29 = l_Array_zipWithAux___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___spec__1(x_1, x_11, x_27, x_28); -x_30 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__8; +x_30 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__7; x_31 = lean_alloc_ctor(0, 5, 0); lean_ctor_set(x_31, 0, x_30); lean_ctor_set(x_31, 1, x_24); @@ -17308,11 +17633,11 @@ return x_63; } } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15, lean_object* x_16, lean_object* x_17, lean_object* x_18, lean_object* x_19, lean_object* x_20) { _start: { lean_object* x_21; lean_object* x_22; lean_object* x_23; -x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___boxed), 20, 10); +x_21 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___boxed), 20, 10); lean_closure_set(x_21, 0, x_1); lean_closure_set(x_21, 1, x_11); lean_closure_set(x_21, 2, x_2); @@ -17368,7 +17693,7 @@ lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; x_26 = lean_ctor_get(x_23, 0); lean_inc(x_26); lean_dec(x_23); -x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__4___boxed), 20, 10); +x_27 = lean_alloc_closure((void*)(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___boxed), 20, 10); lean_closure_set(x_27, 0, x_4); lean_closure_set(x_27, 1, x_26); lean_closure_set(x_27, 2, x_1); @@ -17549,14 +17874,36 @@ lean_dec(x_1); return x_19; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___boxed(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___boxed(lean_object** _args) { +lean_object* x_1 = _args[0]; +lean_object* x_2 = _args[1]; +lean_object* x_3 = _args[2]; +lean_object* x_4 = _args[3]; +lean_object* x_5 = _args[4]; +lean_object* x_6 = _args[5]; +lean_object* x_7 = _args[6]; +lean_object* x_8 = _args[7]; +lean_object* x_9 = _args[8]; +lean_object* x_10 = _args[9]; +lean_object* x_11 = _args[10]; +lean_object* x_12 = _args[11]; +lean_object* x_13 = _args[12]; +lean_object* x_14 = _args[13]; +lean_object* x_15 = _args[14]; +lean_object* x_16 = _args[15]; +lean_object* x_17 = _args[16]; +lean_object* x_18 = _args[17]; +lean_object* x_19 = _args[18]; +lean_object* x_20 = _args[19]; _start: { -uint8_t x_2; lean_object* x_3; -x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2(x_1); -lean_dec(x_1); -x_3 = lean_box(x_2); -return x_3; +lean_object* x_21; +x_21 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_6); +lean_dec(x_4); +return x_21; } } LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___boxed(lean_object** _args) { @@ -17584,38 +17931,6 @@ _start: { lean_object* x_21; x_21 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); -lean_dec(x_11); -lean_dec(x_9); -lean_dec(x_6); -lean_dec(x_4); -return x_21; -} -} -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__4___boxed(lean_object** _args) { -lean_object* x_1 = _args[0]; -lean_object* x_2 = _args[1]; -lean_object* x_3 = _args[2]; -lean_object* x_4 = _args[3]; -lean_object* x_5 = _args[4]; -lean_object* x_6 = _args[5]; -lean_object* x_7 = _args[6]; -lean_object* x_8 = _args[7]; -lean_object* x_9 = _args[8]; -lean_object* x_10 = _args[9]; -lean_object* x_11 = _args[10]; -lean_object* x_12 = _args[11]; -lean_object* x_13 = _args[12]; -lean_object* x_14 = _args[13]; -lean_object* x_15 = _args[14]; -lean_object* x_16 = _args[15]; -lean_object* x_17 = _args[16]; -lean_object* x_18 = _args[17]; -lean_object* x_19 = _args[18]; -lean_object* x_20 = _args[19]; -_start: -{ -lean_object* x_21; -x_21 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__4(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15, x_16, x_17, x_18, x_19, x_20); return x_21; } } @@ -22216,7 +22531,7 @@ lean_dec(x_2); return x_10; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1() { _start: { lean_object* x_1; @@ -22224,7 +22539,7 @@ x_1 = lean_mk_string_unchecked("tactic", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2() { _start: { lean_object* x_1; @@ -22232,17 +22547,17 @@ x_1 = lean_mk_string_unchecked("customEliminators", 17, 17); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__4() { _start: { lean_object* x_1; @@ -22250,13 +22565,13 @@ x_1 = lean_mk_string_unchecked("enable using custom eliminators in the 'inductio return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__5() { _start: { uint8_t x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = 1; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1; -x_3 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__4; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1; +x_3 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__4; x_4 = lean_box(x_1); x_5 = lean_alloc_ctor(0, 3, 0); lean_ctor_set(x_5, 0, x_4); @@ -22265,26 +22580,26 @@ lean_ctor_set(x_5, 2, x_3); return x_5; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_2 = l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; -x_4 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1; -x_5 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2; +x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; +x_4 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1; +x_5 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2; x_6 = l_Lean_Name_mkStr5(x_1, x_2, x_3, x_4, x_5); return x_6; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__3; -x_3 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__5; -x_4 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__6; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__3; +x_3 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__5; +x_4 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__6; x_5 = l_Lean_Option_register___at_Lean_Elab_initFn____x40_Lean_Elab_AutoBound___hyg_6____spec__1(x_2, x_3, x_4, x_1); return x_5; } @@ -26733,7 +27048,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_2 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__2; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; +x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; x_4 = l_Lean_Elab_Tactic_evalAlt___lambda__3___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -26753,7 +27068,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_2 = l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; +x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalInduction__1___closed__2; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -27714,7 +28029,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_Elab_Tactic_elabCasesTargets___lambda__1___closed__4; x_2 = l_Lean_Elab_Tactic_elabCasesTargets___lambda__1___closed__5; -x_3 = lean_unsigned_to_nat(717u); +x_3 = lean_unsigned_to_nat(730u); x_4 = lean_unsigned_to_nat(8u); x_5 = l_Lean_Elab_Tactic_elabCasesTargets___lambda__1___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -29915,7 +30230,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_2 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__2; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; +x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalCases__1___closed__1; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -29935,7 +30250,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_2 = l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; -x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; +x_3 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; x_4 = l___regBuiltin_Lean_Elab_Tactic_evalCases__1___closed__3; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -30072,7 +30387,7 @@ x_3 = l_Lean_Elab_addBuiltinIncrementalElab(x_2, x_1); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__1() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -30082,7 +30397,7 @@ x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__2() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -30092,27 +30407,27 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__3() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__2; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__2; x_2 = l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__4() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__3; -x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__3; +x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__5() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__5() { _start: { lean_object* x_1; @@ -30120,17 +30435,17 @@ x_1 = lean_mk_string_unchecked("initFn", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__6() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__4; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__5; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__4; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__7() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__7() { _start: { lean_object* x_1; @@ -30138,47 +30453,47 @@ x_1 = lean_mk_string_unchecked("_@", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__8() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__6; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__7; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__6; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__9() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__8; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__8; x_2 = l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getAltName___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__10() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__9; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__9; x_2 = l_Lean_Elab_Term_withoutTacticIncrementality___at_Lean_Elab_Tactic_ElimApp_evalAlts_applyPreTac___spec__1___closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__11() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__10; -x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__10; +x_2 = l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__12() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__12() { _start: { lean_object* x_1; @@ -30186,17 +30501,17 @@ x_1 = lean_mk_string_unchecked("Induction", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__13() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__11; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__12; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__11; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__14() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__14() { _start: { lean_object* x_1; @@ -30204,33 +30519,33 @@ x_1 = lean_mk_string_unchecked("_hyg", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__15() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__13; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__14; +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__13; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__16() { +static lean_object* _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__15; -x_2 = lean_unsigned_to_nat(11161u); +x_1 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__15; +x_2 = lean_unsigned_to_nat(11303u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; -x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__1; +x_2 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__1; x_3 = 0; -x_4 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__16; +x_4 = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__16; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); if (lean_obj_tag(x_5) == 0) { @@ -30383,16 +30698,26 @@ l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFiel lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___lambda__1___closed__2); l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getAltNumFields___closed__1); -l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__1 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__1(); -lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__1); -l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__2 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__2(); -lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__2); -l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3(); -lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___lambda__1___closed__3); -l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__1 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__1(); -lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__1); -l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2(); -lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__2___closed__2); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__1 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__1); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__2); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__3 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__3(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__3); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__4 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__4(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__4); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__5 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__5(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__5); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__6 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__6(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__1___closed__6); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__1); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__2 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__2(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___lambda__3___closed__2); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__1 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__1(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__1); +l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2 = _init_l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2(); +lean_mark_persistent(l_Std_Range_forIn_x27_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_checkAltNames___spec__4___closed__2); l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___lambda__1___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___lambda__1___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_getNumExplicitFields___lambda__1___closed__1); l_Lean_Elab_withSaveInfoContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__2___closed__1 = _init_l_Lean_Elab_withSaveInfoContext___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_ElimApp_saveAltVarsInfo___spec__2___closed__1(); @@ -30445,24 +30770,24 @@ l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncrem lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__1); l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2(); lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__2); +l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3(); +lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___closed__3); l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___boxed__const__1 = _init_l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___boxed__const__1(); lean_mark_persistent(l_Array_forIn_x27Unsafe_loop___at_Lean_Elab_Tactic_ElimApp_evalAlts_goWithIncremental___spec__8___lambda__2___boxed__const__1); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__1); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__2 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__2); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__3 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__3); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__4 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__4); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__5 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__5); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__6 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__6); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__7 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__7); -l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__8 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__3___closed__8); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__1); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__2 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__2); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__3 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__3); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__4 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__4); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__5 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__5); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__6 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__6); +l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__7 = _init_l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_ElimApp_evalAlts_goWithInfo___lambda__2___closed__7); l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_getUserGeneralizingFVarIds___closed__1); l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___lambda__2___closed__1 = _init_l_Array_forIn_x27Unsafe_loop___at___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_generalizeVars___spec__1___lambda__2___closed__1(); @@ -30505,19 +30830,19 @@ l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2 = _init_l_Le lean_mark_persistent(l_Lean_Elab_Tactic_getInductiveValFromMajor___lambda__1___closed__2); l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___closed__1 = _init_l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___closed__1(); lean_mark_persistent(l___private_Lean_Elab_Tactic_Induction_0__Lean_Elab_Tactic_elabTermForElim___closed__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__2); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__3 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__3); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__4 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__4); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__5 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__5); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__6 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103____closed__6); -if (builtin) {res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8103_(lean_io_mk_world()); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__1); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__2); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__3 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__3); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__4 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__4); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__5 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__5); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__6 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245____closed__6); +if (builtin) {res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_8245_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; l_Lean_Elab_Tactic_tactic_customEliminators = lean_io_result_get_value(res); lean_mark_persistent(l_Lean_Elab_Tactic_tactic_customEliminators); @@ -30646,39 +30971,39 @@ lean_dec_ref(res); }if (builtin) {res = l___regBuiltin_Lean_Elab_Tactic_evalCases__2(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__1(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__1); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__2 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__2(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__2); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__3 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__3(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__3); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__4 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__4(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__4); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__5 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__5(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__5); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__6 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__6(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__6); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__7 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__7(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__7); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__8 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__8(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__8); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__9 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__9(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__9); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__10 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__10(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__10); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__11 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__11(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__11); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__12 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__12(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__12); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__13 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__13(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__13); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__14 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__14(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__14); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__15 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__15(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__15); -l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__16 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__16(); -lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161____closed__16); -if (builtin) {res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11161_(lean_io_mk_world()); +}l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__1 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__1(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__1); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__2 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__2(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__2); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__3 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__3(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__3); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__4 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__4(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__4); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__5 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__5(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__5); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__6 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__6(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__6); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__7 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__7(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__7); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__8 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__8(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__8); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__9 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__9(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__9); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__10 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__10(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__10); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__11 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__11(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__11); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__12 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__12(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__12); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__13 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__13(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__13); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__14 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__14(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__14); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__15 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__15(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__15); +l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__16 = _init_l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__16(); +lean_mark_persistent(l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303____closed__16); +if (builtin) {res = l_Lean_Elab_Tactic_initFn____x40_Lean_Elab_Tactic_Induction___hyg_11303_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Expr.c b/stage0/stdlib/Lean/Expr.c index 2b0ab5678a..d12837a2cc 100644 --- a/stage0/stdlib/Lean/Expr.c +++ b/stage0/stdlib/Lean/Expr.c @@ -16,6 +16,8 @@ extern "C" { LEAN_EXPORT lean_object* l_Lean_Expr_bindingName_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_BinderInfo_noConfusion___rarg___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_const___override(lean_object*, lean_object*); +static lean_object* l_Lean_Expr_setPPPiBinderTypes___closed__1; +static lean_object* l_Lean_Expr_setPPNumericTypes___closed__2; static lean_object* l_Lean_Expr_updateFVar_x21___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_letValue_x21___boxed(lean_object*); @@ -40,6 +42,7 @@ LEAN_EXPORT lean_object* l_Lean_instInhabitedMVarIdMap(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkNatLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_BinderInfo_isInstImplicit___boxed(lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprBinderInfo____x40_Lean_Expr___hyg_422____closed__3; +static lean_object* l_Lean_Expr_setPPNumericTypes___closed__1; static lean_object* l_Lean_instHashableBinderInfo___closed__1; static lean_object* l_Lean_Expr_letBody_x21___closed__1; LEAN_EXPORT lean_object* l_Lean_Expr_hashEx___boxed(lean_object*); @@ -449,6 +452,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_isAutoParam___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkAppN___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_letType_x21(lean_object*); static lean_object* l_Lean_instBEqMVarId___closed__1; +LEAN_EXPORT lean_object* l_Lean_Expr_setPPNumericTypes___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_mkDataForBinder___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_sizeWithoutSharing___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_instToString; @@ -628,6 +632,7 @@ LEAN_EXPORT lean_object* l_Lean_mkNot(lean_object*); LEAN_EXPORT lean_object* l_repr___at___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hyg_3025____spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_bindingName_x21___boxed(lean_object*); lean_object* lean_expr_lift_loose_bvars(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Expr_setPPPiBinderTypes___closed__2; LEAN_EXPORT lean_object* l_Lean_Expr_letName_x21___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Expr_0__Lean_natLEPred; LEAN_EXPORT lean_object* l_panic___at_Lean_Expr_mvarId_x21___spec__1(lean_object*); @@ -656,6 +661,7 @@ static lean_object* l_Lean_Nat_mkInstSub___closed__3; LEAN_EXPORT lean_object* l_Lean_Expr_appFn_x21(lean_object*); static lean_object* l_Lean_mkNatLit___closed__1; LEAN_EXPORT lean_object* l_Lean_mkAppRange___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Expr_setPPFunBinderTypes___closed__1; static lean_object* l_Lean_Expr_setPPUniverses___closed__2; LEAN_EXPORT lean_object* l_Lean_Expr_Data_hasExprMVar___boxed(lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_Expr_updateLet_x21Impl___closed__2; @@ -805,6 +811,7 @@ uint16_t lean_uint16_add(uint16_t, uint16_t); static lean_object* l___private_Lean_Expr_0__Lean_reprBinderInfo____x40_Lean_Expr___hyg_422____closed__8; LEAN_EXPORT lean_object* l_Lean_Expr_getAppPrefix(lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Expr_setPPPiBinderTypes___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Expr_0__Lean_beqLiteral____x40_Lean_Expr___hyg_33____boxed(lean_object*, lean_object*); static lean_object* l_Lean_Expr_appArg_x21___closed__2; static lean_object* l___private_Lean_Expr_0__Lean_natSubFn___closed__3; @@ -949,6 +956,7 @@ lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_isLHSGoal_x3f___closed__2; lean_object* l_panic___at_Lean_Level_normalize___spec__1(lean_object*); static lean_object* l_Lean_instForInFVarIdSetFVarId___closed__2; +LEAN_EXPORT lean_object* l_Lean_Expr_setPPNumericTypes(lean_object*, uint8_t); static lean_object* l___private_Lean_Expr_0__Lean_natAddFn___closed__3; LEAN_EXPORT lean_object* l_Lean_Nat_mkInstHMod; LEAN_EXPORT lean_object* l_Lean_mkEM(lean_object*); @@ -1005,6 +1013,7 @@ static lean_object* l_Lean_Nat_mkInstLE___closed__1; static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hyg_3025____closed__26; LEAN_EXPORT lean_object* l_Lean_mkFVar(lean_object*); static lean_object* l_Lean_mkNatSucc___closed__2; +LEAN_EXPORT lean_object* l_Lean_Expr_setPPFunBinderTypes(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_instReprLiteral; LEAN_EXPORT lean_object* l_Lean_Expr_getArg_x21_x27(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Nat_mkInstHMod___closed__1; @@ -1012,6 +1021,7 @@ static lean_object* l_Lean_Nat_mkInstDiv___closed__3; LEAN_EXPORT lean_object* l_Lean_Expr_bindingBody_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_appFn___boxed(lean_object*, lean_object*); uint32_t lean_uint32_add(uint32_t, uint32_t); +LEAN_EXPORT lean_object* l_Lean_Expr_setPPFunBinderTypes___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hyg_3025____closed__15; static lean_object* l_Lean_Expr_ctorName___closed__10; LEAN_EXPORT lean_object* l_Lean_Expr_instantiate1___boxed(lean_object*, lean_object*); @@ -1100,6 +1110,7 @@ LEAN_EXPORT lean_object* l_Lean_instReprData__1___boxed(lean_object*, lean_objec LEAN_EXPORT lean_object* l_Lean_instBEqData__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Expr_isTrue___closed__2; +LEAN_EXPORT lean_object* l_Lean_Expr_setPPPiBinderTypes(lean_object*, uint8_t); LEAN_EXPORT lean_object* l_Lean_Expr_withAppRev___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Expr_projIdx_x21___closed__1; static lean_object* l_Lean_Expr_mkData___closed__3; @@ -1158,6 +1169,7 @@ LEAN_EXPORT uint64_t l_Lean_instInhabitedData__1; LEAN_EXPORT lean_object* l_Lean_mkFreshLMVarId___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_getRevArg_x21_x27(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_constName___boxed(lean_object*); +static lean_object* l_Lean_Expr_setPPFunBinderTypes___closed__2; LEAN_EXPORT uint8_t l_Lean_Expr_hasLevelMVar(lean_object*); LEAN_EXPORT lean_object* l_Lean_mkFreshFVarId___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Expr_0__Lean_reprExpr____x40_Lean_Expr___hyg_3025____closed__14; @@ -30205,6 +30217,117 @@ x_4 = l_Lean_Expr_setPPUniverses(x_1, x_3); return x_4; } } +static lean_object* _init_l_Lean_Expr_setPPPiBinderTypes___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("piBinderTypes", 13, 13); +return x_1; +} +} +static lean_object* _init_l_Lean_Expr_setPPPiBinderTypes___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Expr_setPPExplicit___closed__1; +x_2 = l_Lean_Expr_setPPPiBinderTypes___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_setPPPiBinderTypes(lean_object* x_1, uint8_t x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Expr_setPPPiBinderTypes___closed__2; +x_4 = l_Lean_Expr_setOption___at_Lean_Expr_setPPExplicit___spec__1(x_1, x_3, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_setPPPiBinderTypes___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_2); +lean_dec(x_2); +x_4 = l_Lean_Expr_setPPPiBinderTypes(x_1, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Expr_setPPFunBinderTypes___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("funBinderTypes", 14, 14); +return x_1; +} +} +static lean_object* _init_l_Lean_Expr_setPPFunBinderTypes___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Expr_setPPExplicit___closed__1; +x_2 = l_Lean_Expr_setPPFunBinderTypes___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_setPPFunBinderTypes(lean_object* x_1, uint8_t x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Expr_setPPFunBinderTypes___closed__2; +x_4 = l_Lean_Expr_setOption___at_Lean_Expr_setPPExplicit___spec__1(x_1, x_3, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_setPPFunBinderTypes___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_2); +lean_dec(x_2); +x_4 = l_Lean_Expr_setPPFunBinderTypes(x_1, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Expr_setPPNumericTypes___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("numericTypes", 12, 12); +return x_1; +} +} +static lean_object* _init_l_Lean_Expr_setPPNumericTypes___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Expr_setPPExplicit___closed__1; +x_2 = l_Lean_Expr_setPPNumericTypes___closed__1; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_setPPNumericTypes(lean_object* x_1, uint8_t x_2) { +_start: +{ +lean_object* x_3; lean_object* x_4; +x_3 = l_Lean_Expr_setPPNumericTypes___closed__2; +x_4 = l_Lean_Expr_setOption___at_Lean_Expr_setPPExplicit___spec__1(x_1, x_3, x_2); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Expr_setPPNumericTypes___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = lean_unbox(x_2); +lean_dec(x_2); +x_4 = l_Lean_Expr_setPPNumericTypes(x_1, x_3); +return x_4; +} +} LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Expr_setAppPPExplicit___spec__1(size_t x_1, size_t x_2, lean_object* x_3) { _start: { @@ -34220,6 +34343,18 @@ l_Lean_Expr_setPPUniverses___closed__1 = _init_l_Lean_Expr_setPPUniverses___clos lean_mark_persistent(l_Lean_Expr_setPPUniverses___closed__1); l_Lean_Expr_setPPUniverses___closed__2 = _init_l_Lean_Expr_setPPUniverses___closed__2(); lean_mark_persistent(l_Lean_Expr_setPPUniverses___closed__2); +l_Lean_Expr_setPPPiBinderTypes___closed__1 = _init_l_Lean_Expr_setPPPiBinderTypes___closed__1(); +lean_mark_persistent(l_Lean_Expr_setPPPiBinderTypes___closed__1); +l_Lean_Expr_setPPPiBinderTypes___closed__2 = _init_l_Lean_Expr_setPPPiBinderTypes___closed__2(); +lean_mark_persistent(l_Lean_Expr_setPPPiBinderTypes___closed__2); +l_Lean_Expr_setPPFunBinderTypes___closed__1 = _init_l_Lean_Expr_setPPFunBinderTypes___closed__1(); +lean_mark_persistent(l_Lean_Expr_setPPFunBinderTypes___closed__1); +l_Lean_Expr_setPPFunBinderTypes___closed__2 = _init_l_Lean_Expr_setPPFunBinderTypes___closed__2(); +lean_mark_persistent(l_Lean_Expr_setPPFunBinderTypes___closed__2); +l_Lean_Expr_setPPNumericTypes___closed__1 = _init_l_Lean_Expr_setPPNumericTypes___closed__1(); +lean_mark_persistent(l_Lean_Expr_setPPNumericTypes___closed__1); +l_Lean_Expr_setPPNumericTypes___closed__2 = _init_l_Lean_Expr_setPPNumericTypes___closed__2(); +lean_mark_persistent(l_Lean_Expr_setPPNumericTypes___closed__2); l_Lean_Expr_isLetFun___closed__1 = _init_l_Lean_Expr_isLetFun___closed__1(); lean_mark_persistent(l_Lean_Expr_isLetFun___closed__1); l_Lean_Expr_isLetFun___closed__2 = _init_l_Lean_Expr_isLetFun___closed__2(); diff --git a/stage0/stdlib/Lean/Message.c b/stage0/stdlib/Lean/Message.c index 98b7e379cc..9554d63665 100644 --- a/stage0/stdlib/Lean/Message.c +++ b/stage0/stdlib/Lean/Message.c @@ -14,6 +14,7 @@ extern "C" { #endif static lean_object* l_Lean_MessageData_instCoeOptionExpr___closed__3; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_splitAux___at_Lean_stringToMessageData___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_instInhabitedMessageSeverity; LEAN_EXPORT lean_object* l_Lean_instToMessageDataOptionExpr(lean_object*); @@ -31,19 +32,20 @@ LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString___lambda__2(lean_object*, LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163_(lean_object*); static lean_object* l_Lean_SerialMessage_toString___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_paren(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__6; static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__1___closed__2; static lean_object* l_Lean_mkErrorStringWithPos___closed__4; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17; static lean_object* l_Lean_instImpl____x40_Lean_Message___hyg_604____closed__3; uint32_t lean_string_utf8_get(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___lambda__1___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__11; lean_object* lean_mk_empty_array_with_capacity(lean_object*); size_t lean_usize_shift_right(size_t, size_t); static lean_object* l_Lean_KernelException_toMessageData___closed__4; static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__5; +static lean_object* l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; LEAN_EXPORT lean_object* l_Lean_SerialMessage_toMessage(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__50; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__10; LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__1___boxed(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__36; lean_object* l_Lean_Json_mkObj(lean_object*); @@ -53,38 +55,41 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageData_formatAux_ static lean_object* l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124____closed__3; static lean_object* l_Lean_SerialMessage_toString___lambda__3___closed__3; LEAN_EXPORT lean_object* l_Lean_MessageLog_toList___boxed(lean_object*); +static lean_object* l_Lean_MessageData_orList___closed__5; static lean_object* l_Lean_KernelException_toMessageData___closed__6; LEAN_EXPORT lean_object* l_Lean_MessageData_toString(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_indentD(lean_object*); static lean_object* l_Lean_termM_x21_____closed__1; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__3; lean_object* l_EStateM_instInhabited___rarg(lean_object*, lean_object*); lean_object* l_Lean_Syntax_formatStxAux(lean_object*, uint8_t, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3; static lean_object* l_Lean_MessageData_lazy___elambda__1___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__19; LEAN_EXPORT lean_object* l_Lean_MessageData_ofSyntax___elambda__2(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_joinSep(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__1; lean_object* l_Lean_Name_toString(lean_object*, uint8_t, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg(lean_object*, lean_object*); static size_t l_Lean_instInhabitedMessageLog___closed__3; +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650_(lean_object*); static lean_object* l_Lean_MessageData_ofList___closed__4; -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___boxed(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9; +static lean_object* l_Lean_MessageData_orList___closed__3; LEAN_EXPORT lean_object* l_Lean_MessageData_ofList(lean_object*); static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__3; lean_object* l_Lean_PersistentArray_push___rarg(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__12; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageLog_errorsToWarnings___spec__4(size_t, size_t, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__26; lean_object* l_Lean_TSyntax_expandInterpolatedStr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_MessageData_andList___closed__6; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__8; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__6; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__2; +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790_(lean_object*); static lean_object* l_Lean_MessageData_ofName___closed__1; static lean_object* l_Lean_instToMessageDataOption___rarg___closed__2; +static lean_object* l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__8; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__22; uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_KernelException_toMessageData___closed__37; static lean_object* l_Lean_addMessageContextPartial___rarg___lambda__1___closed__1; @@ -93,6 +98,7 @@ static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____ LEAN_EXPORT lean_object* l_Lean_MessageLog_msgs(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_ofArray(lean_object*); static lean_object* l_Lean_MessageData_hasSyntheticSorry_visit___closed__3; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_mapM___at_Lean_MessageLog_errorsToWarnings___spec__1(lean_object*); static lean_object* l_Lean_MessageData_hasSyntheticSorry_visit___closed__1; lean_object* lean_array_fget(lean_object*, lean_object*); @@ -102,8 +108,9 @@ static lean_object* l_Lean_MessageData_formatAux___lambda__1___closed__2; LEAN_EXPORT lean_object* l_Lean_instToMessageDataOption___rarg(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__5; LEAN_EXPORT lean_object* l_String_splitAux___at_Lean_stringToMessageData___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__20; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_ofList___closed__7; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__24; LEAN_EXPORT lean_object* l_Lean_MessageData_hasTag___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeArrayExpr(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__25; @@ -115,7 +122,9 @@ static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21 LEAN_EXPORT lean_object* l_Lean_instToJsonBaseMessage___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_hasSyntheticSorry(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_formatAux___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__26; static lean_object* l_Lean_instInhabitedBaseMessage___rarg___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6; LEAN_EXPORT lean_object* l_Lean_MessageData_formatAux___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_mkErrorStringWithPos(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__2; @@ -123,7 +132,6 @@ LEAN_EXPORT lean_object* l_Lean_instToMessageDataOption(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataSyntax; LEAN_EXPORT lean_object* l_Lean_instAddMessageContextOfMonadLift___rarg(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_termM_x21_____closed__12; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__30; static lean_object* l_Lean_KernelException_toMessageData___closed__34; uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); @@ -132,61 +140,58 @@ LEAN_EXPORT lean_object* l_Lean_stringToMessageData(lean_object*); lean_object* l_Lean_Expr_mvar___override(lean_object*); lean_object* l_List_flatMapTR_go___at___private_Lean_Server_Rpc_Basic_0__Lean_Lsp_toJsonRpcRef____x40_Lean_Server_Rpc_Basic___hyg_173____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeListExpr(lean_object*); +static lean_object* l_Lean_MessageData_orList___closed__2; lean_object* l_Lean_instInhabitedPersistentArrayNode(lean_object*); static lean_object* l_Lean_MessageData_formatAux___lambda__1___closed__6; lean_object* l_Lean_PersistentArray_toList___rarg(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__32; static lean_object* l_Lean_MessageData_formatAux___closed__3; -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1; static lean_object* l_Lean_MessageLog_empty___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_106____boxed(lean_object*, lean_object*); lean_object* l_Lean_KVMap_insertCore(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2(lean_object*, lean_object*); uint8_t lean_string_dec_eq(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Message_toJson(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_lazy___elambda__1___closed__3; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeString; static lean_object* l_Lean_MessageData_nil___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_instAppend(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataTSyntax___rarg(lean_object*); +static lean_object* l_Lean_MessageData_orList___closed__4; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeSyntax; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__14; LEAN_EXPORT lean_object* l_Lean_instToMessageDataOfToFormat___rarg(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9; lean_object* lean_string_utf8_byte_size(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6; lean_object* l_Lean_Json_getBool_x3f(lean_object*); static lean_object* l_Lean_MessageData_instCoeString___closed__3; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull(lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedBaseMessage___rarg(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__19; LEAN_EXPORT lean_object* l_Lean_MessageData_ofExpr___elambda__2(lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Expr_hasSyntheticSorry(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4; LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeOptionExpr(lean_object*); static lean_object* l_Lean_instInhabitedMessageData___closed__1; lean_object* l_List_mapTR_loop___rarg(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33; static lean_object* l_Lean_KernelException_toMessageData___closed__44; static lean_object* l_Lean_MessageData_instCoeList___closed__1; -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg(lean_object*, lean_object*); lean_object* l_Lean_Json_getStr_x3f(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13; static lean_object* l_Lean_mkErrorStringWithPos___closed__3; static lean_object* l_Lean_MessageData_formatAux___closed__11; lean_object* l_Lean_Name_mkStr3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeString___lambda__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataArray___rarg(lean_object*, lean_object*); +static lean_object* l_Lean_MessageData_orList___closed__1; LEAN_EXPORT uint8_t l_Lean_MessageData_ofConstName___elambda__1(lean_object*); static lean_object* l_Lean_instFromJsonMessageSeverity___closed__1; static lean_object* l_Lean_termM_x21_____closed__7; lean_object* l_Lean_Json_getObjValAs_x3f(lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); static lean_object* l_Lean_MessageData_instCoeArrayExpr___closed__2; -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587_(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataExpr; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MessageData_hasSyntheticSorry_visit___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__30; static lean_object* l_Lean_MessageData_ofList___closed__6; -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9; -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__16; lean_object* l_List_getLast_x21___rarg(lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__30; @@ -194,10 +199,12 @@ lean_object* l_Lean_Syntax_copyHeadTailInfoFrom(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__8; lean_object* l_Lean_ppLevel(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__4; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_String_split___at_Lean_stringToMessageData___spec__1(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__12; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1___boxed(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__35; -static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__38; lean_object* lean_string_utf8_next(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeLevel; @@ -205,22 +212,21 @@ static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__1; static lean_object* l_Lean_instToMessageDataOption___rarg___closed__3; LEAN_EXPORT lean_object* l_Lean_MessageData_formatAux___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataArray(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__7; LEAN_EXPORT lean_object* l_Lean_instImpl____x40_Lean_Message___hyg_604_; static lean_object* l_Lean_termM_x21_____closed__13; +static lean_object* l_Lean_MessageData_orList___closed__6; lean_object* l_Lean_ppExprWithInfos(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l_Lean_SerialMessage_toString___lambda__3___closed__2; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__2; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__3; lean_object* lean_nat_to_int(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_ofSyntax(lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataFormat; LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at_Lean_MessageLog_getInfoMessages___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instInhabitedMessageData; -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__11; LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124____boxed(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__3; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__15; static lean_object* l_Lean_MessageLog_instAppend___closed__1; LEAN_EXPORT lean_object* l_Lean_instToMessageDataSubarray___rarg___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_toList(lean_object*); @@ -229,24 +235,20 @@ static lean_object* l_Lean_MessageData_ofList___closed__5; static lean_object* l_Lean_KernelException_toMessageData___closed__33; static lean_object* l_Lean_KernelException_toMessageData___closed__10; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_MessageData_instCoeListExpr___spec__1(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_getInfoMessages___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__27; static lean_object* l_Lean_KernelException_toMessageData___closed__24; LEAN_EXPORT lean_object* l_Lean_MessageData_ofFormat(lean_object*); lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__6; -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3(lean_object*, lean_object*); -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727_(lean_object*); static lean_object* l_Lean_termM_x21_____closed__2; static lean_object* l_Lean_MessageData_instCoeLevel___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_andList(lean_object*); static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__11; -static lean_object* l_Lean_MessageData_andList___closed__5; static lean_object* l_Lean_KernelException_toMessageData___closed__45; static lean_object* l_Lean_KernelException_toMessageData___closed__46; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__32; LEAN_EXPORT lean_object* l_Lean_MessageData_ofExpr___elambda__1___boxed(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29; LEAN_EXPORT lean_object* l_Lean_instBEqMessageSeverity; static lean_object* l_Lean_MessageData_ofConstName___elambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_instTypeNameMessageData; @@ -265,23 +267,22 @@ static lean_object* l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x4 static lean_object* l_Lean_MessageData_ofList___closed__2; static lean_object* l_Lean_MessageData_instCoeSyntax___closed__1; LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__28; LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__2; uint8_t lean_string_utf8_at_end(lean_object*, lean_object*); static lean_object* l_Lean_instToMessageDataMessageData___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_nil; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__4; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instToMessageDataOfToFormat(lean_object*); static lean_object* l_Lean_MessageData_instCoeOptionExpr___closed__1; static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__2___closed__2; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__3___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at_Lean_MessageLog_hasErrors___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_instFromJsonBaseMessage(lean_object*); lean_object* l_Lean_ppConstNameWithInfos(lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_MessageData_orList(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__27; LEAN_EXPORT lean_object* l_Lean_MessageLog_getInfoMessages___boxed(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; LEAN_EXPORT uint8_t l_Lean_MessageData_ofSyntax___elambda__1(lean_object*); static lean_object* l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124____closed__2; LEAN_EXPORT lean_object* l_Lean_MessageData_ofConstName___boxed(lean_object*, lean_object*); @@ -293,7 +294,9 @@ static lean_object* l_Lean_termM_x21_____closed__4; static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__10; LEAN_EXPORT lean_object* l_Lean_MessageData_ofConstName___elambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__8; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageData_formatAux___spec__3(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2___boxed(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_MessageLog_hasUnreported(lean_object*); static lean_object* l_Lean_termM_x21_____closed__11; LEAN_EXPORT lean_object* l_Lean_MessageLog_empty; @@ -302,32 +305,34 @@ lean_object* l_Lean_Syntax_getArg(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__4(lean_object*, size_t, size_t); lean_object* l___private_Init_Util_0__mkPanicMessageWithDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_ofLevel___elambda__2(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__4; LEAN_EXPORT lean_object* l_String_split___at_Lean_stringToMessageData___spec__1___boxed(lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__53; LEAN_EXPORT lean_object* l_Lean_instToMessageDataProd___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_foldlM___at_Lean_MessageLog_getInfoMessages___spec__1___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString(lean_object*, uint8_t); static lean_object* l_Lean_MessageData_instCoeName___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__18; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__16; static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__9; LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString___lambda__1(lean_object*, lean_object*); extern lean_object* l_Std_Format_defWidth; LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__14; LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlMAux___at_Lean_MessageLog_getInfoMessages___spec__3___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_arrayExpr_toMessageData(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instFromJsonMessageSeverity; LEAN_EXPORT lean_object* l_Lean_MessageData_ofName___lambda__1___boxed(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__15; lean_object* lean_usize_to_nat(size_t); LEAN_EXPORT lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__18; static lean_object* l_Lean_KernelException_toMessageData___closed__40; LEAN_EXPORT lean_object* l_Lean_MessageData_ofConstName(lean_object*, uint8_t); static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__13; LEAN_EXPORT lean_object* l_Lean_MessageSeverity_toCtorIdx(uint8_t); LEAN_EXPORT lean_object* l_Lean_MessageSeverity_toCtorIdx___boxed(lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageLog_errorsToWarnings(lean_object*); static lean_object* l_Lean_MessageData_lazy___elambda__1___closed__4; LEAN_EXPORT lean_object* l_Lean_MessageData_ofExpr(lean_object*); @@ -338,7 +343,7 @@ static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____ LEAN_EXPORT lean_object* l_panic___at_Lean_MessageData_formatAux___spec__2(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__3(lean_object*, size_t, size_t); LEAN_EXPORT lean_object* l_Lean_MessageData_ofConstName___elambda__2(lean_object*, uint8_t, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__8; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__7; static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__3___closed__1; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyM___at_Lean_MessageLog_hasErrors___spec__1(lean_object*); double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); @@ -364,32 +369,31 @@ static lean_object* l_Lean_MessageData_formatAux___lambda__1___closed__4; lean_object* l_Lean_ppTerm(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_instAddMessageContextOfMonadLift(lean_object*, lean_object*); lean_object* l_Lean_Json_parseTagged(lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__1; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___boxed(lean_object*, lean_object*); static lean_object* l_Lean_instToMessageDataOption___rarg___closed__5; static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__4; static lean_object* l_Lean_MessageData_formatAux___lambda__1___closed__3; LEAN_EXPORT lean_object* l_Lean_MessageData_lazy___elambda__1(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25; static lean_object* l_Lean_MessageSeverity_noConfusion___rarg___closed__1; static lean_object* l_Lean_KernelException_toMessageData___closed__15; extern lean_object* l_Lean_NameSet_empty; -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4___boxed(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_formatAux___closed__10; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MessageLog_getInfoMessages___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__2___boxed(lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124_(uint8_t); lean_object* lean_string_length(lean_object*); LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_anyMUnsafe_any___at_Lean_MessageData_hasSyntheticSorry_visit___spec__1(lean_object*, lean_object*, size_t, size_t); static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__3; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__22; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__2; static lean_object* l_Lean_MessageData_arrayExpr_toMessageData___closed__2; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25; static lean_object* l_Lean_KernelException_toMessageData___closed__48; uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg(lean_object*, lean_object*); lean_object* lean_float_to_string(double); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__19; LEAN_EXPORT lean_object* l_Lean_MessageData_ofLevel(lean_object*); static lean_object* l_Lean_MessageData_ofConstName___elambda__2___closed__3; static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____closed__2; @@ -397,16 +401,13 @@ LEAN_EXPORT lean_object* l_Lean_MessageLog_getInfoMessages(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_forM___rarg(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Message_serialize(lean_object*, lean_object*); uint8_t lean_uint32_dec_eq(uint32_t, uint32_t); -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SerialMessage_toString___lambda__2___boxed(lean_object*, lean_object*); lean_object* l_id___rarg___boxed(lean_object*); lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_ofLevel___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21; LEAN_EXPORT lean_object* l_Lean_termM_x21__; LEAN_EXPORT lean_object* l_Lean_indentExpr(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_sbracket(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_hasSyntheticSorry_visit(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_andList___closed__3; static lean_object* l_Lean_MessageData_formatAux___closed__12; @@ -415,9 +416,9 @@ static lean_object* l_Lean_MessageLog_empty___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__2(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__28; LEAN_EXPORT uint8_t l_Lean_MessageData_ofExpr___elambda__1(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__31; lean_object* l_Std_Format_joinSep___at_Prod_repr___spec__1(lean_object*, lean_object*); static lean_object* l_Lean_SerialMessage_toString___closed__1; +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3(lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__39; uint8_t lean_float_beq(double, double); lean_object* l_Lean_Level_format(lean_object*, uint8_t); @@ -432,14 +433,13 @@ lean_object* l_Except_orElseLazy___rarg(lean_object*, lean_object*); static lean_object* l_Lean_MessageData_instCoeArrayExpr___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageData_formatAux___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__23; static lean_object* l_Lean_instInhabitedMessageLog___closed__2; LEAN_EXPORT lean_object* l_Lean_addMessageContextPartial(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; static lean_object* l_Lean_MessageLog_empty___closed__2; static lean_object* l_Lean_instImpl____x40_Lean_Message___hyg_604____closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_ofSyntax___elambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__3___boxed(lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5___boxed(lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__13; static lean_object* l_Lean_termM_x21_____closed__9; LEAN_EXPORT lean_object* l_Lean_toMessageList(lean_object*); @@ -452,9 +452,11 @@ static lean_object* l_Lean_toMessageList___closed__2; LEAN_EXPORT lean_object* l___private_Lean_Data_PersistentArray_0__Lean_PersistentArray_foldlFromMAux___at_Lean_MessageLog_getInfoMessages___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_instAppend; LEAN_EXPORT lean_object* l_Lean_mkErrorStringWithPos___boxed(lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1___boxed(lean_object*, lean_object*); static lean_object* l_Lean_termM_x21_____closed__5; LEAN_EXPORT lean_object* l_Lean_instToMessageDataMessageData; -static lean_object* l_Lean_MessageData_andList___closed__4; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__20; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__32; LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion___rarg___lambda__1(lean_object*); lean_object* l_List_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_KernelException_mkCtx(lean_object*, lean_object*, lean_object*, lean_object*); @@ -479,17 +481,21 @@ lean_object* l_Lean_PersistentArray_forM___rarg(lean_object*, lean_object*, lean static lean_object* l_Lean_MessageData_format___closed__1; size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_KernelException_toMessageData___closed__49; +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4; LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_stringToMessageData___spec__3___at_Lean_stringToMessageData___spec__4(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_append(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeMVarId(lean_object*); static lean_object* l_Lean_SerialMessage_toString___lambda__3___closed__1; static lean_object* l_Lean_instToMessageDataOption___rarg___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5; +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9; static lean_object* l_Lean_KernelException_toMessageData___closed__14; static lean_object* l_Lean_termM_x21_____closed__10; static lean_object* l_Lean_KernelException_toMessageData___closed__5; lean_object* lean_array_uget(lean_object*, size_t); static lean_object* l_Lean_MessageData_ofList___closed__3; size_t lean_array_size(lean_object*); +static lean_object* l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__2; static lean_object* l_Lean_MessageData_instCoeArrayExpr___closed__3; LEAN_EXPORT lean_object* l_Lean_MessageLog_forM(lean_object*); uint8_t l_Lean_PersistentArray_isEmpty___rarg(lean_object*); @@ -509,21 +515,23 @@ LEAN_EXPORT lean_object* l_Lean_MessageSeverity_noConfusion___rarg___boxed(lean_ LEAN_EXPORT lean_object* l_Lean_instInhabitedBaseMessage(lean_object*); lean_object* l_Lean_ppGoal(lean_object*, lean_object*, lean_object*); lean_object* lean_string_append(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4___boxed(lean_object*, lean_object*); static lean_object* l_Lean_termM_x21_____closed__6; static lean_object* l_Lean_MessageData_ofSyntax___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2; LEAN_EXPORT lean_object* l_Lean_MessageData_ofLevel___elambda__1___boxed(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_formatAux(lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29; LEAN_EXPORT uint8_t l_Lean_MessageData_ofLevel___elambda__1(lean_object*); static lean_object* l_Lean_termM_x21_____closed__3; LEAN_EXPORT lean_object* l_Lean_instToMessageDataName; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__28; static lean_object* l_Lean_instToJsonMessageSeverity___closed__1; lean_object* lean_array_get_size(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeExpr; LEAN_EXPORT lean_object* l_Lean_instToMessageDataSubarray___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Message_toString___boxed(lean_object*, lean_object*, lean_object*); +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__31; uint8_t lean_nat_dec_le(lean_object*, lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__24; LEAN_EXPORT lean_object* l_Lean_instToMessageDataSubarray(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_toArray(lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); @@ -543,40 +551,39 @@ LEAN_EXPORT lean_object* l_Lean_MessageData_instCoeArrayExpr___boxed(lean_object LEAN_EXPORT lean_object* l_Lean_MessageData_bracket(lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(lean_object*); static lean_object* l_Lean_MessageData_instCoeString___closed__1; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13; LEAN_EXPORT lean_object* l_Lean_SerialMessage_instToString(lean_object*); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__23; static lean_object* l_Lean_termM_x21_____closed__14; static lean_object* l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124____closed__5; LEAN_EXPORT lean_object* l_Lean_instFromJsonBaseMessage___rarg(lean_object*); static lean_object* l_Lean_instToMessageDataOptionExpr___closed__2; static lean_object* l_Lean___aux__Lean__Message______macroRules__Lean__termM_x21____1___closed__7; +static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__10; static lean_object* l_Lean_instImpl____x40_Lean_Message___hyg_604____closed__2; LEAN_EXPORT lean_object* l_Lean_MessageData_lazy(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_arrayExpr_toMessageData___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_KernelException_toMessageData(lean_object*, lean_object*); static lean_object* l_Lean_KernelException_toMessageData___closed__51; static lean_object* l_Lean_MessageData_andList___closed__1; -static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2; lean_object* l_String_toSubstring_x27(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageLog_errorsToWarnings___spec__3(size_t, size_t, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); +static lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___closed__1; static lean_object* l_Lean_instInhabitedMessageLog___closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_ofName(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); lean_object* lean_array_get(lean_object*, lean_object*, lean_object*); lean_object* l___private_Init_Data_Repr_0__Nat_reprFast(lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_ofConstName___elambda__1___boxed(lean_object*); LEAN_EXPORT uint8_t l___private_Lean_Message_0__Lean_beqMessageSeverity____x40_Lean_Message___hyg_106_(uint8_t, uint8_t); static lean_object* l_Lean_MessageData_paren___closed__2; static lean_object* l_Lean_KernelException_toMessageData___closed__52; -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____lambda__2___closed__3; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_MessageLog_errorsToWarnings___spec__4___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageData_format(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MessageLog_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_MessageLog_hasErrors___spec__4___boxed(lean_object*, lean_object*, lean_object*); size_t lean_usize_land(size_t, size_t); -static lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__12; LEAN_EXPORT lean_object* l_Lean_MessageData_mkPPContext___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Message___hyg_163____closed__1; LEAN_EXPORT lean_object* l_Lean_MessageData_lazy___elambda__1___lambda__1(lean_object*, lean_object*); @@ -586,7 +593,7 @@ static lean_object* l_Lean_KernelException_toMessageData___closed__27; LEAN_EXPORT lean_object* l_Lean_stringToMessageData___boxed(lean_object*); double lean_float_sub(double, double); lean_object* l___private_Init_Dynamic_0__Dynamic_get_x3fImpl___rarg(lean_object*, lean_object*); -static lean_object* l_Lean_KernelException_toMessageData___closed__54; +static lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__8; static lean_object* l_Lean_MessageLog_empty___closed__4; LEAN_EXPORT lean_object* l_Lean_addMessageContextFull___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Message_toString(lean_object*, uint8_t, lean_object*); @@ -5554,7 +5561,94 @@ x_3 = l_Lean_MessageData_ofList(x_2); return x_3; } } -static lean_object* _init_l_Lean_MessageData_andList___closed__1() { +static lean_object* _init_l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("'", 1, 1); +return x_1; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__2; +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_3; +x_3 = l_List_reverse___rarg(x_2); +return x_3; +} +else +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; lean_object* x_9; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +x_7 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +x_8 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_8, 0, x_7); +lean_ctor_set(x_8, 1, x_5); +x_9 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_9, 0, x_8); +lean_ctor_set(x_9, 1, x_7); +lean_ctor_set(x_1, 1, x_2); +lean_ctor_set(x_1, 0, x_9); +{ +lean_object* _tmp_0 = x_6; +lean_object* _tmp_1 = x_1; +x_1 = _tmp_0; +x_2 = _tmp_1; +} +goto _start; +} +else +{ +lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; +x_11 = lean_ctor_get(x_1, 0); +x_12 = lean_ctor_get(x_1, 1); +lean_inc(x_12); +lean_inc(x_11); +lean_dec(x_1); +x_13 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +x_14 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_14, 0, x_13); +lean_ctor_set(x_14, 1, x_11); +x_15 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_15, 0, x_14); +lean_ctor_set(x_15, 1, x_13); +x_16 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_16, 0, x_15); +lean_ctor_set(x_16, 1, x_2); +x_1 = x_12; +x_2 = x_16; +goto _start; +} +} +} +} +static lean_object* _init_l_Lean_MessageData_orList___closed__1() { _start: { lean_object* x_1; @@ -5562,6 +5656,211 @@ x_1 = lean_mk_string_unchecked("– none –", 12, 8); return x_1; } } +static lean_object* _init_l_Lean_MessageData_orList___closed__2() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_MessageData_orList___closed__1; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_MessageData_orList___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_MessageData_orList___closed__2; +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_MessageData_orList___closed__4() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" or '", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_MessageData_orList___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_MessageData_orList___closed__4; +x_2 = lean_alloc_ctor(3, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_MessageData_orList___closed__6() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_MessageData_orList___closed__5; +x_2 = l_Lean_MessageData_ofFormat(x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_MessageData_orList(lean_object* x_1) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +lean_object* x_2; +x_2 = l_Lean_MessageData_orList___closed__3; +return x_2; +} +else +{ +lean_object* x_3; +x_3 = lean_ctor_get(x_1, 1); +lean_inc(x_3); +if (lean_obj_tag(x_3) == 0) +{ +uint8_t x_4; +x_4 = !lean_is_exclusive(x_1); +if (x_4 == 0) +{ +lean_object* x_5; lean_object* x_6; lean_object* x_7; lean_object* x_8; +x_5 = lean_ctor_get(x_1, 0); +x_6 = lean_ctor_get(x_1, 1); +lean_dec(x_6); +x_7 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +lean_ctor_set_tag(x_1, 7); +lean_ctor_set(x_1, 1, x_5); +lean_ctor_set(x_1, 0, x_7); +x_8 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_8, 0, x_1); +lean_ctor_set(x_8, 1, x_7); +return x_8; +} +else +{ +lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; +x_9 = lean_ctor_get(x_1, 0); +lean_inc(x_9); +lean_dec(x_1); +x_10 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +x_11 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_11, 0, x_10); +lean_ctor_set(x_11, 1, x_9); +x_12 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_10); +return x_12; +} +} +else +{ +uint8_t x_13; +x_13 = !lean_is_exclusive(x_3); +if (x_13 == 0) +{ +lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; uint8_t x_26; +x_14 = lean_ctor_get(x_3, 1); +lean_dec(x_14); +x_15 = lean_ctor_get(x_3, 0); +lean_dec(x_15); +lean_inc(x_1); +x_16 = lean_array_mk(x_1); +x_17 = lean_array_pop(x_16); +x_18 = lean_array_to_list(x_17); +x_19 = lean_box(0); +x_20 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1(x_18, x_19); +x_21 = l_Lean_MessageData_arrayExpr_toMessageData___closed__4; +x_22 = l_Lean_MessageData_joinSep(x_20, x_21); +x_23 = l_Lean_MessageData_orList___closed__6; +lean_ctor_set_tag(x_3, 7); +lean_ctor_set(x_3, 1, x_23); +lean_ctor_set(x_3, 0, x_22); +x_24 = l_Lean_instInhabitedMessageData; +lean_inc(x_1); +x_25 = l_List_getLast_x21___rarg(x_24, x_1); +x_26 = !lean_is_exclusive(x_1); +if (x_26 == 0) +{ +lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; +x_27 = lean_ctor_get(x_1, 1); +lean_dec(x_27); +x_28 = lean_ctor_get(x_1, 0); +lean_dec(x_28); +lean_ctor_set_tag(x_1, 7); +lean_ctor_set(x_1, 1, x_25); +lean_ctor_set(x_1, 0, x_3); +x_29 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +x_30 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_30, 0, x_1); +lean_ctor_set(x_30, 1, x_29); +return x_30; +} +else +{ +lean_object* x_31; lean_object* x_32; lean_object* x_33; +lean_dec(x_1); +x_31 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_31, 0, x_3); +lean_ctor_set(x_31, 1, x_25); +x_32 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +x_33 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +return x_33; +} +} +else +{ +lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; +lean_dec(x_3); +lean_inc(x_1); +x_34 = lean_array_mk(x_1); +x_35 = lean_array_pop(x_34); +x_36 = lean_array_to_list(x_35); +x_37 = lean_box(0); +x_38 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1(x_36, x_37); +x_39 = l_Lean_MessageData_arrayExpr_toMessageData___closed__4; +x_40 = l_Lean_MessageData_joinSep(x_38, x_39); +x_41 = l_Lean_MessageData_orList___closed__6; +x_42 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_42, 0, x_40); +lean_ctor_set(x_42, 1, x_41); +x_43 = l_Lean_instInhabitedMessageData; +lean_inc(x_1); +x_44 = l_List_getLast_x21___rarg(x_43, x_1); +if (lean_is_exclusive(x_1)) { + lean_ctor_release(x_1, 0); + lean_ctor_release(x_1, 1); + x_45 = x_1; +} else { + lean_dec_ref(x_1); + x_45 = lean_box(0); +} +if (lean_is_scalar(x_45)) { + x_46 = lean_alloc_ctor(7, 2, 0); +} else { + x_46 = x_45; + lean_ctor_set_tag(x_46, 7); +} +lean_ctor_set(x_46, 0, x_42); +lean_ctor_set(x_46, 1, x_44); +x_47 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3; +x_48 = lean_alloc_ctor(7, 2, 0); +lean_ctor_set(x_48, 0, x_46); +lean_ctor_set(x_48, 1, x_47); +return x_48; +} +} +} +} +} +static lean_object* _init_l_Lean_MessageData_andList___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked(" and ", 5, 5); +return x_1; +} +} static lean_object* _init_l_Lean_MessageData_andList___closed__2() { _start: { @@ -5581,40 +5880,13 @@ x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_MessageData_andList___closed__4() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(" and ", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_MessageData_andList___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_MessageData_andList___closed__4; -x_2 = lean_alloc_ctor(3, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_MessageData_andList___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_MessageData_andList___closed__5; -x_2 = l_Lean_MessageData_ofFormat(x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_MessageData_andList(lean_object* x_1) { _start: { if (lean_obj_tag(x_1) == 0) { lean_object* x_2; -x_2 = l_Lean_MessageData_andList___closed__3; +x_2 = l_Lean_MessageData_orList___closed__3; return x_2; } else @@ -5647,7 +5919,7 @@ x_9 = lean_array_pop(x_8); x_10 = lean_array_to_list(x_9); x_11 = l_Lean_MessageData_arrayExpr_toMessageData___closed__4; x_12 = l_Lean_MessageData_joinSep(x_10, x_11); -x_13 = l_Lean_MessageData_andList___closed__6; +x_13 = l_Lean_MessageData_andList___closed__3; lean_ctor_set_tag(x_3, 7); lean_ctor_set(x_3, 1, x_13); lean_ctor_set(x_3, 0, x_12); @@ -5687,7 +5959,7 @@ x_21 = lean_array_pop(x_20); x_22 = lean_array_to_list(x_21); x_23 = l_Lean_MessageData_arrayExpr_toMessageData___closed__4; x_24 = l_Lean_MessageData_joinSep(x_22, x_23); -x_25 = l_Lean_MessageData_andList___closed__6; +x_25 = l_Lean_MessageData_andList___closed__3; x_26 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_26, 0, x_24); lean_ctor_set(x_26, 1, x_25); @@ -5829,7 +6101,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_instInhabitedBaseMessage___rarg), 1, 0); return x_2; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1() { _start: { lean_object* x_1; @@ -5837,7 +6109,7 @@ x_1 = lean_mk_string_unchecked("fileName", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2() { _start: { lean_object* x_1; @@ -5845,7 +6117,7 @@ x_1 = lean_mk_string_unchecked("pos", 3, 3); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3() { _start: { lean_object* x_1; @@ -5853,7 +6125,7 @@ x_1 = lean_mk_string_unchecked("keepFullRange", 13, 13); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4() { _start: { lean_object* x_1; @@ -5861,7 +6133,7 @@ x_1 = lean_mk_string_unchecked("severity", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5() { _start: { lean_object* x_1; @@ -5869,7 +6141,7 @@ x_1 = lean_mk_string_unchecked("caption", 7, 7); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6() { _start: { lean_object* x_1; @@ -5877,7 +6149,7 @@ x_1 = lean_mk_string_unchecked("data", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7() { _start: { lean_object* x_1; @@ -5885,11 +6157,11 @@ x_1 = lean_mk_string_unchecked("endPos", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__8() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; +x_1 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; x_2 = lean_box(0); x_3 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_3, 0, x_1); @@ -5897,19 +6169,19 @@ lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9() { +static lean_object* _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__8; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__8; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; lean_object* x_5; uint8_t x_6; uint8_t x_7; lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; @@ -5928,7 +6200,7 @@ lean_inc(x_9); lean_dec(x_2); x_10 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_10, 0, x_3); -x_11 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1; +x_11 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1; x_12 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_12, 0, x_11); lean_ctor_set(x_12, 1, x_10); @@ -5937,7 +6209,7 @@ x_14 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_14, 0, x_12); lean_ctor_set(x_14, 1, x_13); x_15 = l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(x_4); -x_16 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2; +x_16 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2; x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_16); lean_ctor_set(x_17, 1, x_15); @@ -5946,7 +6218,7 @@ lean_ctor_set(x_18, 0, x_17); lean_ctor_set(x_18, 1, x_13); x_19 = lean_alloc_ctor(1, 0, 1); lean_ctor_set_uint8(x_19, 0, x_6); -x_20 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3; +x_20 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3; x_21 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_19); @@ -5954,7 +6226,7 @@ x_22 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_22, 0, x_21); lean_ctor_set(x_22, 1, x_13); x_23 = l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124_(x_7); -x_24 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4; +x_24 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4; x_25 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_23); @@ -5963,7 +6235,7 @@ lean_ctor_set(x_26, 0, x_25); lean_ctor_set(x_26, 1, x_13); x_27 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_27, 0, x_8); -x_28 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5; +x_28 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5; x_29 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_27); @@ -5971,7 +6243,7 @@ x_30 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_30, 0, x_29); lean_ctor_set(x_30, 1, x_13); x_31 = lean_apply_1(x_1, x_9); -x_32 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6; +x_32 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6; x_33 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_31); @@ -5993,7 +6265,7 @@ lean_ctor_set(x_38, 1, x_37); if (lean_obj_tag(x_5) == 0) { lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; -x_39 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9; +x_39 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9; x_40 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_40, 0, x_39); lean_ctor_set(x_40, 1, x_38); @@ -6015,7 +6287,7 @@ x_46 = lean_ctor_get(x_5, 0); lean_inc(x_46); lean_dec(x_5); x_47 = l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(x_46); -x_48 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; +x_48 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; x_49 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_49, 0, x_48); lean_ctor_set(x_49, 1, x_47); @@ -6038,11 +6310,11 @@ return x_56; } } } -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650_(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg), 2, 0); return x_2; } } @@ -6050,7 +6322,7 @@ LEAN_EXPORT lean_object* l_Lean_instToJsonBaseMessage___rarg(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg), 2, 1); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -6063,7 +6335,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_instToJsonBaseMessage___rarg), 1, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -6072,7 +6344,7 @@ x_4 = l_Lean_Json_getStr_x3f(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -6081,7 +6353,7 @@ x_4 = l___private_Lean_Data_Position_0__Lean_fromJsonPosition____x40_Lean_Data_P return x_4; } } -static lean_object* _init_l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___closed__1() { +static lean_object* _init_l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___closed__1() { _start: { lean_object* x_1; lean_object* x_2; @@ -6091,7 +6363,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; @@ -6100,7 +6372,7 @@ switch (lean_obj_tag(x_3)) { case 0: { lean_object* x_4; -x_4 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___closed__1; +x_4 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___closed__1; return x_4; } case 1: @@ -6261,7 +6533,7 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -6271,7 +6543,7 @@ lean_dec(x_3); return x_4; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; @@ -6280,7 +6552,7 @@ x_4 = l___private_Lean_Message_0__Lean_fromJsonMessageSeverity____x40_Lean_Messa return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__1() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__1() { _start: { lean_object* x_1; @@ -6288,28 +6560,28 @@ x_1 = lean_mk_string_unchecked("BaseMessage", 11, 11); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__2() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_instImpl____x40_Lean_Message___hyg_604____closed__1; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__1; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__1; x_3 = l_Lean_Name_mkStr2(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__3() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__3() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__2; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__2; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__4() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__4() { _start: { lean_object* x_1; @@ -6317,310 +6589,310 @@ x_1 = lean_mk_string_unchecked(".", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__3; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__4; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__3; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__4; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__6() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__7() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__7() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__6; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__6; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__8() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__7; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__7; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__8; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__8; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__10() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__11() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__11() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__10; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__10; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__12() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__11; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__11; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__12; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__12; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__14() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__15() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__15() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__14; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__14; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__16() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__15; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__15; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__16; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__16; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__18() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__18() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__19() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__19() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__18; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__18; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__20() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__20() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__19; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__19; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__20; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__20; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__22() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__22() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__23() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__23() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__22; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__22; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__24() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__24() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__23; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__23; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__24; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__24; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__26() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__26() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__27() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__27() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__26; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__26; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__28() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__27; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__27; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__28; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__28; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__30() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__30() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6; +x_2 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__31() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__31() { _start: { lean_object* x_1; uint8_t x_2; lean_object* x_3; lean_object* x_4; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__30; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__30; x_2 = 1; x_3 = l_Lean_MessageData_ofName___closed__1; x_4 = l_Lean_Name_toString(x_1, x_2, x_3); return x_4; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__32() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__32() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5; -x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__31; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5; +x_2 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__31; x_3 = lean_string_append(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33() { +static lean_object* _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__32; +x_1 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__32; x_2 = l_Lean_mkErrorStringWithPos___closed__3; x_3 = lean_string_append(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; lean_object* x_4; -x_3 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1; +x_3 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1; lean_inc(x_2); -x_4 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_2, x_3); +x_4 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_2, x_3); if (lean_obj_tag(x_4) == 0) { uint8_t x_5; @@ -6631,7 +6903,7 @@ if (x_5 == 0) { lean_object* x_6; lean_object* x_7; lean_object* x_8; x_6 = lean_ctor_get(x_4, 0); -x_7 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9; +x_7 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9; x_8 = lean_string_append(x_7, x_6); lean_dec(x_6); lean_ctor_set(x_4, 0, x_8); @@ -6643,7 +6915,7 @@ lean_object* x_9; lean_object* x_10; lean_object* x_11; lean_object* x_12; x_9 = lean_ctor_get(x_4, 0); lean_inc(x_9); lean_dec(x_4); -x_10 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9; +x_10 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9; x_11 = lean_string_append(x_10, x_9); lean_dec(x_9); x_12 = lean_alloc_ctor(0, 1, 0); @@ -6657,9 +6929,9 @@ lean_object* x_13; lean_object* x_14; lean_object* x_15; x_13 = lean_ctor_get(x_4, 0); lean_inc(x_13); lean_dec(x_4); -x_14 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2; +x_14 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2; lean_inc(x_2); -x_15 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2(x_2, x_14); +x_15 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2(x_2, x_14); if (lean_obj_tag(x_15) == 0) { uint8_t x_16; @@ -6671,7 +6943,7 @@ if (x_16 == 0) { lean_object* x_17; lean_object* x_18; lean_object* x_19; x_17 = lean_ctor_get(x_15, 0); -x_18 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13; +x_18 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13; x_19 = lean_string_append(x_18, x_17); lean_dec(x_17); lean_ctor_set(x_15, 0, x_19); @@ -6683,7 +6955,7 @@ lean_object* x_20; lean_object* x_21; lean_object* x_22; lean_object* x_23; x_20 = lean_ctor_get(x_15, 0); lean_inc(x_20); lean_dec(x_15); -x_21 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13; +x_21 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13; x_22 = lean_string_append(x_21, x_20); lean_dec(x_20); x_23 = lean_alloc_ctor(0, 1, 0); @@ -6697,9 +6969,9 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; x_24 = lean_ctor_get(x_15, 0); lean_inc(x_24); lean_dec(x_15); -x_25 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; +x_25 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; lean_inc(x_2); -x_26 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3(x_2, x_25); +x_26 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3(x_2, x_25); if (lean_obj_tag(x_26) == 0) { uint8_t x_27; @@ -6712,7 +6984,7 @@ if (x_27 == 0) { lean_object* x_28; lean_object* x_29; lean_object* x_30; x_28 = lean_ctor_get(x_26, 0); -x_29 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17; +x_29 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17; x_30 = lean_string_append(x_29, x_28); lean_dec(x_28); lean_ctor_set(x_26, 0, x_30); @@ -6724,7 +6996,7 @@ lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; x_31 = lean_ctor_get(x_26, 0); lean_inc(x_31); lean_dec(x_26); -x_32 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17; +x_32 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17; x_33 = lean_string_append(x_32, x_31); lean_dec(x_31); x_34 = lean_alloc_ctor(0, 1, 0); @@ -6738,9 +7010,9 @@ lean_object* x_35; lean_object* x_36; lean_object* x_37; x_35 = lean_ctor_get(x_26, 0); lean_inc(x_35); lean_dec(x_26); -x_36 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3; +x_36 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3; lean_inc(x_2); -x_37 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_2, x_36); +x_37 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_2, x_36); if (lean_obj_tag(x_37) == 0) { uint8_t x_38; @@ -6754,7 +7026,7 @@ if (x_38 == 0) { lean_object* x_39; lean_object* x_40; lean_object* x_41; x_39 = lean_ctor_get(x_37, 0); -x_40 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21; +x_40 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21; x_41 = lean_string_append(x_40, x_39); lean_dec(x_39); lean_ctor_set(x_37, 0, x_41); @@ -6766,7 +7038,7 @@ lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; x_42 = lean_ctor_get(x_37, 0); lean_inc(x_42); lean_dec(x_37); -x_43 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21; +x_43 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21; x_44 = lean_string_append(x_43, x_42); lean_dec(x_42); x_45 = lean_alloc_ctor(0, 1, 0); @@ -6780,9 +7052,9 @@ lean_object* x_46; lean_object* x_47; lean_object* x_48; x_46 = lean_ctor_get(x_37, 0); lean_inc(x_46); lean_dec(x_37); -x_47 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4; +x_47 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4; lean_inc(x_2); -x_48 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5(x_2, x_47); +x_48 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5(x_2, x_47); if (lean_obj_tag(x_48) == 0) { uint8_t x_49; @@ -6797,7 +7069,7 @@ if (x_49 == 0) { lean_object* x_50; lean_object* x_51; lean_object* x_52; x_50 = lean_ctor_get(x_48, 0); -x_51 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25; +x_51 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25; x_52 = lean_string_append(x_51, x_50); lean_dec(x_50); lean_ctor_set(x_48, 0, x_52); @@ -6809,7 +7081,7 @@ lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; x_53 = lean_ctor_get(x_48, 0); lean_inc(x_53); lean_dec(x_48); -x_54 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25; +x_54 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25; x_55 = lean_string_append(x_54, x_53); lean_dec(x_53); x_56 = lean_alloc_ctor(0, 1, 0); @@ -6823,9 +7095,9 @@ lean_object* x_57; lean_object* x_58; lean_object* x_59; x_57 = lean_ctor_get(x_48, 0); lean_inc(x_57); lean_dec(x_48); -x_58 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5; +x_58 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5; lean_inc(x_2); -x_59 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_2, x_58); +x_59 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_2, x_58); if (lean_obj_tag(x_59) == 0) { uint8_t x_60; @@ -6841,7 +7113,7 @@ if (x_60 == 0) { lean_object* x_61; lean_object* x_62; lean_object* x_63; x_61 = lean_ctor_get(x_59, 0); -x_62 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29; +x_62 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29; x_63 = lean_string_append(x_62, x_61); lean_dec(x_61); lean_ctor_set(x_59, 0, x_63); @@ -6853,7 +7125,7 @@ lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; x_64 = lean_ctor_get(x_59, 0); lean_inc(x_64); lean_dec(x_59); -x_65 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29; +x_65 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29; x_66 = lean_string_append(x_65, x_64); lean_dec(x_64); x_67 = lean_alloc_ctor(0, 1, 0); @@ -6867,7 +7139,7 @@ lean_object* x_68; lean_object* x_69; lean_object* x_70; x_68 = lean_ctor_get(x_59, 0); lean_inc(x_68); lean_dec(x_59); -x_69 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6; +x_69 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6; x_70 = l_Lean_Json_getObjValAs_x3f(x_2, lean_box(0), x_1, x_69); if (lean_obj_tag(x_70) == 0) { @@ -6883,7 +7155,7 @@ if (x_71 == 0) { lean_object* x_72; lean_object* x_73; lean_object* x_74; x_72 = lean_ctor_get(x_70, 0); -x_73 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33; +x_73 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33; x_74 = lean_string_append(x_73, x_72); lean_dec(x_72); lean_ctor_set(x_70, 0, x_74); @@ -6895,7 +7167,7 @@ lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; x_75 = lean_ctor_get(x_70, 0); lean_inc(x_75); lean_dec(x_70); -x_76 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33; +x_76 = l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33; x_77 = lean_string_append(x_76, x_75); lean_dec(x_75); x_78 = lean_alloc_ctor(0, 1, 0); @@ -6957,55 +7229,55 @@ return x_88; } } } -LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727_(lean_object* x_1) { +LEAN_EXPORT lean_object* l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790_(lean_object* x_1) { _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg), 2, 0); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg), 2, 0); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__2(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__2(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_2); lean_dec(x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5___boxed(lean_object* x_1, lean_object* x_2) { +LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5___boxed(lean_object* x_1, lean_object* x_2) { _start: { lean_object* x_3; -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__5(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__5(x_1, x_2); lean_dec(x_2); return x_3; } @@ -7014,7 +7286,7 @@ LEAN_EXPORT lean_object* l_Lean_instFromJsonBaseMessage___rarg(lean_object* x_1) _start: { lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg), 2, 1); +x_2 = lean_alloc_closure((void*)(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg), 2, 1); lean_closure_set(x_2, 0, x_1); return x_2; } @@ -7665,7 +7937,7 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean x_12 = lean_ctor_get(x_10, 0); x_13 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_13, 0, x_3); -x_14 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1; +x_14 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1; x_15 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_15, 0, x_14); lean_ctor_set(x_15, 1, x_13); @@ -7674,7 +7946,7 @@ x_17 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); x_18 = l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(x_4); -x_19 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2; +x_19 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2; x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_18); @@ -7683,7 +7955,7 @@ lean_ctor_set(x_21, 0, x_20); lean_ctor_set(x_21, 1, x_16); x_22 = lean_alloc_ctor(1, 0, 1); lean_ctor_set_uint8(x_22, 0, x_6); -x_23 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3; +x_23 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3; x_24 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_24, 0, x_23); lean_ctor_set(x_24, 1, x_22); @@ -7691,7 +7963,7 @@ x_25 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_25, 0, x_24); lean_ctor_set(x_25, 1, x_16); x_26 = l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124_(x_7); -x_27 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4; +x_27 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4; x_28 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_28, 0, x_27); lean_ctor_set(x_28, 1, x_26); @@ -7700,7 +7972,7 @@ lean_ctor_set(x_29, 0, x_28); lean_ctor_set(x_29, 1, x_16); x_30 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_30, 0, x_8); -x_31 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5; +x_31 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5; x_32 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_32, 0, x_31); lean_ctor_set(x_32, 1, x_30); @@ -7709,7 +7981,7 @@ lean_ctor_set(x_33, 0, x_32); lean_ctor_set(x_33, 1, x_16); x_34 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_34, 0, x_12); -x_35 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6; +x_35 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6; x_36 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); @@ -7731,7 +8003,7 @@ lean_ctor_set(x_41, 1, x_40); if (lean_obj_tag(x_5) == 0) { lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_42 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9; +x_42 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9; x_43 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_43, 0, x_42); lean_ctor_set(x_43, 1, x_41); @@ -7754,7 +8026,7 @@ x_49 = lean_ctor_get(x_5, 0); lean_inc(x_49); lean_dec(x_5); x_50 = l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(x_49); -x_51 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; +x_51 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; x_52 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_52, 0, x_51); lean_ctor_set(x_52, 1, x_50); @@ -7787,7 +8059,7 @@ lean_inc(x_60); lean_dec(x_10); x_62 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_62, 0, x_3); -x_63 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1; +x_63 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1; x_64 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_64, 0, x_63); lean_ctor_set(x_64, 1, x_62); @@ -7796,7 +8068,7 @@ x_66 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_66, 0, x_64); lean_ctor_set(x_66, 1, x_65); x_67 = l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(x_4); -x_68 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2; +x_68 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2; x_69 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_69, 0, x_68); lean_ctor_set(x_69, 1, x_67); @@ -7805,7 +8077,7 @@ lean_ctor_set(x_70, 0, x_69); lean_ctor_set(x_70, 1, x_65); x_71 = lean_alloc_ctor(1, 0, 1); lean_ctor_set_uint8(x_71, 0, x_6); -x_72 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3; +x_72 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3; x_73 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_73, 0, x_72); lean_ctor_set(x_73, 1, x_71); @@ -7813,7 +8085,7 @@ x_74 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_74, 0, x_73); lean_ctor_set(x_74, 1, x_65); x_75 = l___private_Lean_Message_0__Lean_toJsonMessageSeverity____x40_Lean_Message___hyg_124_(x_7); -x_76 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4; +x_76 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4; x_77 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_77, 0, x_76); lean_ctor_set(x_77, 1, x_75); @@ -7822,7 +8094,7 @@ lean_ctor_set(x_78, 0, x_77); lean_ctor_set(x_78, 1, x_65); x_79 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_79, 0, x_8); -x_80 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5; +x_80 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5; x_81 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_81, 0, x_80); lean_ctor_set(x_81, 1, x_79); @@ -7831,7 +8103,7 @@ lean_ctor_set(x_82, 0, x_81); lean_ctor_set(x_82, 1, x_65); x_83 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_83, 0, x_60); -x_84 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6; +x_84 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6; x_85 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_85, 0, x_84); lean_ctor_set(x_85, 1, x_83); @@ -7853,7 +8125,7 @@ lean_ctor_set(x_90, 1, x_89); if (lean_obj_tag(x_5) == 0) { lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; -x_91 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9; +x_91 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9; x_92 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_92, 0, x_91); lean_ctor_set(x_92, 1, x_90); @@ -7878,7 +8150,7 @@ x_99 = lean_ctor_get(x_5, 0); lean_inc(x_99); lean_dec(x_5); x_100 = l___private_Lean_Data_Position_0__Lean_toJsonPosition____x40_Lean_Data_Position___hyg_237_(x_99); -x_101 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7; +x_101 = l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7; x_102 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_102, 0, x_101); lean_ctor_set(x_102, 1, x_100); @@ -10468,21 +10740,13 @@ return x_2; static lean_object* _init_l_Lean_KernelException_toMessageData___closed__3() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("'", 1, 1); -return x_1; -} -} -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__4() { -_start: -{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__3; +x_1 = l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__5() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__4() { _start: { lean_object* x_1; @@ -10490,16 +10754,16 @@ x_1 = lean_mk_string_unchecked("(kernel) constant has already been declared '", return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__6() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__5() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__5; +x_1 = l_Lean_KernelException_toMessageData___closed__4; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__7() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__6() { _start: { lean_object* x_1; @@ -10507,26 +10771,26 @@ x_1 = lean_mk_string_unchecked("(kernel) declaration type mismatch", 34, 34); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__8() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__7() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__7; +x_1 = l_Lean_KernelException_toMessageData___closed__6; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__9() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__8() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__8; +x_1 = l_Lean_KernelException_toMessageData___closed__7; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__10() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__9() { _start: { lean_object* x_1; @@ -10534,16 +10798,16 @@ x_1 = lean_mk_string_unchecked("(kernel) declaration type mismatch, '", 37, 37); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__11() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__10() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__10; +x_1 = l_Lean_KernelException_toMessageData___closed__9; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__12() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__11() { _start: { lean_object* x_1; @@ -10551,16 +10815,16 @@ x_1 = lean_mk_string_unchecked("' has type", 10, 10); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__13() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__12; +x_1 = l_Lean_KernelException_toMessageData___closed__11; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__14() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__13() { _start: { lean_object* x_1; @@ -10568,16 +10832,16 @@ x_1 = lean_mk_string_unchecked("\nbut it is expected to have type", 32, 32); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__15() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__14() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__14; +x_1 = l_Lean_KernelException_toMessageData___closed__13; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__16() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__15() { _start: { lean_object* x_1; lean_object* x_2; @@ -10586,7 +10850,7 @@ x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__17() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__16() { _start: { lean_object* x_1; @@ -10594,16 +10858,16 @@ x_1 = lean_mk_string_unchecked("(kernel) declaration has metavariables '", 40, 4 return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__18() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__17() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__17; +x_1 = l_Lean_KernelException_toMessageData___closed__16; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__19() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__18() { _start: { lean_object* x_1; @@ -10611,16 +10875,16 @@ x_1 = lean_mk_string_unchecked("(kernel) declaration has free variables '", 41, return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__20() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__19() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__19; +x_1 = l_Lean_KernelException_toMessageData___closed__18; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__21() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__20() { _start: { lean_object* x_1; @@ -10628,16 +10892,16 @@ x_1 = lean_mk_string_unchecked("(kernel) function expected", 26, 26); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__22() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__21() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__21; +x_1 = l_Lean_KernelException_toMessageData___closed__20; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__23() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__22() { _start: { lean_object* x_1; @@ -10645,16 +10909,16 @@ x_1 = lean_mk_string_unchecked("(kernel) type expected", 22, 22); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__24() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__23() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__23; +x_1 = l_Lean_KernelException_toMessageData___closed__22; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__25() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__24() { _start: { lean_object* x_1; @@ -10662,16 +10926,16 @@ x_1 = lean_mk_string_unchecked("(kernel) let-declaration type mismatch '", 40, 4 return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__26() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__25() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__25; +x_1 = l_Lean_KernelException_toMessageData___closed__24; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__27() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__26() { _start: { lean_object* x_1; @@ -10679,16 +10943,16 @@ x_1 = lean_mk_string_unchecked("(kernel) type mismatch at", 25, 25); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__28() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__27() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__27; +x_1 = l_Lean_KernelException_toMessageData___closed__26; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__29() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__28() { _start: { lean_object* x_1; @@ -10696,16 +10960,16 @@ x_1 = lean_mk_string_unchecked("application type mismatch", 25, 25); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__30() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__29() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__29; +x_1 = l_Lean_KernelException_toMessageData___closed__28; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__31() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__30() { _start: { lean_object* x_1; @@ -10713,16 +10977,16 @@ x_1 = lean_mk_string_unchecked("\nargument has type", 18, 18); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__32() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__31() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__31; +x_1 = l_Lean_KernelException_toMessageData___closed__30; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__33() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__32() { _start: { lean_object* x_1; @@ -10730,16 +10994,16 @@ x_1 = lean_mk_string_unchecked("\nbut function has type", 22, 22); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__34() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__33() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__33; +x_1 = l_Lean_KernelException_toMessageData___closed__32; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__35() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__34() { _start: { lean_object* x_1; @@ -10747,16 +11011,16 @@ x_1 = lean_mk_string_unchecked("(kernel) invalid projection", 27, 27); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__36() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__35() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__35; +x_1 = l_Lean_KernelException_toMessageData___closed__34; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__37() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__36() { _start: { lean_object* x_1; @@ -10764,16 +11028,16 @@ x_1 = lean_mk_string_unchecked("(kernel) type of theorem '", 26, 26); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__38() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__37() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__37; +x_1 = l_Lean_KernelException_toMessageData___closed__36; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__39() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__38() { _start: { lean_object* x_1; @@ -10781,16 +11045,16 @@ x_1 = lean_mk_string_unchecked("' is not a proposition", 22, 22); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__40() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__39() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__39; +x_1 = l_Lean_KernelException_toMessageData___closed__38; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__41() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__40() { _start: { lean_object* x_1; @@ -10798,16 +11062,16 @@ x_1 = lean_mk_string_unchecked("(kernel) ", 9, 9); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__42() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__41() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__41; +x_1 = l_Lean_KernelException_toMessageData___closed__40; x_2 = l_Lean_stringToMessageData(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__43() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__42() { _start: { lean_object* x_1; @@ -10815,26 +11079,26 @@ x_1 = lean_mk_string_unchecked("(kernel) deterministic timeout", 30, 30); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__44() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__43() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__43; +x_1 = l_Lean_KernelException_toMessageData___closed__42; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__45() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__44() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__44; +x_1 = l_Lean_KernelException_toMessageData___closed__43; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__46() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__45() { _start: { lean_object* x_1; @@ -10842,26 +11106,26 @@ x_1 = lean_mk_string_unchecked("(kernel) excessive memory consumption detected", return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__47() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__46() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__46; +x_1 = l_Lean_KernelException_toMessageData___closed__45; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__48() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__47() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__47; +x_1 = l_Lean_KernelException_toMessageData___closed__46; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__49() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__48() { _start: { lean_object* x_1; @@ -10869,26 +11133,26 @@ x_1 = lean_mk_string_unchecked("(kernel) deep recursion detected", 32, 32); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__50() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__49() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__49; +x_1 = l_Lean_KernelException_toMessageData___closed__48; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__51() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__50() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__50; +x_1 = l_Lean_KernelException_toMessageData___closed__49; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__52() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__51() { _start: { lean_object* x_1; @@ -10896,21 +11160,21 @@ x_1 = lean_mk_string_unchecked("(kernel) interrupted", 20, 20); return x_1; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__53() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__52() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__52; +x_1 = l_Lean_KernelException_toMessageData___closed__51; x_2 = lean_alloc_ctor(3, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_KernelException_toMessageData___closed__54() { +static lean_object* _init_l_Lean_KernelException_toMessageData___closed__53() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_KernelException_toMessageData___closed__53; +x_1 = l_Lean_KernelException_toMessageData___closed__52; x_2 = l_Lean_MessageData_ofFormat(x_1); return x_2; } @@ -10933,7 +11197,7 @@ x_7 = l_Lean_KernelException_toMessageData___closed__2; lean_ctor_set_tag(x_1, 7); lean_ctor_set(x_1, 1, x_6); lean_ctor_set(x_1, 0, x_7); -x_8 = l_Lean_KernelException_toMessageData___closed__4; +x_8 = l_Lean_KernelException_toMessageData___closed__3; x_9 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_9, 0, x_1); lean_ctor_set(x_9, 1, x_8); @@ -10954,7 +11218,7 @@ x_15 = l_Lean_KernelException_toMessageData___closed__2; x_16 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_16, 0, x_15); lean_ctor_set(x_16, 1, x_14); -x_17 = l_Lean_KernelException_toMessageData___closed__4; +x_17 = l_Lean_KernelException_toMessageData___closed__3; x_18 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_18, 0, x_16); lean_ctor_set(x_18, 1, x_17); @@ -10974,11 +11238,11 @@ x_22 = lean_ctor_get(x_1, 0); x_23 = lean_ctor_get(x_1, 1); x_24 = 1; x_25 = l_Lean_MessageData_ofConstName(x_23, x_24); -x_26 = l_Lean_KernelException_toMessageData___closed__6; +x_26 = l_Lean_KernelException_toMessageData___closed__5; lean_ctor_set_tag(x_1, 7); lean_ctor_set(x_1, 1, x_25); lean_ctor_set(x_1, 0, x_26); -x_27 = l_Lean_KernelException_toMessageData___closed__4; +x_27 = l_Lean_KernelException_toMessageData___closed__3; x_28 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_28, 0, x_1); lean_ctor_set(x_28, 1, x_27); @@ -10996,11 +11260,11 @@ lean_inc(x_31); lean_dec(x_1); x_33 = 1; x_34 = l_Lean_MessageData_ofConstName(x_32, x_33); -x_35 = l_Lean_KernelException_toMessageData___closed__6; +x_35 = l_Lean_KernelException_toMessageData___closed__5; x_36 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_36, 0, x_35); lean_ctor_set(x_36, 1, x_34); -x_37 = l_Lean_KernelException_toMessageData___closed__4; +x_37 = l_Lean_KernelException_toMessageData___closed__3; x_38 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_38, 0, x_36); lean_ctor_set(x_38, 1, x_37); @@ -11035,11 +11299,11 @@ x_47 = lean_ctor_get(x_43, 2); lean_inc(x_47); lean_dec(x_43); x_48 = l_Lean_MessageData_ofName(x_46); -x_49 = l_Lean_KernelException_toMessageData___closed__11; +x_49 = l_Lean_KernelException_toMessageData___closed__10; x_50 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_50, 0, x_49); lean_ctor_set(x_50, 1, x_48); -x_51 = l_Lean_KernelException_toMessageData___closed__13; +x_51 = l_Lean_KernelException_toMessageData___closed__12; x_52 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_52, 0, x_50); lean_ctor_set(x_52, 1, x_51); @@ -11047,7 +11311,7 @@ x_53 = l_Lean_indentExpr(x_45); x_54 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_54, 0, x_52); lean_ctor_set(x_54, 1, x_53); -x_55 = l_Lean_KernelException_toMessageData___closed__15; +x_55 = l_Lean_KernelException_toMessageData___closed__14; x_56 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_56, 0, x_54); lean_ctor_set(x_56, 1, x_55); @@ -11055,7 +11319,7 @@ x_57 = l_Lean_indentExpr(x_47); x_58 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_58, 0, x_56); lean_ctor_set(x_58, 1, x_57); -x_59 = l_Lean_KernelException_toMessageData___closed__16; +x_59 = l_Lean_KernelException_toMessageData___closed__15; x_60 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_60, 0, x_58); lean_ctor_set(x_60, 1, x_59); @@ -11083,11 +11347,11 @@ x_68 = lean_ctor_get(x_64, 2); lean_inc(x_68); lean_dec(x_64); x_69 = l_Lean_MessageData_ofName(x_67); -x_70 = l_Lean_KernelException_toMessageData___closed__11; +x_70 = l_Lean_KernelException_toMessageData___closed__10; x_71 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_71, 0, x_70); lean_ctor_set(x_71, 1, x_69); -x_72 = l_Lean_KernelException_toMessageData___closed__13; +x_72 = l_Lean_KernelException_toMessageData___closed__12; x_73 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_73, 0, x_71); lean_ctor_set(x_73, 1, x_72); @@ -11095,7 +11359,7 @@ x_74 = l_Lean_indentExpr(x_66); x_75 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_75, 0, x_73); lean_ctor_set(x_75, 1, x_74); -x_76 = l_Lean_KernelException_toMessageData___closed__15; +x_76 = l_Lean_KernelException_toMessageData___closed__14; x_77 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_77, 0, x_75); lean_ctor_set(x_77, 1, x_76); @@ -11103,7 +11367,7 @@ x_78 = l_Lean_indentExpr(x_68); x_79 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_79, 0, x_77); lean_ctor_set(x_79, 1, x_78); -x_80 = l_Lean_KernelException_toMessageData___closed__16; +x_80 = l_Lean_KernelException_toMessageData___closed__15; x_81 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_81, 0, x_79); lean_ctor_set(x_81, 1, x_80); @@ -11119,7 +11383,7 @@ x_84 = lean_ctor_get(x_1, 0); lean_inc(x_84); lean_dec(x_1); x_85 = l_Lean_addMessageContextPartial___rarg___lambda__1___closed__1; -x_86 = l_Lean_KernelException_toMessageData___closed__9; +x_86 = l_Lean_KernelException_toMessageData___closed__8; x_87 = l___private_Lean_Message_0__Lean_KernelException_mkCtx(x_84, x_85, x_2, x_86); return x_87; } @@ -11135,11 +11399,11 @@ lean_inc(x_89); lean_dec(x_1); x_90 = 1; x_91 = l_Lean_MessageData_ofConstName(x_89, x_90); -x_92 = l_Lean_KernelException_toMessageData___closed__18; +x_92 = l_Lean_KernelException_toMessageData___closed__17; x_93 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_93, 0, x_92); lean_ctor_set(x_93, 1, x_91); -x_94 = l_Lean_KernelException_toMessageData___closed__4; +x_94 = l_Lean_KernelException_toMessageData___closed__3; x_95 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_95, 0, x_93); lean_ctor_set(x_95, 1, x_94); @@ -11157,11 +11421,11 @@ lean_inc(x_99); lean_dec(x_1); x_100 = 1; x_101 = l_Lean_MessageData_ofConstName(x_99, x_100); -x_102 = l_Lean_KernelException_toMessageData___closed__20; +x_102 = l_Lean_KernelException_toMessageData___closed__19; x_103 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_103, 0, x_102); lean_ctor_set(x_103, 1, x_101); -x_104 = l_Lean_KernelException_toMessageData___closed__4; +x_104 = l_Lean_KernelException_toMessageData___closed__3; x_105 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_105, 0, x_103); lean_ctor_set(x_105, 1, x_104); @@ -11180,11 +11444,11 @@ x_110 = lean_ctor_get(x_1, 2); lean_inc(x_110); lean_dec(x_1); x_111 = l_Lean_indentExpr(x_110); -x_112 = l_Lean_KernelException_toMessageData___closed__22; +x_112 = l_Lean_KernelException_toMessageData___closed__21; x_113 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_113, 0, x_112); lean_ctor_set(x_113, 1, x_111); -x_114 = l_Lean_KernelException_toMessageData___closed__16; +x_114 = l_Lean_KernelException_toMessageData___closed__15; x_115 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_115, 0, x_113); lean_ctor_set(x_115, 1, x_114); @@ -11202,11 +11466,11 @@ x_119 = lean_ctor_get(x_1, 2); lean_inc(x_119); lean_dec(x_1); x_120 = l_Lean_indentExpr(x_119); -x_121 = l_Lean_KernelException_toMessageData___closed__24; +x_121 = l_Lean_KernelException_toMessageData___closed__23; x_122 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_122, 0, x_121); lean_ctor_set(x_122, 1, x_120); -x_123 = l_Lean_KernelException_toMessageData___closed__16; +x_123 = l_Lean_KernelException_toMessageData___closed__15; x_124 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_124, 0, x_122); lean_ctor_set(x_124, 1, x_123); @@ -11224,11 +11488,11 @@ x_128 = lean_ctor_get(x_1, 2); lean_inc(x_128); lean_dec(x_1); x_129 = l_Lean_MessageData_ofName(x_128); -x_130 = l_Lean_KernelException_toMessageData___closed__26; +x_130 = l_Lean_KernelException_toMessageData___closed__25; x_131 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_131, 0, x_130); lean_ctor_set(x_131, 1, x_129); -x_132 = l_Lean_KernelException_toMessageData___closed__4; +x_132 = l_Lean_KernelException_toMessageData___closed__3; x_133 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_133, 0, x_131); lean_ctor_set(x_133, 1, x_132); @@ -11246,11 +11510,11 @@ x_137 = lean_ctor_get(x_1, 2); lean_inc(x_137); lean_dec(x_1); x_138 = l_Lean_indentExpr(x_137); -x_139 = l_Lean_KernelException_toMessageData___closed__28; +x_139 = l_Lean_KernelException_toMessageData___closed__27; x_140 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_140, 0, x_139); lean_ctor_set(x_140, 1, x_138); -x_141 = l_Lean_KernelException_toMessageData___closed__16; +x_141 = l_Lean_KernelException_toMessageData___closed__15; x_142 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_142, 0, x_140); lean_ctor_set(x_142, 1, x_141); @@ -11272,11 +11536,11 @@ x_148 = lean_ctor_get(x_1, 4); lean_inc(x_148); lean_dec(x_1); x_149 = l_Lean_indentExpr(x_146); -x_150 = l_Lean_KernelException_toMessageData___closed__30; +x_150 = l_Lean_KernelException_toMessageData___closed__29; x_151 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_151, 0, x_150); lean_ctor_set(x_151, 1, x_149); -x_152 = l_Lean_KernelException_toMessageData___closed__32; +x_152 = l_Lean_KernelException_toMessageData___closed__31; x_153 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_153, 0, x_151); lean_ctor_set(x_153, 1, x_152); @@ -11284,7 +11548,7 @@ x_154 = l_Lean_indentExpr(x_148); x_155 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_155, 0, x_153); lean_ctor_set(x_155, 1, x_154); -x_156 = l_Lean_KernelException_toMessageData___closed__34; +x_156 = l_Lean_KernelException_toMessageData___closed__33; x_157 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_157, 0, x_155); lean_ctor_set(x_157, 1, x_156); @@ -11292,7 +11556,7 @@ x_158 = l_Lean_indentExpr(x_147); x_159 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_159, 0, x_157); lean_ctor_set(x_159, 1, x_158); -x_160 = l_Lean_KernelException_toMessageData___closed__16; +x_160 = l_Lean_KernelException_toMessageData___closed__15; x_161 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_161, 0, x_159); lean_ctor_set(x_161, 1, x_160); @@ -11310,11 +11574,11 @@ x_165 = lean_ctor_get(x_1, 2); lean_inc(x_165); lean_dec(x_1); x_166 = l_Lean_indentExpr(x_165); -x_167 = l_Lean_KernelException_toMessageData___closed__36; +x_167 = l_Lean_KernelException_toMessageData___closed__35; x_168 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_168, 0, x_167); lean_ctor_set(x_168, 1, x_166); -x_169 = l_Lean_KernelException_toMessageData___closed__16; +x_169 = l_Lean_KernelException_toMessageData___closed__15; x_170 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_170, 0, x_168); lean_ctor_set(x_170, 1, x_169); @@ -11333,11 +11597,11 @@ lean_inc(x_174); lean_dec(x_1); x_175 = 1; x_176 = l_Lean_MessageData_ofConstName(x_173, x_175); -x_177 = l_Lean_KernelException_toMessageData___closed__38; +x_177 = l_Lean_KernelException_toMessageData___closed__37; x_178 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_178, 0, x_177); lean_ctor_set(x_178, 1, x_176); -x_179 = l_Lean_KernelException_toMessageData___closed__40; +x_179 = l_Lean_KernelException_toMessageData___closed__39; x_180 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_180, 0, x_178); lean_ctor_set(x_180, 1, x_179); @@ -11345,7 +11609,7 @@ x_181 = l_Lean_indentExpr(x_174); x_182 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_182, 0, x_180); lean_ctor_set(x_182, 1, x_181); -x_183 = l_Lean_KernelException_toMessageData___closed__16; +x_183 = l_Lean_KernelException_toMessageData___closed__15; x_184 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_184, 0, x_182); lean_ctor_set(x_184, 1, x_183); @@ -11362,11 +11626,11 @@ lean_inc(x_187); lean_dec(x_1); x_188 = l_Lean_stringToMessageData(x_187); lean_dec(x_187); -x_189 = l_Lean_KernelException_toMessageData___closed__42; +x_189 = l_Lean_KernelException_toMessageData___closed__41; x_190 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_190, 0, x_189); lean_ctor_set(x_190, 1, x_188); -x_191 = l_Lean_KernelException_toMessageData___closed__16; +x_191 = l_Lean_KernelException_toMessageData___closed__15; x_192 = lean_alloc_ctor(7, 2, 0); lean_ctor_set(x_192, 0, x_190); lean_ctor_set(x_192, 1, x_191); @@ -11376,28 +11640,28 @@ case 13: { lean_object* x_193; lean_dec(x_2); -x_193 = l_Lean_KernelException_toMessageData___closed__45; +x_193 = l_Lean_KernelException_toMessageData___closed__44; return x_193; } case 14: { lean_object* x_194; lean_dec(x_2); -x_194 = l_Lean_KernelException_toMessageData___closed__48; +x_194 = l_Lean_KernelException_toMessageData___closed__47; return x_194; } case 15: { lean_object* x_195; lean_dec(x_2); -x_195 = l_Lean_KernelException_toMessageData___closed__51; +x_195 = l_Lean_KernelException_toMessageData___closed__50; return x_195; } default: { lean_object* x_196; lean_dec(x_2); -x_196 = l_Lean_KernelException_toMessageData___closed__54; +x_196 = l_Lean_KernelException_toMessageData___closed__53; return x_196; } } @@ -11636,110 +11900,122 @@ l_Lean_MessageData_ofList___closed__7 = _init_l_Lean_MessageData_ofList___closed lean_mark_persistent(l_Lean_MessageData_ofList___closed__7); l_Lean_MessageData_ofList___closed__8 = _init_l_Lean_MessageData_ofList___closed__8(); lean_mark_persistent(l_Lean_MessageData_ofList___closed__8); +l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1 = _init_l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__1); +l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__2 = _init_l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__2(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__2); +l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3 = _init_l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3(); +lean_mark_persistent(l_List_mapTR_loop___at_Lean_MessageData_orList___spec__1___closed__3); +l_Lean_MessageData_orList___closed__1 = _init_l_Lean_MessageData_orList___closed__1(); +lean_mark_persistent(l_Lean_MessageData_orList___closed__1); +l_Lean_MessageData_orList___closed__2 = _init_l_Lean_MessageData_orList___closed__2(); +lean_mark_persistent(l_Lean_MessageData_orList___closed__2); +l_Lean_MessageData_orList___closed__3 = _init_l_Lean_MessageData_orList___closed__3(); +lean_mark_persistent(l_Lean_MessageData_orList___closed__3); +l_Lean_MessageData_orList___closed__4 = _init_l_Lean_MessageData_orList___closed__4(); +lean_mark_persistent(l_Lean_MessageData_orList___closed__4); +l_Lean_MessageData_orList___closed__5 = _init_l_Lean_MessageData_orList___closed__5(); +lean_mark_persistent(l_Lean_MessageData_orList___closed__5); +l_Lean_MessageData_orList___closed__6 = _init_l_Lean_MessageData_orList___closed__6(); +lean_mark_persistent(l_Lean_MessageData_orList___closed__6); l_Lean_MessageData_andList___closed__1 = _init_l_Lean_MessageData_andList___closed__1(); lean_mark_persistent(l_Lean_MessageData_andList___closed__1); l_Lean_MessageData_andList___closed__2 = _init_l_Lean_MessageData_andList___closed__2(); lean_mark_persistent(l_Lean_MessageData_andList___closed__2); l_Lean_MessageData_andList___closed__3 = _init_l_Lean_MessageData_andList___closed__3(); lean_mark_persistent(l_Lean_MessageData_andList___closed__3); -l_Lean_MessageData_andList___closed__4 = _init_l_Lean_MessageData_andList___closed__4(); -lean_mark_persistent(l_Lean_MessageData_andList___closed__4); -l_Lean_MessageData_andList___closed__5 = _init_l_Lean_MessageData_andList___closed__5(); -lean_mark_persistent(l_Lean_MessageData_andList___closed__5); -l_Lean_MessageData_andList___closed__6 = _init_l_Lean_MessageData_andList___closed__6(); -lean_mark_persistent(l_Lean_MessageData_andList___closed__6); l_Lean_MessageData_instCoeList___closed__1 = _init_l_Lean_MessageData_instCoeList___closed__1(); lean_mark_persistent(l_Lean_MessageData_instCoeList___closed__1); l_Lean_MessageData_instCoeList = _init_l_Lean_MessageData_instCoeList(); lean_mark_persistent(l_Lean_MessageData_instCoeList); l_Lean_instInhabitedBaseMessage___rarg___closed__1 = _init_l_Lean_instInhabitedBaseMessage___rarg___closed__1(); lean_mark_persistent(l_Lean_instInhabitedBaseMessage___rarg___closed__1); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__1); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__2); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__3); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__4); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__5); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__6); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__7); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__8 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__8(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__8); -l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2587____rarg___closed__9); -l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___closed__1 = _init_l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___closed__1(); -lean_mark_persistent(l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__3___closed__1); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__1 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__1(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__1); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__2 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__2(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__2); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__3 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__3(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__3); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__4 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__4(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__4); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__5); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__6 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__6(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__6); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__7 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__7(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__7); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__8 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__8(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__8); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__9); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__10 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__10(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__10); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__11 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__11(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__11); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__12 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__12(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__12); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__13); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__14 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__14(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__14); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__15 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__15(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__15); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__16 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__16(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__16); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__17); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__18 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__18(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__18); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__19 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__19(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__19); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__20 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__20(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__20); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__21); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__22 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__22(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__22); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__23 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__23(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__23); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__24 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__24(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__24); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__25); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__26 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__26(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__26); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__27 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__27(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__27); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__28 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__28(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__28); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__29); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__30 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__30(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__30); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__31 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__31(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__31); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__32 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__32(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__32); -l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33(); -lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____rarg___closed__33); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__1); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__2); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__3); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__4); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__5); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__6); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__7); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__8 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__8(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__8); +l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9 = _init_l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_toJsonBaseMessage____x40_Lean_Message___hyg_2650____rarg___closed__9); +l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___closed__1 = _init_l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___closed__1(); +lean_mark_persistent(l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__3___closed__1); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__1 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__1(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__1); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__2 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__2(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__2); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__3 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__3(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__3); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__4 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__4(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__4); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__5); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__6 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__6(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__6); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__7 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__7(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__7); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__8 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__8(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__8); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__9); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__10 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__10(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__10); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__11 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__11(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__11); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__12 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__12(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__12); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__13); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__14 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__14(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__14); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__15 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__15(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__15); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__16 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__16(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__16); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__17); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__18 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__18(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__18); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__19 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__19(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__19); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__20 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__20(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__20); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__21); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__22 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__22(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__22); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__23 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__23(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__23); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__24 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__24(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__24); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__25); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__26 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__26(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__26); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__27 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__27(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__27); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__28 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__28(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__28); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__29); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__30 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__30(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__30); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__31 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__31(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__31); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__32 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__32(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__32); +l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33 = _init_l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33(); +lean_mark_persistent(l___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____rarg___closed__33); l_Lean_SerialMessage_toString___lambda__2___closed__1 = _init_l_Lean_SerialMessage_toString___lambda__2___closed__1(); lean_mark_persistent(l_Lean_SerialMessage_toString___lambda__2___closed__1); l_Lean_SerialMessage_toString___lambda__3___closed__1 = _init_l_Lean_SerialMessage_toString___lambda__3___closed__1(); @@ -11979,8 +12255,6 @@ l_Lean_KernelException_toMessageData___closed__52 = _init_l_Lean_KernelException lean_mark_persistent(l_Lean_KernelException_toMessageData___closed__52); l_Lean_KernelException_toMessageData___closed__53 = _init_l_Lean_KernelException_toMessageData___closed__53(); lean_mark_persistent(l_Lean_KernelException_toMessageData___closed__53); -l_Lean_KernelException_toMessageData___closed__54 = _init_l_Lean_KernelException_toMessageData___closed__54(); -lean_mark_persistent(l_Lean_KernelException_toMessageData___closed__54); return lean_io_result_mk_ok(lean_box(0)); } #ifdef __cplusplus diff --git a/stage0/stdlib/Lean/Meta/AppBuilder.c b/stage0/stdlib/Lean/Meta/AppBuilder.c index 9df4c8d6ef..a20e9db9f3 100644 --- a/stage0/stdlib/Lean/Meta/AppBuilder.c +++ b/stage0/stdlib/Lean/Meta/AppBuilder.c @@ -198,6 +198,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_congrArg_x3f___lambda__3(lean_object*, lean static lean_object* l_Lean_Meta_mkFunExt___closed__1; static lean_object* l_Lean_Meta_mkEqFalse_x27___closed__1; static lean_object* l_Lean_Meta_mkProjection___lambda__2___closed__1; +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_mkDecide___closed__3; LEAN_EXPORT lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_withAppBuilderTrace___at_Lean_Meta_mkAppM_x27___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_mkHEqTrans___closed__1; @@ -434,7 +435,6 @@ lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_Meta_mkLetCongr___closed__2; LEAN_EXPORT lean_object* l_Lean_Meta_mkCongrFun(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkListLitAux(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_mkAppOptMAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l___private_Lean_Meta_AppBuilder_0__Lean_Meta_withAppBuilderTrace___rarg___lambda__1___closed__6; @@ -4314,7 +4314,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_42 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_39, x_40, x_32, x_38, x_41, x_3, x_4, x_5, x_6, x_7); +x_42 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_39, x_40, x_32, x_38, x_41, x_3, x_4, x_5, x_6, x_7); if (lean_obj_tag(x_42) == 0) { lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; @@ -4326,7 +4326,7 @@ lean_dec(x_42); x_45 = lean_alloc_closure((void*)(l_Lean_Meta_congrArg_x3f___lambda__3___boxed), 7, 1); lean_closure_set(x_45, 0, x_37); lean_inc(x_43); -x_46 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_39, x_40, x_43, x_45, x_41, x_3, x_4, x_5, x_6, x_44); +x_46 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_39, x_40, x_43, x_45, x_41, x_3, x_4, x_5, x_6, x_44); if (lean_obj_tag(x_46) == 0) { uint8_t x_47; @@ -5448,7 +5448,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_180 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_177, x_178, x_173, x_176, x_179, x_3, x_4, x_5, x_6, x_172); +x_180 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_177, x_178, x_173, x_176, x_179, x_3, x_4, x_5, x_6, x_172); if (lean_obj_tag(x_180) == 0) { lean_object* x_181; lean_object* x_182; @@ -5935,7 +5935,7 @@ lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -x_90 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_87, x_88, x_83, x_86, x_89, x_3, x_4, x_5, x_6, x_82); +x_90 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_87, x_88, x_83, x_86, x_89, x_3, x_4, x_5, x_6, x_82); if (lean_obj_tag(x_90) == 0) { lean_object* x_91; lean_object* x_92; lean_object* x_93; diff --git a/stage0/stdlib/Lean/Meta/ArgsPacker.c b/stage0/stdlib/Lean/Meta/ArgsPacker.c index 348ef1fbb5..463b85960d 100644 --- a/stage0/stdlib/Lean/Meta/ArgsPacker.c +++ b/stage0/stdlib/Lean/Meta/ArgsPacker.c @@ -133,6 +133,7 @@ lean_object* l_Array_reverse___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_ArgsPacker_Unary_uncurryType___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ArgsPacker_0__Lean_Meta_ArgsPacker_Unary_casesOn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_ArgsPacker_0__Lean_Meta_ArgsPacker_Unary_curry_go___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_ArgsPacker_uncurry(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -310,7 +311,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_ArgsPacker_Unary_pack_go___boxed(lean_objec LEAN_EXPORT lean_object* l_Lean_Meta_ArgsPacker_uncurryType___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_ArgsPacker_Mutual_curryType___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_ArgsPacker_Mutual_pack_go(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_ArgsPacker_Mutual_uncurryTypeND___spec__1(size_t, size_t, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_ArgsPacker_0__Lean_Meta_ArgsPacker_Mutual_casesOn___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1445,7 +1445,7 @@ lean_object* x_21; uint8_t x_22; uint8_t x_23; lean_object* x_24; x_21 = l_Lean_Meta_ArgsPacker_Unary_uncurryType___lambda__2___closed__6; x_22 = 0; x_23 = 0; -x_24 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_21, x_22, x_16, x_20, x_23, x_6, x_7, x_8, x_9, x_17); +x_24 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_21, x_22, x_16, x_20, x_23, x_6, x_7, x_8, x_9, x_17); return x_24; } else @@ -1460,7 +1460,7 @@ x_27 = l_Lean_instInhabitedName; x_28 = l_outOfBounds___rarg(x_27); x_29 = 0; x_30 = 0; -x_31 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_28, x_29, x_16, x_20, x_30, x_6, x_7, x_8, x_9, x_17); +x_31 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_28, x_29, x_16, x_20, x_30, x_6, x_7, x_8, x_9, x_17); return x_31; } else @@ -1469,7 +1469,7 @@ lean_object* x_32; uint8_t x_33; uint8_t x_34; lean_object* x_35; x_32 = lean_array_fget(x_3, x_25); x_33 = 0; x_34 = 0; -x_35 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_32, x_33, x_16, x_20, x_34, x_6, x_7, x_8, x_9, x_17); +x_35 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_32, x_33, x_16, x_20, x_34, x_6, x_7, x_8, x_9, x_17); return x_35; } } @@ -1652,7 +1652,7 @@ lean_closure_set(x_19, 9, x_17); lean_closure_set(x_19, 10, x_9); x_20 = 0; x_21 = 0; -x_22 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_6, x_20, x_18, x_19, x_21, x_11, x_12, x_13, x_14, x_15); +x_22 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_6, x_20, x_18, x_19, x_21, x_11, x_12, x_13, x_14, x_15); return x_22; } } @@ -1717,7 +1717,7 @@ lean_closure_set(x_27, 8, x_7); x_28 = 0; x_29 = 0; lean_inc(x_9); -x_30 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_8, x_28, x_9, x_27, x_29, x_11, x_12, x_13, x_14, x_26); +x_30 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_8, x_28, x_9, x_27, x_29, x_11, x_12, x_13, x_14, x_26); if (lean_obj_tag(x_30) == 0) { uint8_t x_31; @@ -2487,7 +2487,7 @@ lean_closure_set(x_11, 1, x_1); lean_closure_set(x_11, 2, x_2); x_12 = 0; x_13 = 0; -x_14 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_3, x_12, x_4, x_11, x_13, x_6, x_7, x_8, x_9, x_10); +x_14 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_3, x_12, x_4, x_11, x_13, x_6, x_7, x_8, x_9, x_10); return x_14; } } @@ -2900,7 +2900,7 @@ lean_closure_set(x_13, 3, x_3); lean_closure_set(x_13, 4, x_4); x_14 = 0; x_15 = 0; -x_16 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_5, x_14, x_6, x_13, x_15, x_8, x_9, x_10, x_11, x_12); +x_16 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_5, x_14, x_6, x_13, x_15, x_8, x_9, x_10, x_11, x_12); return x_16; } } @@ -2981,7 +2981,7 @@ lean_closure_set(x_20, 1, x_1); lean_closure_set(x_20, 2, x_2); x_21 = 0; x_22 = 0; -x_23 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_19, x_21, x_3, x_20, x_22, x_6, x_7, x_8, x_9, x_10); +x_23 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_19, x_21, x_3, x_20, x_22, x_6, x_7, x_8, x_9, x_10); return x_23; } else @@ -4971,7 +4971,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); -x_70 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_62, x_68, x_67, x_66, x_69, x_5, x_6, x_7, x_8, x_63); +x_70 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_62, x_68, x_67, x_66, x_69, x_5, x_6, x_7, x_8, x_63); if (lean_obj_tag(x_70) == 0) { lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; uint8_t x_76; lean_object* x_77; @@ -4999,7 +4999,7 @@ lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_dec(x_40); x_78 = l_Lean_instInhabitedExpr; x_79 = l_outOfBounds___rarg(x_78); -x_80 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_74, x_68, x_79, x_77, x_69, x_5, x_6, x_7, x_8, x_75); +x_80 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_74, x_68, x_79, x_77, x_69, x_5, x_6, x_7, x_8, x_75); if (lean_obj_tag(x_80) == 0) { uint8_t x_81; @@ -5057,7 +5057,7 @@ else lean_object* x_92; lean_object* x_93; x_92 = lean_array_fget(x_40, x_11); lean_dec(x_40); -x_93 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_74, x_68, x_92, x_77, x_69, x_5, x_6, x_7, x_8, x_75); +x_93 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_74, x_68, x_92, x_77, x_69, x_5, x_6, x_7, x_8, x_75); if (lean_obj_tag(x_93) == 0) { uint8_t x_94; @@ -5779,7 +5779,7 @@ lean_closure_set(x_21, 0, x_10); x_22 = l_Lean_Meta_ArgsPacker_Mutual_uncurryType___closed__2; x_23 = 0; x_24 = 0; -x_25 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_22, x_23, x_19, x_21, x_24, x_2, x_3, x_4, x_5, x_20); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_22, x_23, x_19, x_21, x_24, x_2, x_3, x_4, x_5, x_20); return x_25; } else @@ -6658,7 +6658,7 @@ lean_inc(x_12); lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); -x_39 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_34, x_37, x_9, x_36, x_38, x_10, x_11, x_12, x_13, x_35); +x_39 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_34, x_37, x_9, x_36, x_38, x_10, x_11, x_12, x_13, x_35); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; lean_object* x_42; @@ -8800,7 +8800,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_22 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_19, x_20, x_18, x_16, x_21, x_8, x_9, x_10, x_11, x_12); +x_22 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_19, x_20, x_18, x_16, x_21, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_22) == 0) { lean_object* x_23; lean_object* x_24; uint8_t x_25; @@ -8868,7 +8868,7 @@ lean_inc(x_11); lean_inc(x_10); lean_inc(x_9); lean_inc(x_8); -x_39 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_36, x_37, x_35, x_16, x_38, x_8, x_9, x_10, x_11, x_12); +x_39 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_36, x_37, x_35, x_16, x_38, x_8, x_9, x_10, x_11, x_12); if (lean_obj_tag(x_39) == 0) { lean_object* x_40; lean_object* x_41; uint8_t x_42; @@ -9503,7 +9503,7 @@ x_29 = lean_box(0); x_30 = l_Lean_Name_str___override(x_29, x_28); x_31 = 0; x_32 = 0; -x_33 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_30, x_31, x_12, x_17, x_32, x_6, x_7, x_8, x_9, x_10); +x_33 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_30, x_31, x_12, x_17, x_32, x_6, x_7, x_8, x_9, x_10); return x_33; } else @@ -9512,7 +9512,7 @@ uint8_t x_34; uint8_t x_35; lean_object* x_36; lean_dec(x_5); x_34 = 0; x_35 = 0; -x_36 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_2, x_34, x_12, x_17, x_35, x_6, x_7, x_8, x_9, x_10); +x_36 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_2, x_34, x_12, x_17, x_35, x_6, x_7, x_8, x_9, x_10); return x_36; } } diff --git a/stage0/stdlib/Lean/Meta/Check.c b/stage0/stdlib/Lean/Meta/Check.c index 206fdc28f1..50091aacbe 100644 --- a/stage0/stdlib/Lean/Meta/Check.c +++ b/stage0/stdlib/Lean/Meta/Check.c @@ -13,27 +13,27 @@ #ifdef __cplusplus extern "C" { #endif -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__3; static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__11; LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__2___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___lambda__1___closed__8; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__11; LEAN_EXPORT uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__2(lean_object*, lean_object*); extern lean_object* l_Lean_profiler; lean_object* l_Lean_getConstInfo___at_Lean_Meta_mkConstWithFreshMVarLevels___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__8; lean_object* l_Lean_mkAppN(lean_object*, lean_object*); +LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2(lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___closed__3; +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___closed__1; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__4; static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_check___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_whnf(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1___boxed(lean_object**); LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__3; lean_object* l_Lean_ConstantInfo_levelParams(lean_object*); lean_object* l_Lean_indentD(lean_object*); double lean_float_div(double, double); @@ -48,20 +48,22 @@ static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__3; LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_throwLetTypeMismatchMessage___spec__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkConstant(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__10; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_sort___override(lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__12; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_mk_array(lean_object*, lean_object*); uint8_t lean_usize_dec_eq(size_t, size_t); static lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg___closed__1; lean_object* l_Lean_Expr_mdata___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__4; lean_object* lean_array_fget(lean_object*, lean_object*); lean_object* l_Lean_Expr_setAppPPExplicit(lean_object*); lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__1; static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__7; lean_object* l_Lean_Expr_fvarId_x21(lean_object*); static lean_object* l_Lean_Meta_check___lambda__1___closed__2; @@ -69,7 +71,7 @@ static lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambd uint8_t lean_float_decLt(double, double); static lean_object* l_panic___at_Lean_Meta_throwLetTypeMismatchMessage___spec__1___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__8; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__8; LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_check___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___closed__3; @@ -81,13 +83,14 @@ extern lean_object* l_Lean_trace_profiler_useHeartbeats; static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff___closed__5; lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___closed__6; +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3(lean_object*); static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__1; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__2___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__2; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1; lean_object* l_Lean_Exception_toMessageData(lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__4; lean_object* l_Lean_Meta_throwFunctionExpected___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_foldlM___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__5(lean_object*, lean_object*); size_t lean_ptr_addr(lean_object*); @@ -96,24 +99,27 @@ LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwAppTypeMismatch__ static double l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__5; static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff___closed__3; size_t lean_usize_of_nat(lean_object*); +lean_object* lean_expr_abstract(lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_lambdaTelescopeImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__4; LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_ensureType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_local_ctx_find(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__9; uint64_t lean_uint64_shift_right(uint64_t, uint64_t); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__13; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__11; lean_object* lean_nat_div(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_throwLetTypeMismatchMessage(lean_object*); lean_object* l_Lean_Option_get___at_Lean_profiler_threshold_getSecs___spec__1(lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__6; lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_processPostponed___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean_object*); static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff___closed__2; +LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2___boxed(lean_object*, lean_object*); lean_object* l_Lean_Expr_setPPExplicit(lean_object*, uint8_t); lean_object* l_Lean_Meta_SavedState_restore(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___lambda__1___closed__3; lean_object* l_Lean_PersistentArray_append___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -123,6 +129,7 @@ static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_throwLetTypeMismatchMessage___spec__1(lean_object*); lean_object* l_Lean_Meta_getLevel(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwAppTypeMismatch___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Expr_forallE___override(lean_object*, lean_object*, lean_object*, uint8_t); lean_object* l_outOfBounds___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwLetTypeMismatchMessage___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_checkEmoji; @@ -141,10 +148,10 @@ static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda extern lean_object* l_Lean_instInhabitedExpr; lean_object* l_Lean_Meta_whnfD(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint64_t l_Lean_Expr_hash(lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__9; lean_object* l_List_lengthTRAux___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_throwLetTypeMismatchMessage___spec__3(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__2(lean_object*); +uint8_t lean_name_eq(lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); uint8_t lean_expr_equal(lean_object*, lean_object*); uint8_t l_Lean_Option_get___at___private_Lean_Util_Profile_0__Lean_get__profiler___spec__1(lean_object*, lean_object*); @@ -160,6 +167,8 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___l lean_object* l_Lean_Meta_throwIncorrectNumberOfLevels___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_replace___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__6(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_check___closed__2; +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__5(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_instInhabitedMetaM___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__2___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed__2; @@ -168,12 +177,12 @@ LEAN_EXPORT lean_object* l_Lean_withoutModifyingState___at_Lean_Meta_addPPExplic lean_object* l_Lean_MessageData_ofExpr(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallTelescopeReducingAuxAux___rarg(uint8_t, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__2; double l_Float_ofScientific(lean_object*, uint8_t, lean_object*); extern lean_object* l_Lean_crossEmoji; LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_365____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff___closed__4; @@ -182,10 +191,13 @@ static lean_object* l_Lean_Meta_check___lambda__1___closed__5; lean_object* l_Lean_Expr_app___override(lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___closed__1; uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__9; LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__5; lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__6; static lean_object* l_Lean_Meta_check___lambda__1___closed__4; static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__5; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); @@ -198,9 +210,9 @@ static lean_object* l_Lean_Meta_check___lambda__1___closed__1; static lean_object* l_Lean_Meta_check___lambda__1___closed__7; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___closed__1; -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__5; LEAN_EXPORT lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__3; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__2; lean_object* lean_array_set(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getAppFn_x27(lean_object*); uint8_t l_Lean_KVMap_getBool(lean_object*, lean_object*, uint8_t); @@ -215,16 +227,25 @@ static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda lean_object* l_Lean_Expr_getAppFn(lean_object*); static lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___closed__1; lean_object* lean_nat_mul(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__14; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__3; +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1; +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___spec__2___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_sub(size_t, size_t); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkConstant___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* lean_array_mk(lean_object*); +lean_object* l_Lean_Expr_setPPNumericTypes(lean_object*, uint8_t); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__12; LEAN_EXPORT lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_checkApp(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__12; LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__3(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5; LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_getFunctionDomain(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__1(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); @@ -234,33 +255,38 @@ extern lean_object* l_Lean_trace_profiler; LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x3f___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__1___boxed(lean_object*, lean_object*); +lean_object* l_Lean_Expr_setPPFunBinderTypes(lean_object*, uint8_t); lean_object* l_Lean_addTrace___at_Lean_Meta_processPostponed_loop___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_throwAppTypeMismatch___rarg___lambda__1___closed__5; lean_object* l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_lambdaLetTelescope___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkLambdaLet___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__7; lean_object* l_Lean_isTracingEnabledFor___at_Lean_Meta_processPostponed_loop___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_check___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg___closed__2; lean_object* lean_array_get_size(lean_object*); +static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__4; +static lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__2; lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_nat_add(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_check___spec__1___lambda__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Exception_isRuntime(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480_(lean_object*); +lean_object* l_Lean_Expr_lam___override(lean_object*, lean_object*, lean_object*, uint8_t); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__13; +lean_object* l_Lean_Expr_setPPPiBinderTypes(lean_object*, uint8_t); static lean_object* l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__2; uint8_t l_Lean_Expr_isForall(lean_object*); static lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed__3; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__14; LEAN_EXPORT lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux_checkForall(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l___private_Lean_Meta_Check_0__Lean_Meta_checkAux___closed__1; lean_object* lean_expr_instantiate1(lean_object*, lean_object*); +static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__10; static lean_object* l_Lean_Meta_mkHasTypeButIsExpectedMsg___closed__3; LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___private_Lean_Meta_Check_0__Lean_Meta_checkAux_check___spec__4(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_Meta_throwLetTypeMismatchMessage___spec__2___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2340,6 +2366,102 @@ return x_125; } } } +LEAN_EXPORT uint8_t l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2(lean_object* x_1, lean_object* x_2) { +_start: +{ +if (lean_obj_tag(x_1) == 0) +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_3; +x_3 = 1; +return x_3; +} +else +{ +uint8_t x_4; +x_4 = 0; +return x_4; +} +} +else +{ +if (lean_obj_tag(x_2) == 0) +{ +uint8_t x_5; +x_5 = 0; +return x_5; +} +else +{ +lean_object* x_6; lean_object* x_7; uint8_t x_8; +x_6 = lean_ctor_get(x_1, 0); +x_7 = lean_ctor_get(x_2, 0); +x_8 = lean_name_eq(x_6, x_7); +return x_8; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +lean_object* x_11; +x_11 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); +if (lean_obj_tag(x_11) == 0) +{ +uint8_t x_12; +x_12 = !lean_is_exclusive(x_11); +if (x_12 == 0) +{ +return x_11; +} +else +{ +lean_object* x_13; lean_object* x_14; lean_object* x_15; +x_13 = lean_ctor_get(x_11, 0); +x_14 = lean_ctor_get(x_11, 1); +lean_inc(x_14); +lean_inc(x_13); +lean_dec(x_11); +x_15 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_15, 0, x_13); +lean_ctor_set(x_15, 1, x_14); +return x_15; +} +} +else +{ +uint8_t x_16; +x_16 = !lean_is_exclusive(x_11); +if (x_16 == 0) +{ +return x_11; +} +else +{ +lean_object* x_17; lean_object* x_18; lean_object* x_19; +x_17 = lean_ctor_get(x_11, 0); +x_18 = lean_ctor_get(x_11, 1); +lean_inc(x_18); +lean_inc(x_17); +lean_dec(x_11); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); +return x_19; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3(lean_object* x_1) { +_start: +{ +lean_object* x_2; +x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg___boxed), 10, 0); +return x_2; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -2348,29 +2470,37 @@ x_12 = l_Lean_mkAppN(x_1, x_4); x_13 = l_Lean_mkAppN(x_2, x_5); if (lean_obj_tag(x_3) == 0) { -uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; +uint8_t x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; x_14 = 1; x_15 = l_Lean_Expr_setPPExplicit(x_12, x_14); x_16 = l_Lean_Expr_setPPExplicit(x_13, x_14); x_17 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_17, 0, x_15); lean_ctor_set(x_17, 1, x_16); -x_18 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_18, 0, x_17); -lean_ctor_set(x_18, 1, x_11); -return x_18; -} -else -{ -lean_object* x_19; lean_object* x_20; -x_19 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_19, 0, x_12); -lean_ctor_set(x_19, 1, x_13); +x_18 = lean_box(0); +x_19 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_19, 0, x_17); +lean_ctor_set(x_19, 1, x_18); x_20 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_20, 0, x_19); lean_ctor_set(x_20, 1, x_11); return x_20; } +else +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; +x_21 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_21, 0, x_12); +lean_ctor_set(x_21, 1, x_13); +x_22 = lean_box(0); +x_23 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_23, 0, x_21); +lean_ctor_set(x_23, 1, x_22); +x_24 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_24, 0, x_23); +lean_ctor_set(x_24, 1, x_11); +return x_24; +} } } LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12) { @@ -2691,6 +2821,446 @@ return x_77; } } } +static lean_object* _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("OfNat", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__2() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("ofNat", 5, 5); +return x_1; +} +} +static lean_object* _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__3() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__1; +x_2 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__2; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__3; +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +static lean_object* _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = lean_unsigned_to_nat(0u); +x_2 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +if (lean_obj_tag(x_1) == 4) +{ +if (lean_obj_tag(x_2) == 4) +{ +lean_object* x_38; lean_object* x_39; uint8_t x_40; +x_38 = lean_ctor_get(x_1, 0); +lean_inc(x_38); +x_39 = lean_ctor_get(x_2, 0); +lean_inc(x_39); +x_40 = lean_name_eq(x_38, x_39); +lean_dec(x_39); +if (x_40 == 0) +{ +lean_dec(x_38); +x_16 = x_7; +goto block_37; +} +else +{ +lean_object* x_41; +lean_dec(x_7); +x_41 = lean_alloc_ctor(1, 1, 0); +lean_ctor_set(x_41, 0, x_38); +x_16 = x_41; +goto block_37; +} +} +else +{ +x_16 = x_7; +goto block_37; +} +} +else +{ +x_16 = x_7; +goto block_37; +} +block_37: +{ +lean_object* x_17; uint8_t x_18; +x_17 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__4; +x_18 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2(x_16, x_17); +lean_dec(x_16); +if (x_18 == 0) +{ +lean_object* x_19; lean_object* x_20; +lean_dec(x_6); +lean_dec(x_5); +x_19 = lean_box(0); +x_20 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_1, x_2, x_3, x_4, x_8, x_9, x_19, x_11, x_12, x_13, x_14, x_15); +return x_20; +} +else +{ +lean_object* x_21; lean_object* x_22; uint8_t x_23; +x_21 = lean_array_get_size(x_8); +x_22 = lean_unsigned_to_nat(3u); +x_23 = lean_nat_dec_le(x_22, x_21); +lean_dec(x_21); +if (x_23 == 0) +{ +lean_object* x_24; lean_object* x_25; +lean_dec(x_6); +lean_dec(x_5); +x_24 = lean_box(0); +x_25 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_1, x_2, x_3, x_4, x_8, x_9, x_24, x_11, x_12, x_13, x_14, x_15); +return x_25; +} +else +{ +lean_object* x_26; uint8_t x_27; +x_26 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5; +x_27 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at___private_Lean_Meta_Basic_0__Lean_Meta_beqInfoCacheKey____x40_Lean_Meta_Basic___hyg_365____spec__1(x_4, x_26); +if (x_27 == 0) +{ +lean_object* x_28; lean_object* x_29; +lean_dec(x_6); +lean_dec(x_5); +x_28 = lean_box(0); +x_29 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_1, x_2, x_3, x_4, x_8, x_9, x_28, x_11, x_12, x_13, x_14, x_15); +return x_29; +} +else +{ +uint8_t x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; +lean_dec(x_14); +lean_dec(x_13); +lean_dec(x_12); +lean_dec(x_11); +lean_dec(x_9); +lean_dec(x_8); +lean_dec(x_2); +lean_dec(x_1); +x_30 = 1; +x_31 = l_Lean_Expr_setPPNumericTypes(x_5, x_30); +x_32 = l_Lean_Expr_setPPNumericTypes(x_6, x_30); +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_31); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_box(0); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +x_36 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_36, 0, x_35); +lean_ctor_set(x_36, 1, x_15); +return x_36; +} +} +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__4(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_expr_instantiate1(x_1, x_9); +x_16 = lean_expr_instantiate1(x_2, x_9); +x_17 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_15, x_16, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_17, 0); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_21 = lean_ctor_get(x_19, 0); +x_22 = lean_ctor_get(x_19, 1); +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_9); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_mk(x_24); +x_26 = lean_expr_abstract(x_21, x_25); +lean_dec(x_21); +x_27 = l_Lean_Expr_lam___override(x_3, x_4, x_26, x_5); +x_28 = lean_expr_abstract(x_22, x_25); +lean_dec(x_25); +lean_dec(x_22); +x_29 = l_Lean_Expr_lam___override(x_6, x_7, x_28, x_8); +lean_ctor_set(x_19, 1, x_29); +lean_ctor_set(x_19, 0, x_27); +return x_17; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_30 = lean_ctor_get(x_19, 0); +x_31 = lean_ctor_get(x_19, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_19); +x_32 = lean_box(0); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_9); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_mk(x_33); +x_35 = lean_expr_abstract(x_30, x_34); +lean_dec(x_30); +x_36 = l_Lean_Expr_lam___override(x_3, x_4, x_35, x_5); +x_37 = lean_expr_abstract(x_31, x_34); +lean_dec(x_34); +lean_dec(x_31); +x_38 = l_Lean_Expr_lam___override(x_6, x_7, x_37, x_8); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_36); +lean_ctor_set(x_39, 1, x_38); +lean_ctor_set(x_17, 0, x_39); +return x_17; +} +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_40 = lean_ctor_get(x_17, 0); +x_41 = lean_ctor_get(x_17, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_17); +x_42 = lean_ctor_get(x_40, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + x_44 = x_40; +} else { + lean_dec_ref(x_40); + x_44 = lean_box(0); +} +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_9); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_array_mk(x_46); +x_48 = lean_expr_abstract(x_42, x_47); +lean_dec(x_42); +x_49 = l_Lean_Expr_lam___override(x_3, x_4, x_48, x_5); +x_50 = lean_expr_abstract(x_43, x_47); +lean_dec(x_47); +lean_dec(x_43); +x_51 = l_Lean_Expr_lam___override(x_6, x_7, x_50, x_8); +if (lean_is_scalar(x_44)) { + x_52 = lean_alloc_ctor(0, 2, 0); +} else { + x_52 = x_44; +} +lean_ctor_set(x_52, 0, x_49); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_41); +return x_53; +} +} +else +{ +uint8_t x_54; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_54 = !lean_is_exclusive(x_17); +if (x_54 == 0) +{ +return x_17; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_17, 0); +x_56 = lean_ctor_get(x_17, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_17); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__5(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, uint8_t x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +lean_object* x_15; lean_object* x_16; lean_object* x_17; +x_15 = lean_expr_instantiate1(x_1, x_9); +x_16 = lean_expr_instantiate1(x_2, x_9); +x_17 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_15, x_16, x_10, x_11, x_12, x_13, x_14); +if (lean_obj_tag(x_17) == 0) +{ +uint8_t x_18; +x_18 = !lean_is_exclusive(x_17); +if (x_18 == 0) +{ +lean_object* x_19; uint8_t x_20; +x_19 = lean_ctor_get(x_17, 0); +x_20 = !lean_is_exclusive(x_19); +if (x_20 == 0) +{ +lean_object* x_21; lean_object* x_22; lean_object* x_23; lean_object* x_24; lean_object* x_25; lean_object* x_26; lean_object* x_27; lean_object* x_28; lean_object* x_29; +x_21 = lean_ctor_get(x_19, 0); +x_22 = lean_ctor_get(x_19, 1); +x_23 = lean_box(0); +x_24 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_24, 0, x_9); +lean_ctor_set(x_24, 1, x_23); +x_25 = lean_array_mk(x_24); +x_26 = lean_expr_abstract(x_21, x_25); +lean_dec(x_21); +x_27 = l_Lean_Expr_forallE___override(x_3, x_4, x_26, x_5); +x_28 = lean_expr_abstract(x_22, x_25); +lean_dec(x_25); +lean_dec(x_22); +x_29 = l_Lean_Expr_forallE___override(x_6, x_7, x_28, x_8); +lean_ctor_set(x_19, 1, x_29); +lean_ctor_set(x_19, 0, x_27); +return x_17; +} +else +{ +lean_object* x_30; lean_object* x_31; lean_object* x_32; lean_object* x_33; lean_object* x_34; lean_object* x_35; lean_object* x_36; lean_object* x_37; lean_object* x_38; lean_object* x_39; +x_30 = lean_ctor_get(x_19, 0); +x_31 = lean_ctor_get(x_19, 1); +lean_inc(x_31); +lean_inc(x_30); +lean_dec(x_19); +x_32 = lean_box(0); +x_33 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_33, 0, x_9); +lean_ctor_set(x_33, 1, x_32); +x_34 = lean_array_mk(x_33); +x_35 = lean_expr_abstract(x_30, x_34); +lean_dec(x_30); +x_36 = l_Lean_Expr_forallE___override(x_3, x_4, x_35, x_5); +x_37 = lean_expr_abstract(x_31, x_34); +lean_dec(x_34); +lean_dec(x_31); +x_38 = l_Lean_Expr_forallE___override(x_6, x_7, x_37, x_8); +x_39 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_39, 0, x_36); +lean_ctor_set(x_39, 1, x_38); +lean_ctor_set(x_17, 0, x_39); +return x_17; +} +} +else +{ +lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; +x_40 = lean_ctor_get(x_17, 0); +x_41 = lean_ctor_get(x_17, 1); +lean_inc(x_41); +lean_inc(x_40); +lean_dec(x_17); +x_42 = lean_ctor_get(x_40, 0); +lean_inc(x_42); +x_43 = lean_ctor_get(x_40, 1); +lean_inc(x_43); +if (lean_is_exclusive(x_40)) { + lean_ctor_release(x_40, 0); + lean_ctor_release(x_40, 1); + x_44 = x_40; +} else { + lean_dec_ref(x_40); + x_44 = lean_box(0); +} +x_45 = lean_box(0); +x_46 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_46, 0, x_9); +lean_ctor_set(x_46, 1, x_45); +x_47 = lean_array_mk(x_46); +x_48 = lean_expr_abstract(x_42, x_47); +lean_dec(x_42); +x_49 = l_Lean_Expr_forallE___override(x_3, x_4, x_48, x_5); +x_50 = lean_expr_abstract(x_43, x_47); +lean_dec(x_47); +lean_dec(x_43); +x_51 = l_Lean_Expr_forallE___override(x_6, x_7, x_50, x_8); +if (lean_is_scalar(x_44)) { + x_52 = lean_alloc_ctor(0, 2, 0); +} else { + x_52 = x_44; +} +lean_ctor_set(x_52, 0, x_49); +lean_ctor_set(x_52, 1, x_51); +x_53 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_53, 0, x_52); +lean_ctor_set(x_53, 1, x_41); +return x_53; +} +} +else +{ +uint8_t x_54; +lean_dec(x_9); +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_4); +lean_dec(x_3); +x_54 = !lean_is_exclusive(x_17); +if (x_54 == 0) +{ +return x_17; +} +else +{ +lean_object* x_55; lean_object* x_56; lean_object* x_57; +x_55 = lean_ctor_get(x_17, 0); +x_56 = lean_ctor_get(x_17, 1); +lean_inc(x_56); +lean_inc(x_55); +lean_dec(x_17); +x_57 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_57, 0, x_55); +lean_ctor_set(x_57, 1, x_56); +return x_57; +} +} +} +} static lean_object* _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1() { _start: { @@ -2714,1696 +3284,2759 @@ return x_2; LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_8; lean_object* x_9; +lean_object* x_8; lean_object* x_9; lean_object* x_19; lean_object* x_20; switch (lean_obj_tag(x_1)) { case 5: { switch (lean_obj_tag(x_2)) { case 5: { -lean_object* x_17; lean_object* x_18; lean_object* x_19; uint8_t x_20; -x_17 = lean_unsigned_to_nat(0u); -x_18 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_17); -x_19 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_17); -x_20 = lean_nat_dec_eq(x_18, x_19); -if (x_20 == 0) +lean_object* x_29; lean_object* x_30; lean_object* x_31; uint8_t x_32; +x_29 = lean_unsigned_to_nat(0u); +x_30 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_1, x_29); +x_31 = l___private_Lean_Expr_0__Lean_Expr_getAppNumArgsAux(x_2, x_29); +x_32 = lean_nat_dec_eq(x_30, x_31); +if (x_32 == 0) { -lean_object* x_21; lean_object* x_22; -lean_dec(x_19); -lean_dec(x_18); +lean_object* x_33; lean_object* x_34; lean_object* x_35; +lean_dec(x_31); +lean_dec(x_30); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_21 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_21, 0, x_1); -lean_ctor_set(x_21, 1, x_2); -x_22 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_22, 0, x_21); -lean_ctor_set(x_22, 1, x_7); -return x_22; +x_33 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_33, 0, x_1); +lean_ctor_set(x_33, 1, x_2); +x_34 = lean_box(0); +x_35 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_35, 0, x_33); +lean_ctor_set(x_35, 1, x_34); +x_8 = x_35; +x_9 = x_7; +goto block_18; } else { -lean_object* x_23; uint8_t x_24; -x_23 = l_Lean_Expr_getAppFn_x27(x_1); -x_24 = l_Lean_Expr_isMVar(x_23); -lean_dec(x_23); -if (x_24 == 0) +lean_object* x_36; uint8_t x_37; +x_36 = l_Lean_Expr_getAppFn_x27(x_1); +x_37 = l_Lean_Expr_isMVar(x_36); +lean_dec(x_36); +if (x_37 == 0) { -lean_object* x_25; uint8_t x_26; -x_25 = l_Lean_Expr_getAppFn_x27(x_2); -x_26 = l_Lean_Expr_isMVar(x_25); -lean_dec(x_25); -if (x_26 == 0) +lean_object* x_38; uint8_t x_39; +x_38 = l_Lean_Expr_getAppFn_x27(x_2); +x_39 = l_Lean_Expr_isMVar(x_38); +lean_dec(x_38); +if (x_39 == 0) { -lean_object* x_27; lean_object* x_28; lean_object* x_29; -x_27 = l_Lean_Expr_getAppFn(x_1); -x_28 = l_Lean_Expr_getAppFn(x_2); +lean_object* x_40; lean_object* x_41; lean_object* x_42; +x_40 = l_Lean_Expr_getAppFn(x_1); +x_41 = l_Lean_Expr_getAppFn(x_2); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_28); -lean_inc(x_27); -x_29 = l_Lean_Meta_isExprDefEq(x_27, x_28, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_29) == 0) +lean_inc(x_41); +lean_inc(x_40); +x_42 = l_Lean_Meta_isExprDefEq(x_40, x_41, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_42) == 0) { -lean_object* x_30; uint8_t x_31; -x_30 = lean_ctor_get(x_29, 0); -lean_inc(x_30); -x_31 = lean_unbox(x_30); -lean_dec(x_30); -if (x_31 == 0) -{ -lean_object* x_32; lean_object* x_33; -x_32 = lean_ctor_get(x_29, 1); -lean_inc(x_32); -lean_dec(x_29); -x_33 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_27, x_28, x_3, x_4, x_5, x_6, x_32); -if (lean_obj_tag(x_33) == 0) -{ -uint8_t x_34; -x_34 = !lean_is_exclusive(x_33); -if (x_34 == 0) -{ -lean_object* x_35; uint8_t x_36; -x_35 = lean_ctor_get(x_33, 0); -x_36 = !lean_is_exclusive(x_35); -if (x_36 == 0) -{ -lean_object* x_37; lean_object* x_38; lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean_object* x_43; lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; -x_37 = lean_ctor_get(x_35, 0); -x_38 = lean_ctor_get(x_35, 1); -x_39 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; -lean_inc(x_18); -x_40 = lean_mk_array(x_18, x_39); -x_41 = lean_unsigned_to_nat(1u); -x_42 = lean_nat_sub(x_18, x_41); -lean_dec(x_18); -x_43 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_40, x_42); -x_44 = l_Lean_mkAppN(x_37, x_43); +lean_object* x_43; uint8_t x_44; +x_43 = lean_ctor_get(x_42, 0); +lean_inc(x_43); +x_44 = lean_unbox(x_43); lean_dec(x_43); -lean_inc(x_19); -x_45 = lean_mk_array(x_19, x_39); -x_46 = lean_nat_sub(x_19, x_41); -lean_dec(x_19); -x_47 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_45, x_46); -x_48 = l_Lean_mkAppN(x_38, x_47); -lean_dec(x_47); -lean_ctor_set(x_35, 1, x_48); -lean_ctor_set(x_35, 0, x_44); -return x_33; +if (x_44 == 0) +{ +lean_object* x_45; lean_object* x_46; +x_45 = lean_ctor_get(x_42, 1); +lean_inc(x_45); +lean_dec(x_42); +x_46 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_40, x_41, x_3, x_4, x_5, x_6, x_45); +if (lean_obj_tag(x_46) == 0) +{ +uint8_t x_47; +x_47 = !lean_is_exclusive(x_46); +if (x_47 == 0) +{ +lean_object* x_48; uint8_t x_49; +x_48 = lean_ctor_get(x_46, 0); +x_49 = !lean_is_exclusive(x_48); +if (x_49 == 0) +{ +lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; +x_50 = lean_ctor_get(x_46, 1); +x_51 = lean_ctor_get(x_48, 0); +x_52 = lean_ctor_get(x_48, 1); +x_53 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; +lean_inc(x_30); +x_54 = lean_mk_array(x_30, x_53); +x_55 = lean_unsigned_to_nat(1u); +x_56 = lean_nat_sub(x_30, x_55); +lean_dec(x_30); +x_57 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_54, x_56); +x_58 = l_Lean_mkAppN(x_51, x_57); +lean_dec(x_57); +lean_inc(x_31); +x_59 = lean_mk_array(x_31, x_53); +x_60 = lean_nat_sub(x_31, x_55); +lean_dec(x_31); +x_61 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_59, x_60); +x_62 = l_Lean_mkAppN(x_52, x_61); +lean_dec(x_61); +lean_ctor_set(x_48, 1, x_62); +lean_ctor_set(x_48, 0, x_58); +x_63 = lean_box(0); +lean_ctor_set_tag(x_46, 1); +lean_ctor_set(x_46, 1, x_63); +x_8 = x_46; +x_9 = x_50; +goto block_18; } else { -lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; -x_49 = lean_ctor_get(x_35, 0); -x_50 = lean_ctor_get(x_35, 1); -lean_inc(x_50); -lean_inc(x_49); -lean_dec(x_35); -x_51 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; -lean_inc(x_18); -x_52 = lean_mk_array(x_18, x_51); -x_53 = lean_unsigned_to_nat(1u); -x_54 = lean_nat_sub(x_18, x_53); -lean_dec(x_18); -x_55 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_52, x_54); -x_56 = l_Lean_mkAppN(x_49, x_55); -lean_dec(x_55); -lean_inc(x_19); -x_57 = lean_mk_array(x_19, x_51); -x_58 = lean_nat_sub(x_19, x_53); -lean_dec(x_19); -x_59 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_57, x_58); -x_60 = l_Lean_mkAppN(x_50, x_59); -lean_dec(x_59); -x_61 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_61, 0, x_56); -lean_ctor_set(x_61, 1, x_60); -lean_ctor_set(x_33, 0, x_61); -return x_33; -} -} -else -{ -lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; -x_62 = lean_ctor_get(x_33, 0); -x_63 = lean_ctor_get(x_33, 1); -lean_inc(x_63); -lean_inc(x_62); -lean_dec(x_33); -x_64 = lean_ctor_get(x_62, 0); -lean_inc(x_64); -x_65 = lean_ctor_get(x_62, 1); +lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; +x_64 = lean_ctor_get(x_46, 1); +x_65 = lean_ctor_get(x_48, 0); +x_66 = lean_ctor_get(x_48, 1); +lean_inc(x_66); lean_inc(x_65); -if (lean_is_exclusive(x_62)) { - lean_ctor_release(x_62, 0); - lean_ctor_release(x_62, 1); - x_66 = x_62; -} else { - lean_dec_ref(x_62); - x_66 = lean_box(0); -} +lean_dec(x_48); x_67 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; -lean_inc(x_18); -x_68 = lean_mk_array(x_18, x_67); +lean_inc(x_30); +x_68 = lean_mk_array(x_30, x_67); x_69 = lean_unsigned_to_nat(1u); -x_70 = lean_nat_sub(x_18, x_69); -lean_dec(x_18); +x_70 = lean_nat_sub(x_30, x_69); +lean_dec(x_30); x_71 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_68, x_70); -x_72 = l_Lean_mkAppN(x_64, x_71); +x_72 = l_Lean_mkAppN(x_65, x_71); lean_dec(x_71); -lean_inc(x_19); -x_73 = lean_mk_array(x_19, x_67); -x_74 = lean_nat_sub(x_19, x_69); -lean_dec(x_19); +lean_inc(x_31); +x_73 = lean_mk_array(x_31, x_67); +x_74 = lean_nat_sub(x_31, x_69); +lean_dec(x_31); x_75 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_73, x_74); -x_76 = l_Lean_mkAppN(x_65, x_75); +x_76 = l_Lean_mkAppN(x_66, x_75); lean_dec(x_75); -if (lean_is_scalar(x_66)) { - x_77 = lean_alloc_ctor(0, 2, 0); -} else { - x_77 = x_66; -} +x_77 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_77, 0, x_72); lean_ctor_set(x_77, 1, x_76); -x_78 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_78, 0, x_77); -lean_ctor_set(x_78, 1, x_63); -return x_78; +x_78 = lean_box(0); +lean_ctor_set_tag(x_46, 1); +lean_ctor_set(x_46, 1, x_78); +lean_ctor_set(x_46, 0, x_77); +x_8 = x_46; +x_9 = x_64; +goto block_18; } } else { -lean_object* x_79; lean_object* x_80; -lean_dec(x_19); -lean_dec(x_18); -x_79 = lean_ctor_get(x_33, 0); -lean_inc(x_79); -x_80 = lean_ctor_get(x_33, 1); +lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; +x_79 = lean_ctor_get(x_46, 0); +x_80 = lean_ctor_get(x_46, 1); lean_inc(x_80); -lean_dec(x_33); -x_8 = x_79; -x_9 = x_80; -goto block_16; +lean_inc(x_79); +lean_dec(x_46); +x_81 = lean_ctor_get(x_79, 0); +lean_inc(x_81); +x_82 = lean_ctor_get(x_79, 1); +lean_inc(x_82); +if (lean_is_exclusive(x_79)) { + lean_ctor_release(x_79, 0); + lean_ctor_release(x_79, 1); + x_83 = x_79; +} else { + lean_dec_ref(x_79); + x_83 = lean_box(0); } -} -else -{ -uint8_t x_81; -x_81 = !lean_is_exclusive(x_29); -if (x_81 == 0) -{ -lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; -x_82 = lean_ctor_get(x_29, 1); -x_83 = lean_ctor_get(x_29, 0); -lean_dec(x_83); x_84 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; -lean_inc(x_18); -x_85 = lean_mk_array(x_18, x_84); +lean_inc(x_30); +x_85 = lean_mk_array(x_30, x_84); x_86 = lean_unsigned_to_nat(1u); -x_87 = lean_nat_sub(x_18, x_86); -lean_dec(x_18); -lean_inc(x_1); +x_87 = lean_nat_sub(x_30, x_86); +lean_dec(x_30); x_88 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_85, x_87); -lean_inc(x_19); -x_89 = lean_mk_array(x_19, x_84); -x_90 = lean_nat_sub(x_19, x_86); -lean_dec(x_19); -lean_inc(x_2); -x_91 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_89, x_90); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_27); -x_92 = lean_infer_type(x_27, x_3, x_4, x_5, x_6, x_82); -if (lean_obj_tag(x_92) == 0) +x_89 = l_Lean_mkAppN(x_81, x_88); +lean_dec(x_88); +lean_inc(x_31); +x_90 = lean_mk_array(x_31, x_84); +x_91 = lean_nat_sub(x_31, x_86); +lean_dec(x_31); +x_92 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_90, x_91); +x_93 = l_Lean_mkAppN(x_82, x_92); +lean_dec(x_92); +if (lean_is_scalar(x_83)) { + x_94 = lean_alloc_ctor(0, 2, 0); +} else { + x_94 = x_83; +} +lean_ctor_set(x_94, 0, x_89); +lean_ctor_set(x_94, 1, x_93); +x_95 = lean_box(0); +x_96 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_96, 0, x_94); +lean_ctor_set(x_96, 1, x_95); +x_8 = x_96; +x_9 = x_80; +goto block_18; +} +} +else { -uint8_t x_93; -x_93 = !lean_is_exclusive(x_92); -if (x_93 == 0) +lean_object* x_97; lean_object* x_98; +lean_dec(x_31); +lean_dec(x_30); +x_97 = lean_ctor_get(x_46, 0); +lean_inc(x_97); +x_98 = lean_ctor_get(x_46, 1); +lean_inc(x_98); +lean_dec(x_46); +x_19 = x_97; +x_20 = x_98; +goto block_28; +} +} +else { -lean_object* x_94; lean_object* x_95; lean_object* x_96; -x_94 = lean_ctor_get(x_92, 0); -x_95 = lean_ctor_get(x_92, 1); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_28); -x_96 = lean_infer_type(x_28, x_3, x_4, x_5, x_6, x_95); -if (lean_obj_tag(x_96) == 0) +uint8_t x_99; +x_99 = !lean_is_exclusive(x_42); +if (x_99 == 0) { -uint8_t x_97; -x_97 = !lean_is_exclusive(x_96); -if (x_97 == 0) -{ -lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; -x_98 = lean_ctor_get(x_96, 1); -x_99 = lean_box(0); -x_100 = lean_array_get_size(x_88); -lean_inc(x_100); -x_101 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_101, 0, x_17); -lean_ctor_set(x_101, 1, x_100); -lean_ctor_set(x_101, 2, x_86); -x_102 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; -lean_ctor_set(x_96, 1, x_102); -lean_ctor_set(x_92, 1, x_96); -lean_ctor_set(x_29, 1, x_92); -lean_ctor_set(x_29, 0, x_99); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_100); -lean_inc(x_2); -lean_inc(x_1); -x_103 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_88, x_91, x_100, x_101, x_99, x_17, x_100, x_86, x_100, x_17, lean_box(0), x_29, x_3, x_4, x_5, x_6, x_98); +lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; +x_100 = lean_ctor_get(x_42, 1); +x_101 = lean_ctor_get(x_42, 0); lean_dec(x_101); -lean_dec(x_100); -if (lean_obj_tag(x_103) == 0) +x_102 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; +lean_inc(x_30); +x_103 = lean_mk_array(x_30, x_102); +x_104 = lean_unsigned_to_nat(1u); +x_105 = lean_nat_sub(x_30, x_104); +lean_dec(x_30); +lean_inc(x_1); +x_106 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_103, x_105); +lean_inc(x_31); +x_107 = lean_mk_array(x_31, x_102); +x_108 = lean_nat_sub(x_31, x_104); +lean_dec(x_31); +lean_inc(x_2); +x_109 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_107, x_108); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_40); +x_110 = lean_infer_type(x_40, x_3, x_4, x_5, x_6, x_100); +if (lean_obj_tag(x_110) == 0) { -lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; -x_104 = lean_ctor_get(x_103, 0); -lean_inc(x_104); -x_105 = lean_ctor_get(x_104, 1); -lean_inc(x_105); -x_106 = lean_ctor_get(x_105, 1); -lean_inc(x_106); -lean_dec(x_105); -x_107 = lean_ctor_get(x_106, 1); -lean_inc(x_107); -lean_dec(x_106); -x_108 = lean_ctor_get(x_104, 0); -lean_inc(x_108); -lean_dec(x_104); -if (lean_obj_tag(x_108) == 0) +uint8_t x_111; +x_111 = !lean_is_exclusive(x_110); +if (x_111 == 0) { -lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; -x_109 = lean_ctor_get(x_103, 1); -lean_inc(x_109); -lean_dec(x_103); -x_110 = lean_ctor_get(x_107, 0); -lean_inc(x_110); -x_111 = lean_ctor_get(x_107, 1); -lean_inc(x_111); -lean_dec(x_107); -x_112 = lean_box(0); -x_113 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_27, x_28, x_110, x_111, x_88, x_91, x_112, x_3, x_4, x_5, x_6, x_109); -lean_dec(x_111); -lean_dec(x_110); -if (lean_obj_tag(x_113) == 0) +lean_object* x_112; lean_object* x_113; lean_object* x_114; +x_112 = lean_ctor_get(x_110, 0); +x_113 = lean_ctor_get(x_110, 1); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_41); +x_114 = lean_infer_type(x_41, x_3, x_4, x_5, x_6, x_113); +if (lean_obj_tag(x_114) == 0) { -uint8_t x_114; -lean_dec(x_2); -lean_dec(x_1); -x_114 = !lean_is_exclusive(x_113); -if (x_114 == 0) +uint8_t x_115; +x_115 = !lean_is_exclusive(x_114); +if (x_115 == 0) { -return x_113; -} -else -{ -lean_object* x_115; lean_object* x_116; lean_object* x_117; -x_115 = lean_ctor_get(x_113, 0); -x_116 = lean_ctor_get(x_113, 1); -lean_inc(x_116); -lean_inc(x_115); -lean_dec(x_113); -x_117 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_117, 0, x_115); -lean_ctor_set(x_117, 1, x_116); -return x_117; -} -} -else -{ -lean_object* x_118; lean_object* x_119; -x_118 = lean_ctor_get(x_113, 0); +lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; +x_116 = lean_ctor_get(x_114, 1); +x_117 = lean_box(0); +x_118 = lean_array_get_size(x_106); lean_inc(x_118); -x_119 = lean_ctor_get(x_113, 1); -lean_inc(x_119); -lean_dec(x_113); -x_8 = x_118; -x_9 = x_119; -goto block_16; -} -} -else +x_119 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_119, 0, x_29); +lean_ctor_set(x_119, 1, x_118); +lean_ctor_set(x_119, 2, x_104); +x_120 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; +lean_ctor_set(x_114, 1, x_120); +lean_ctor_set(x_110, 1, x_114); +lean_ctor_set(x_42, 1, x_110); +lean_ctor_set(x_42, 0, x_117); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_118); +lean_inc(x_2); +lean_inc(x_1); +x_121 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_106, x_109, x_118, x_119, x_117, x_29, x_118, x_104, x_118, x_29, lean_box(0), x_42, x_3, x_4, x_5, x_6, x_116); +lean_dec(x_119); +lean_dec(x_118); +if (lean_obj_tag(x_121) == 0) { -uint8_t x_120; -lean_dec(x_107); -lean_dec(x_91); -lean_dec(x_88); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_120 = !lean_is_exclusive(x_103); -if (x_120 == 0) -{ -lean_object* x_121; lean_object* x_122; -x_121 = lean_ctor_get(x_103, 0); -lean_dec(x_121); -x_122 = lean_ctor_get(x_108, 0); +lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; +x_122 = lean_ctor_get(x_121, 0); lean_inc(x_122); -lean_dec(x_108); -lean_ctor_set(x_103, 0, x_122); -return x_103; -} -else -{ -lean_object* x_123; lean_object* x_124; lean_object* x_125; -x_123 = lean_ctor_get(x_103, 1); +x_123 = lean_ctor_get(x_122, 1); lean_inc(x_123); -lean_dec(x_103); -x_124 = lean_ctor_get(x_108, 0); +x_124 = lean_ctor_get(x_123, 1); lean_inc(x_124); -lean_dec(x_108); -x_125 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_125, 0, x_124); -lean_ctor_set(x_125, 1, x_123); -return x_125; -} -} -} -else -{ -lean_object* x_126; lean_object* x_127; -lean_dec(x_91); -lean_dec(x_88); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_126 = lean_ctor_get(x_103, 0); +lean_dec(x_123); +x_125 = lean_ctor_get(x_124, 1); +lean_inc(x_125); +lean_dec(x_124); +x_126 = lean_ctor_get(x_122, 0); lean_inc(x_126); -x_127 = lean_ctor_get(x_103, 1); +lean_dec(x_122); +if (lean_obj_tag(x_126) == 0) +{ +lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; +x_127 = lean_ctor_get(x_121, 1); lean_inc(x_127); -lean_dec(x_103); -x_8 = x_126; -x_9 = x_127; -goto block_16; -} -} -else -{ -lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; -x_128 = lean_ctor_get(x_96, 0); -x_129 = lean_ctor_get(x_96, 1); -lean_inc(x_129); +lean_dec(x_121); +x_128 = lean_ctor_get(x_125, 0); lean_inc(x_128); -lean_dec(x_96); +x_129 = lean_ctor_get(x_125, 1); +lean_inc(x_129); +lean_dec(x_125); x_130 = lean_box(0); -x_131 = lean_array_get_size(x_88); -lean_inc(x_131); -x_132 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_132, 0, x_17); -lean_ctor_set(x_132, 1, x_131); -lean_ctor_set(x_132, 2, x_86); -x_133 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; -x_134 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_134, 0, x_128); -lean_ctor_set(x_134, 1, x_133); -lean_ctor_set(x_92, 1, x_134); -lean_ctor_set(x_29, 1, x_92); -lean_ctor_set(x_29, 0, x_130); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_131); lean_inc(x_2); lean_inc(x_1); -x_135 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_88, x_91, x_131, x_132, x_130, x_17, x_131, x_86, x_131, x_17, lean_box(0), x_29, x_3, x_4, x_5, x_6, x_129); -lean_dec(x_132); +x_131 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(x_40, x_41, x_128, x_129, x_1, x_2, x_117, x_106, x_109, x_130, x_3, x_4, x_5, x_6, x_127); +lean_dec(x_129); +lean_dec(x_128); +if (lean_obj_tag(x_131) == 0) +{ +lean_object* x_132; lean_object* x_133; +lean_dec(x_2); +lean_dec(x_1); +x_132 = lean_ctor_get(x_131, 0); +lean_inc(x_132); +x_133 = lean_ctor_get(x_131, 1); +lean_inc(x_133); lean_dec(x_131); -if (lean_obj_tag(x_135) == 0) +x_8 = x_132; +x_9 = x_133; +goto block_18; +} +else { -lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; -x_136 = lean_ctor_get(x_135, 0); -lean_inc(x_136); -x_137 = lean_ctor_get(x_136, 1); -lean_inc(x_137); -x_138 = lean_ctor_get(x_137, 1); -lean_inc(x_138); +lean_object* x_134; lean_object* x_135; +x_134 = lean_ctor_get(x_131, 0); +lean_inc(x_134); +x_135 = lean_ctor_get(x_131, 1); +lean_inc(x_135); +lean_dec(x_131); +x_19 = x_134; +x_20 = x_135; +goto block_28; +} +} +else +{ +uint8_t x_136; +lean_dec(x_109); +lean_dec(x_106); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_136 = !lean_is_exclusive(x_125); +if (x_136 == 0) +{ +lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; +x_137 = lean_ctor_get(x_125, 1); lean_dec(x_137); -x_139 = lean_ctor_get(x_138, 1); -lean_inc(x_139); +x_138 = lean_ctor_get(x_125, 0); lean_dec(x_138); -x_140 = lean_ctor_get(x_136, 0); +x_139 = lean_ctor_get(x_121, 1); +lean_inc(x_139); +lean_dec(x_121); +x_140 = lean_ctor_get(x_126, 0); lean_inc(x_140); -lean_dec(x_136); -if (lean_obj_tag(x_140) == 0) +lean_dec(x_126); +x_141 = lean_box(0); +lean_ctor_set_tag(x_125, 1); +lean_ctor_set(x_125, 1, x_141); +lean_ctor_set(x_125, 0, x_140); +x_8 = x_125; +x_9 = x_139; +goto block_18; +} +else { -lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; -x_141 = lean_ctor_get(x_135, 1); -lean_inc(x_141); -lean_dec(x_135); -x_142 = lean_ctor_get(x_139, 0); +lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; +lean_dec(x_125); +x_142 = lean_ctor_get(x_121, 1); lean_inc(x_142); -x_143 = lean_ctor_get(x_139, 1); +lean_dec(x_121); +x_143 = lean_ctor_get(x_126, 0); lean_inc(x_143); -lean_dec(x_139); +lean_dec(x_126); x_144 = lean_box(0); -x_145 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_27, x_28, x_142, x_143, x_88, x_91, x_144, x_3, x_4, x_5, x_6, x_141); -lean_dec(x_143); -lean_dec(x_142); -if (lean_obj_tag(x_145) == 0) +x_145 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_145, 0, x_143); +lean_ctor_set(x_145, 1, x_144); +x_8 = x_145; +x_9 = x_142; +goto block_18; +} +} +} +else { -lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; -lean_dec(x_2); -lean_dec(x_1); -x_146 = lean_ctor_get(x_145, 0); +lean_object* x_146; lean_object* x_147; +lean_dec(x_109); +lean_dec(x_106); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_146 = lean_ctor_get(x_121, 0); lean_inc(x_146); -x_147 = lean_ctor_get(x_145, 1); +x_147 = lean_ctor_get(x_121, 1); lean_inc(x_147); -if (lean_is_exclusive(x_145)) { - lean_ctor_release(x_145, 0); - lean_ctor_release(x_145, 1); - x_148 = x_145; -} else { - lean_dec_ref(x_145); - x_148 = lean_box(0); +lean_dec(x_121); +x_19 = x_146; +x_20 = x_147; +goto block_28; } -if (lean_is_scalar(x_148)) { - x_149 = lean_alloc_ctor(0, 2, 0); -} else { - x_149 = x_148; -} -lean_ctor_set(x_149, 0, x_146); -lean_ctor_set(x_149, 1, x_147); -return x_149; } else { -lean_object* x_150; lean_object* x_151; -x_150 = lean_ctor_get(x_145, 0); -lean_inc(x_150); -x_151 = lean_ctor_get(x_145, 1); +lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; +x_148 = lean_ctor_get(x_114, 0); +x_149 = lean_ctor_get(x_114, 1); +lean_inc(x_149); +lean_inc(x_148); +lean_dec(x_114); +x_150 = lean_box(0); +x_151 = lean_array_get_size(x_106); lean_inc(x_151); -lean_dec(x_145); -x_8 = x_150; -x_9 = x_151; -goto block_16; -} -} -else +x_152 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_152, 0, x_29); +lean_ctor_set(x_152, 1, x_151); +lean_ctor_set(x_152, 2, x_104); +x_153 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; +x_154 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_154, 0, x_148); +lean_ctor_set(x_154, 1, x_153); +lean_ctor_set(x_110, 1, x_154); +lean_ctor_set(x_42, 1, x_110); +lean_ctor_set(x_42, 0, x_150); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_151); +lean_inc(x_2); +lean_inc(x_1); +x_155 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_106, x_109, x_151, x_152, x_150, x_29, x_151, x_104, x_151, x_29, lean_box(0), x_42, x_3, x_4, x_5, x_6, x_149); +lean_dec(x_152); +lean_dec(x_151); +if (lean_obj_tag(x_155) == 0) { -lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; -lean_dec(x_139); -lean_dec(x_91); -lean_dec(x_88); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_152 = lean_ctor_get(x_135, 1); -lean_inc(x_152); -if (lean_is_exclusive(x_135)) { - lean_ctor_release(x_135, 0); - lean_ctor_release(x_135, 1); - x_153 = x_135; -} else { - lean_dec_ref(x_135); - x_153 = lean_box(0); -} -x_154 = lean_ctor_get(x_140, 0); -lean_inc(x_154); -lean_dec(x_140); -if (lean_is_scalar(x_153)) { - x_155 = lean_alloc_ctor(0, 2, 0); -} else { - x_155 = x_153; -} -lean_ctor_set(x_155, 0, x_154); -lean_ctor_set(x_155, 1, x_152); -return x_155; -} -} -else -{ -lean_object* x_156; lean_object* x_157; -lean_dec(x_91); -lean_dec(x_88); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_156 = lean_ctor_get(x_135, 0); +lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; +x_156 = lean_ctor_get(x_155, 0); lean_inc(x_156); -x_157 = lean_ctor_get(x_135, 1); +x_157 = lean_ctor_get(x_156, 1); lean_inc(x_157); -lean_dec(x_135); -x_8 = x_156; -x_9 = x_157; -goto block_16; -} -} -} -else -{ -lean_object* x_158; lean_object* x_159; -lean_free_object(x_92); -lean_dec(x_94); -lean_dec(x_91); -lean_dec(x_88); -lean_free_object(x_29); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_158 = lean_ctor_get(x_96, 0); +x_158 = lean_ctor_get(x_157, 1); lean_inc(x_158); -x_159 = lean_ctor_get(x_96, 1); +lean_dec(x_157); +x_159 = lean_ctor_get(x_158, 1); lean_inc(x_159); -lean_dec(x_96); -x_8 = x_158; -x_9 = x_159; -goto block_16; -} -} -else -{ -lean_object* x_160; lean_object* x_161; lean_object* x_162; -x_160 = lean_ctor_get(x_92, 0); -x_161 = lean_ctor_get(x_92, 1); -lean_inc(x_161); +lean_dec(x_158); +x_160 = lean_ctor_get(x_156, 0); lean_inc(x_160); -lean_dec(x_92); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_28); -x_162 = lean_infer_type(x_28, x_3, x_4, x_5, x_6, x_161); -if (lean_obj_tag(x_162) == 0) +lean_dec(x_156); +if (lean_obj_tag(x_160) == 0) { -lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; -x_163 = lean_ctor_get(x_162, 0); +lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; +x_161 = lean_ctor_get(x_155, 1); +lean_inc(x_161); +lean_dec(x_155); +x_162 = lean_ctor_get(x_159, 0); +lean_inc(x_162); +x_163 = lean_ctor_get(x_159, 1); lean_inc(x_163); -x_164 = lean_ctor_get(x_162, 1); -lean_inc(x_164); -if (lean_is_exclusive(x_162)) { - lean_ctor_release(x_162, 0); - lean_ctor_release(x_162, 1); - x_165 = x_162; -} else { - lean_dec_ref(x_162); - x_165 = lean_box(0); -} -x_166 = lean_box(0); -x_167 = lean_array_get_size(x_88); -lean_inc(x_167); -x_168 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_168, 0, x_17); -lean_ctor_set(x_168, 1, x_167); -lean_ctor_set(x_168, 2, x_86); -x_169 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; -if (lean_is_scalar(x_165)) { - x_170 = lean_alloc_ctor(0, 2, 0); -} else { - x_170 = x_165; -} -lean_ctor_set(x_170, 0, x_163); -lean_ctor_set(x_170, 1, x_169); -x_171 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_171, 0, x_160); -lean_ctor_set(x_171, 1, x_170); -lean_ctor_set(x_29, 1, x_171); -lean_ctor_set(x_29, 0, x_166); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_167); +lean_dec(x_159); +x_164 = lean_box(0); lean_inc(x_2); lean_inc(x_1); -x_172 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_88, x_91, x_167, x_168, x_166, x_17, x_167, x_86, x_167, x_17, lean_box(0), x_29, x_3, x_4, x_5, x_6, x_164); -lean_dec(x_168); -lean_dec(x_167); -if (lean_obj_tag(x_172) == 0) -{ -lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; -x_173 = lean_ctor_get(x_172, 0); -lean_inc(x_173); -x_174 = lean_ctor_get(x_173, 1); -lean_inc(x_174); -x_175 = lean_ctor_get(x_174, 1); -lean_inc(x_175); -lean_dec(x_174); -x_176 = lean_ctor_get(x_175, 1); -lean_inc(x_176); -lean_dec(x_175); -x_177 = lean_ctor_get(x_173, 0); -lean_inc(x_177); -lean_dec(x_173); -if (lean_obj_tag(x_177) == 0) -{ -lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; -x_178 = lean_ctor_get(x_172, 1); -lean_inc(x_178); -lean_dec(x_172); -x_179 = lean_ctor_get(x_176, 0); -lean_inc(x_179); -x_180 = lean_ctor_get(x_176, 1); -lean_inc(x_180); -lean_dec(x_176); -x_181 = lean_box(0); -x_182 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_27, x_28, x_179, x_180, x_88, x_91, x_181, x_3, x_4, x_5, x_6, x_178); -lean_dec(x_180); -lean_dec(x_179); -if (lean_obj_tag(x_182) == 0) -{ -lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; -lean_dec(x_2); -lean_dec(x_1); -x_183 = lean_ctor_get(x_182, 0); -lean_inc(x_183); -x_184 = lean_ctor_get(x_182, 1); -lean_inc(x_184); -if (lean_is_exclusive(x_182)) { - lean_ctor_release(x_182, 0); - lean_ctor_release(x_182, 1); - x_185 = x_182; -} else { - lean_dec_ref(x_182); - x_185 = lean_box(0); -} -if (lean_is_scalar(x_185)) { - x_186 = lean_alloc_ctor(0, 2, 0); -} else { - x_186 = x_185; -} -lean_ctor_set(x_186, 0, x_183); -lean_ctor_set(x_186, 1, x_184); -return x_186; -} -else -{ -lean_object* x_187; lean_object* x_188; -x_187 = lean_ctor_get(x_182, 0); -lean_inc(x_187); -x_188 = lean_ctor_get(x_182, 1); -lean_inc(x_188); -lean_dec(x_182); -x_8 = x_187; -x_9 = x_188; -goto block_16; -} -} -else -{ -lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; -lean_dec(x_176); -lean_dec(x_91); -lean_dec(x_88); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_189 = lean_ctor_get(x_172, 1); -lean_inc(x_189); -if (lean_is_exclusive(x_172)) { - lean_ctor_release(x_172, 0); - lean_ctor_release(x_172, 1); - x_190 = x_172; -} else { - lean_dec_ref(x_172); - x_190 = lean_box(0); -} -x_191 = lean_ctor_get(x_177, 0); -lean_inc(x_191); -lean_dec(x_177); -if (lean_is_scalar(x_190)) { - x_192 = lean_alloc_ctor(0, 2, 0); -} else { - x_192 = x_190; -} -lean_ctor_set(x_192, 0, x_191); -lean_ctor_set(x_192, 1, x_189); -return x_192; -} -} -else -{ -lean_object* x_193; lean_object* x_194; -lean_dec(x_91); -lean_dec(x_88); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_193 = lean_ctor_get(x_172, 0); -lean_inc(x_193); -x_194 = lean_ctor_get(x_172, 1); -lean_inc(x_194); -lean_dec(x_172); -x_8 = x_193; -x_9 = x_194; -goto block_16; -} -} -else -{ -lean_object* x_195; lean_object* x_196; -lean_dec(x_160); -lean_dec(x_91); -lean_dec(x_88); -lean_free_object(x_29); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_195 = lean_ctor_get(x_162, 0); -lean_inc(x_195); -x_196 = lean_ctor_get(x_162, 1); -lean_inc(x_196); +x_165 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(x_40, x_41, x_162, x_163, x_1, x_2, x_150, x_106, x_109, x_164, x_3, x_4, x_5, x_6, x_161); +lean_dec(x_163); lean_dec(x_162); -x_8 = x_195; -x_9 = x_196; -goto block_16; +if (lean_obj_tag(x_165) == 0) +{ +lean_object* x_166; lean_object* x_167; +lean_dec(x_2); +lean_dec(x_1); +x_166 = lean_ctor_get(x_165, 0); +lean_inc(x_166); +x_167 = lean_ctor_get(x_165, 1); +lean_inc(x_167); +lean_dec(x_165); +x_8 = x_166; +x_9 = x_167; +goto block_18; +} +else +{ +lean_object* x_168; lean_object* x_169; +x_168 = lean_ctor_get(x_165, 0); +lean_inc(x_168); +x_169 = lean_ctor_get(x_165, 1); +lean_inc(x_169); +lean_dec(x_165); +x_19 = x_168; +x_20 = x_169; +goto block_28; +} +} +else +{ +lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; +lean_dec(x_109); +lean_dec(x_106); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +if (lean_is_exclusive(x_159)) { + lean_ctor_release(x_159, 0); + lean_ctor_release(x_159, 1); + x_170 = x_159; +} else { + lean_dec_ref(x_159); + x_170 = lean_box(0); +} +x_171 = lean_ctor_get(x_155, 1); +lean_inc(x_171); +lean_dec(x_155); +x_172 = lean_ctor_get(x_160, 0); +lean_inc(x_172); +lean_dec(x_160); +x_173 = lean_box(0); +if (lean_is_scalar(x_170)) { + x_174 = lean_alloc_ctor(1, 2, 0); +} else { + x_174 = x_170; + lean_ctor_set_tag(x_174, 1); +} +lean_ctor_set(x_174, 0, x_172); +lean_ctor_set(x_174, 1, x_173); +x_8 = x_174; +x_9 = x_171; +goto block_18; +} +} +else +{ +lean_object* x_175; lean_object* x_176; +lean_dec(x_109); +lean_dec(x_106); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_175 = lean_ctor_get(x_155, 0); +lean_inc(x_175); +x_176 = lean_ctor_get(x_155, 1); +lean_inc(x_176); +lean_dec(x_155); +x_19 = x_175; +x_20 = x_176; +goto block_28; } } } else { -lean_object* x_197; lean_object* x_198; -lean_dec(x_91); -lean_dec(x_88); -lean_free_object(x_29); -lean_dec(x_28); -lean_dec(x_27); +lean_object* x_177; lean_object* x_178; +lean_free_object(x_110); +lean_dec(x_112); +lean_dec(x_109); +lean_dec(x_106); +lean_free_object(x_42); +lean_dec(x_41); +lean_dec(x_40); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_197 = lean_ctor_get(x_92, 0); +x_177 = lean_ctor_get(x_114, 0); +lean_inc(x_177); +x_178 = lean_ctor_get(x_114, 1); +lean_inc(x_178); +lean_dec(x_114); +x_19 = x_177; +x_20 = x_178; +goto block_28; +} +} +else +{ +lean_object* x_179; lean_object* x_180; lean_object* x_181; +x_179 = lean_ctor_get(x_110, 0); +x_180 = lean_ctor_get(x_110, 1); +lean_inc(x_180); +lean_inc(x_179); +lean_dec(x_110); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_41); +x_181 = lean_infer_type(x_41, x_3, x_4, x_5, x_6, x_180); +if (lean_obj_tag(x_181) == 0) +{ +lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; +x_182 = lean_ctor_get(x_181, 0); +lean_inc(x_182); +x_183 = lean_ctor_get(x_181, 1); +lean_inc(x_183); +if (lean_is_exclusive(x_181)) { + lean_ctor_release(x_181, 0); + lean_ctor_release(x_181, 1); + x_184 = x_181; +} else { + lean_dec_ref(x_181); + x_184 = lean_box(0); +} +x_185 = lean_box(0); +x_186 = lean_array_get_size(x_106); +lean_inc(x_186); +x_187 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_187, 0, x_29); +lean_ctor_set(x_187, 1, x_186); +lean_ctor_set(x_187, 2, x_104); +x_188 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; +if (lean_is_scalar(x_184)) { + x_189 = lean_alloc_ctor(0, 2, 0); +} else { + x_189 = x_184; +} +lean_ctor_set(x_189, 0, x_182); +lean_ctor_set(x_189, 1, x_188); +x_190 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_190, 0, x_179); +lean_ctor_set(x_190, 1, x_189); +lean_ctor_set(x_42, 1, x_190); +lean_ctor_set(x_42, 0, x_185); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_186); +lean_inc(x_2); +lean_inc(x_1); +x_191 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_106, x_109, x_186, x_187, x_185, x_29, x_186, x_104, x_186, x_29, lean_box(0), x_42, x_3, x_4, x_5, x_6, x_183); +lean_dec(x_187); +lean_dec(x_186); +if (lean_obj_tag(x_191) == 0) +{ +lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; +x_192 = lean_ctor_get(x_191, 0); +lean_inc(x_192); +x_193 = lean_ctor_get(x_192, 1); +lean_inc(x_193); +x_194 = lean_ctor_get(x_193, 1); +lean_inc(x_194); +lean_dec(x_193); +x_195 = lean_ctor_get(x_194, 1); +lean_inc(x_195); +lean_dec(x_194); +x_196 = lean_ctor_get(x_192, 0); +lean_inc(x_196); +lean_dec(x_192); +if (lean_obj_tag(x_196) == 0) +{ +lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; +x_197 = lean_ctor_get(x_191, 1); lean_inc(x_197); -x_198 = lean_ctor_get(x_92, 1); +lean_dec(x_191); +x_198 = lean_ctor_get(x_195, 0); lean_inc(x_198); -lean_dec(x_92); -x_8 = x_197; -x_9 = x_198; -goto block_16; -} -} -else -{ -lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; -x_199 = lean_ctor_get(x_29, 1); +x_199 = lean_ctor_get(x_195, 1); lean_inc(x_199); -lean_dec(x_29); -x_200 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; -lean_inc(x_18); -x_201 = lean_mk_array(x_18, x_200); -x_202 = lean_unsigned_to_nat(1u); -x_203 = lean_nat_sub(x_18, x_202); -lean_dec(x_18); -lean_inc(x_1); -x_204 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_201, x_203); -lean_inc(x_19); -x_205 = lean_mk_array(x_19, x_200); -x_206 = lean_nat_sub(x_19, x_202); -lean_dec(x_19); +lean_dec(x_195); +x_200 = lean_box(0); lean_inc(x_2); -x_207 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_205, x_206); -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_27); -x_208 = lean_infer_type(x_27, x_3, x_4, x_5, x_6, x_199); -if (lean_obj_tag(x_208) == 0) +lean_inc(x_1); +x_201 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(x_40, x_41, x_198, x_199, x_1, x_2, x_185, x_106, x_109, x_200, x_3, x_4, x_5, x_6, x_197); +lean_dec(x_199); +lean_dec(x_198); +if (lean_obj_tag(x_201) == 0) { -lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; -x_209 = lean_ctor_get(x_208, 0); -lean_inc(x_209); -x_210 = lean_ctor_get(x_208, 1); -lean_inc(x_210); -if (lean_is_exclusive(x_208)) { - lean_ctor_release(x_208, 0); - lean_ctor_release(x_208, 1); - x_211 = x_208; -} else { - lean_dec_ref(x_208); - x_211 = lean_box(0); +lean_object* x_202; lean_object* x_203; +lean_dec(x_2); +lean_dec(x_1); +x_202 = lean_ctor_get(x_201, 0); +lean_inc(x_202); +x_203 = lean_ctor_get(x_201, 1); +lean_inc(x_203); +lean_dec(x_201); +x_8 = x_202; +x_9 = x_203; +goto block_18; } -lean_inc(x_6); -lean_inc(x_5); -lean_inc(x_4); -lean_inc(x_3); -lean_inc(x_28); -x_212 = lean_infer_type(x_28, x_3, x_4, x_5, x_6, x_210); -if (lean_obj_tag(x_212) == 0) +else { -lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; -x_213 = lean_ctor_get(x_212, 0); +lean_object* x_204; lean_object* x_205; +x_204 = lean_ctor_get(x_201, 0); +lean_inc(x_204); +x_205 = lean_ctor_get(x_201, 1); +lean_inc(x_205); +lean_dec(x_201); +x_19 = x_204; +x_20 = x_205; +goto block_28; +} +} +else +{ +lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; +lean_dec(x_109); +lean_dec(x_106); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +if (lean_is_exclusive(x_195)) { + lean_ctor_release(x_195, 0); + lean_ctor_release(x_195, 1); + x_206 = x_195; +} else { + lean_dec_ref(x_195); + x_206 = lean_box(0); +} +x_207 = lean_ctor_get(x_191, 1); +lean_inc(x_207); +lean_dec(x_191); +x_208 = lean_ctor_get(x_196, 0); +lean_inc(x_208); +lean_dec(x_196); +x_209 = lean_box(0); +if (lean_is_scalar(x_206)) { + x_210 = lean_alloc_ctor(1, 2, 0); +} else { + x_210 = x_206; + lean_ctor_set_tag(x_210, 1); +} +lean_ctor_set(x_210, 0, x_208); +lean_ctor_set(x_210, 1, x_209); +x_8 = x_210; +x_9 = x_207; +goto block_18; +} +} +else +{ +lean_object* x_211; lean_object* x_212; +lean_dec(x_109); +lean_dec(x_106); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_211 = lean_ctor_get(x_191, 0); +lean_inc(x_211); +x_212 = lean_ctor_get(x_191, 1); +lean_inc(x_212); +lean_dec(x_191); +x_19 = x_211; +x_20 = x_212; +goto block_28; +} +} +else +{ +lean_object* x_213; lean_object* x_214; +lean_dec(x_179); +lean_dec(x_109); +lean_dec(x_106); +lean_free_object(x_42); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_213 = lean_ctor_get(x_181, 0); lean_inc(x_213); -x_214 = lean_ctor_get(x_212, 1); +x_214 = lean_ctor_get(x_181, 1); lean_inc(x_214); -if (lean_is_exclusive(x_212)) { - lean_ctor_release(x_212, 0); - lean_ctor_release(x_212, 1); - x_215 = x_212; -} else { - lean_dec_ref(x_212); - x_215 = lean_box(0); +lean_dec(x_181); +x_19 = x_213; +x_20 = x_214; +goto block_28; } -x_216 = lean_box(0); -x_217 = lean_array_get_size(x_204); +} +} +else +{ +lean_object* x_215; lean_object* x_216; +lean_dec(x_109); +lean_dec(x_106); +lean_free_object(x_42); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_215 = lean_ctor_get(x_110, 0); +lean_inc(x_215); +x_216 = lean_ctor_get(x_110, 1); +lean_inc(x_216); +lean_dec(x_110); +x_19 = x_215; +x_20 = x_216; +goto block_28; +} +} +else +{ +lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; +x_217 = lean_ctor_get(x_42, 1); lean_inc(x_217); -x_218 = lean_alloc_ctor(0, 3, 0); -lean_ctor_set(x_218, 0, x_17); -lean_ctor_set(x_218, 1, x_217); -lean_ctor_set(x_218, 2, x_202); -x_219 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; -if (lean_is_scalar(x_215)) { - x_220 = lean_alloc_ctor(0, 2, 0); -} else { - x_220 = x_215; -} -lean_ctor_set(x_220, 0, x_213); -lean_ctor_set(x_220, 1, x_219); -if (lean_is_scalar(x_211)) { - x_221 = lean_alloc_ctor(0, 2, 0); -} else { - x_221 = x_211; -} -lean_ctor_set(x_221, 0, x_209); -lean_ctor_set(x_221, 1, x_220); -x_222 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_222, 0, x_216); -lean_ctor_set(x_222, 1, x_221); +lean_dec(x_42); +x_218 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1; +lean_inc(x_30); +x_219 = lean_mk_array(x_30, x_218); +x_220 = lean_unsigned_to_nat(1u); +x_221 = lean_nat_sub(x_30, x_220); +lean_dec(x_30); +lean_inc(x_1); +x_222 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_1, x_219, x_221); +lean_inc(x_31); +x_223 = lean_mk_array(x_31, x_218); +x_224 = lean_nat_sub(x_31, x_220); +lean_dec(x_31); +lean_inc(x_2); +x_225 = l___private_Lean_Expr_0__Lean_Expr_getAppArgsAux(x_2, x_223, x_224); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); lean_inc(x_3); -lean_inc(x_217); +lean_inc(x_40); +x_226 = lean_infer_type(x_40, x_3, x_4, x_5, x_6, x_217); +if (lean_obj_tag(x_226) == 0) +{ +lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; +x_227 = lean_ctor_get(x_226, 0); +lean_inc(x_227); +x_228 = lean_ctor_get(x_226, 1); +lean_inc(x_228); +if (lean_is_exclusive(x_226)) { + lean_ctor_release(x_226, 0); + lean_ctor_release(x_226, 1); + x_229 = x_226; +} else { + lean_dec_ref(x_226); + x_229 = lean_box(0); +} +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_41); +x_230 = lean_infer_type(x_41, x_3, x_4, x_5, x_6, x_228); +if (lean_obj_tag(x_230) == 0) +{ +lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; +x_231 = lean_ctor_get(x_230, 0); +lean_inc(x_231); +x_232 = lean_ctor_get(x_230, 1); +lean_inc(x_232); +if (lean_is_exclusive(x_230)) { + lean_ctor_release(x_230, 0); + lean_ctor_release(x_230, 1); + x_233 = x_230; +} else { + lean_dec_ref(x_230); + x_233 = lean_box(0); +} +x_234 = lean_box(0); +x_235 = lean_array_get_size(x_222); +lean_inc(x_235); +x_236 = lean_alloc_ctor(0, 3, 0); +lean_ctor_set(x_236, 0, x_29); +lean_ctor_set(x_236, 1, x_235); +lean_ctor_set(x_236, 2, x_220); +x_237 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2; +if (lean_is_scalar(x_233)) { + x_238 = lean_alloc_ctor(0, 2, 0); +} else { + x_238 = x_233; +} +lean_ctor_set(x_238, 0, x_231); +lean_ctor_set(x_238, 1, x_237); +if (lean_is_scalar(x_229)) { + x_239 = lean_alloc_ctor(0, 2, 0); +} else { + x_239 = x_229; +} +lean_ctor_set(x_239, 0, x_227); +lean_ctor_set(x_239, 1, x_238); +x_240 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_240, 0, x_234); +lean_ctor_set(x_240, 1, x_239); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_235); lean_inc(x_2); lean_inc(x_1); -x_223 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_204, x_207, x_217, x_218, x_216, x_17, x_217, x_202, x_217, x_17, lean_box(0), x_222, x_3, x_4, x_5, x_6, x_214); -lean_dec(x_218); -lean_dec(x_217); -if (lean_obj_tag(x_223) == 0) +x_241 = l_Std_Range_forIn_x27_loop___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__1(x_1, x_2, x_222, x_225, x_235, x_236, x_234, x_29, x_235, x_220, x_235, x_29, lean_box(0), x_240, x_3, x_4, x_5, x_6, x_232); +lean_dec(x_236); +lean_dec(x_235); +if (lean_obj_tag(x_241) == 0) { -lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; -x_224 = lean_ctor_get(x_223, 0); -lean_inc(x_224); -x_225 = lean_ctor_get(x_224, 1); -lean_inc(x_225); -x_226 = lean_ctor_get(x_225, 1); -lean_inc(x_226); -lean_dec(x_225); -x_227 = lean_ctor_get(x_226, 1); -lean_inc(x_227); -lean_dec(x_226); -x_228 = lean_ctor_get(x_224, 0); -lean_inc(x_228); -lean_dec(x_224); -if (lean_obj_tag(x_228) == 0) -{ -lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; -x_229 = lean_ctor_get(x_223, 1); -lean_inc(x_229); -lean_dec(x_223); -x_230 = lean_ctor_get(x_227, 0); -lean_inc(x_230); -x_231 = lean_ctor_get(x_227, 1); -lean_inc(x_231); -lean_dec(x_227); -x_232 = lean_box(0); -x_233 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__2(x_27, x_28, x_230, x_231, x_204, x_207, x_232, x_3, x_4, x_5, x_6, x_229); -lean_dec(x_231); -lean_dec(x_230); -if (lean_obj_tag(x_233) == 0) -{ -lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; -lean_dec(x_2); -lean_dec(x_1); -x_234 = lean_ctor_get(x_233, 0); -lean_inc(x_234); -x_235 = lean_ctor_get(x_233, 1); -lean_inc(x_235); -if (lean_is_exclusive(x_233)) { - lean_ctor_release(x_233, 0); - lean_ctor_release(x_233, 1); - x_236 = x_233; -} else { - lean_dec_ref(x_233); - x_236 = lean_box(0); -} -if (lean_is_scalar(x_236)) { - x_237 = lean_alloc_ctor(0, 2, 0); -} else { - x_237 = x_236; -} -lean_ctor_set(x_237, 0, x_234); -lean_ctor_set(x_237, 1, x_235); -return x_237; -} -else -{ -lean_object* x_238; lean_object* x_239; -x_238 = lean_ctor_get(x_233, 0); -lean_inc(x_238); -x_239 = lean_ctor_get(x_233, 1); -lean_inc(x_239); -lean_dec(x_233); -x_8 = x_238; -x_9 = x_239; -goto block_16; -} -} -else -{ -lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; -lean_dec(x_227); -lean_dec(x_207); -lean_dec(x_204); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -lean_dec(x_2); -lean_dec(x_1); -x_240 = lean_ctor_get(x_223, 1); -lean_inc(x_240); -if (lean_is_exclusive(x_223)) { - lean_ctor_release(x_223, 0); - lean_ctor_release(x_223, 1); - x_241 = x_223; -} else { - lean_dec_ref(x_223); - x_241 = lean_box(0); -} -x_242 = lean_ctor_get(x_228, 0); +lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; +x_242 = lean_ctor_get(x_241, 0); lean_inc(x_242); -lean_dec(x_228); -if (lean_is_scalar(x_241)) { - x_243 = lean_alloc_ctor(0, 2, 0); -} else { - x_243 = x_241; -} -lean_ctor_set(x_243, 0, x_242); -lean_ctor_set(x_243, 1, x_240); -return x_243; -} -} -else -{ -lean_object* x_244; lean_object* x_245; -lean_dec(x_207); -lean_dec(x_204); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_244 = lean_ctor_get(x_223, 0); +x_243 = lean_ctor_get(x_242, 1); +lean_inc(x_243); +x_244 = lean_ctor_get(x_243, 1); lean_inc(x_244); -x_245 = lean_ctor_get(x_223, 1); +lean_dec(x_243); +x_245 = lean_ctor_get(x_244, 1); lean_inc(x_245); -lean_dec(x_223); -x_8 = x_244; -x_9 = x_245; -goto block_16; -} -} -else -{ -lean_object* x_246; lean_object* x_247; -lean_dec(x_211); -lean_dec(x_209); -lean_dec(x_207); -lean_dec(x_204); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_246 = lean_ctor_get(x_212, 0); +lean_dec(x_244); +x_246 = lean_ctor_get(x_242, 0); lean_inc(x_246); -x_247 = lean_ctor_get(x_212, 1); +lean_dec(x_242); +if (lean_obj_tag(x_246) == 0) +{ +lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; +x_247 = lean_ctor_get(x_241, 1); lean_inc(x_247); -lean_dec(x_212); -x_8 = x_246; -x_9 = x_247; -goto block_16; -} -} -else -{ -lean_object* x_248; lean_object* x_249; -lean_dec(x_207); -lean_dec(x_204); -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_248 = lean_ctor_get(x_208, 0); +lean_dec(x_241); +x_248 = lean_ctor_get(x_245, 0); lean_inc(x_248); -x_249 = lean_ctor_get(x_208, 1); +x_249 = lean_ctor_get(x_245, 1); lean_inc(x_249); -lean_dec(x_208); -x_8 = x_248; -x_9 = x_249; -goto block_16; -} -} -} -} -else -{ -lean_object* x_250; lean_object* x_251; -lean_dec(x_28); -lean_dec(x_27); -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_250 = lean_ctor_get(x_29, 0); -lean_inc(x_250); -x_251 = lean_ctor_get(x_29, 1); -lean_inc(x_251); -lean_dec(x_29); -x_8 = x_250; -x_9 = x_251; -goto block_16; -} -} -else +lean_dec(x_245); +x_250 = lean_box(0); +lean_inc(x_2); +lean_inc(x_1); +x_251 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(x_40, x_41, x_248, x_249, x_1, x_2, x_234, x_222, x_225, x_250, x_3, x_4, x_5, x_6, x_247); +lean_dec(x_249); +lean_dec(x_248); +if (lean_obj_tag(x_251) == 0) { lean_object* x_252; lean_object* x_253; -lean_dec(x_19); -lean_dec(x_18); -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_252 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_252, 0, x_1); -lean_ctor_set(x_252, 1, x_2); -x_253 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_253, 0, x_252); -lean_ctor_set(x_253, 1, x_7); -return x_253; -} +lean_dec(x_2); +lean_dec(x_1); +x_252 = lean_ctor_get(x_251, 0); +lean_inc(x_252); +x_253 = lean_ctor_get(x_251, 1); +lean_inc(x_253); +lean_dec(x_251); +x_8 = x_252; +x_9 = x_253; +goto block_18; } else { lean_object* x_254; lean_object* x_255; -lean_dec(x_19); -lean_dec(x_18); +x_254 = lean_ctor_get(x_251, 0); +lean_inc(x_254); +x_255 = lean_ctor_get(x_251, 1); +lean_inc(x_255); +lean_dec(x_251); +x_19 = x_254; +x_20 = x_255; +goto block_28; +} +} +else +{ +lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; +lean_dec(x_225); +lean_dec(x_222); +lean_dec(x_41); +lean_dec(x_40); lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_254 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_254, 0, x_1); -lean_ctor_set(x_254, 1, x_2); -x_255 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_255, 0, x_254); -lean_ctor_set(x_255, 1, x_7); -return x_255; +lean_dec(x_2); +lean_dec(x_1); +if (lean_is_exclusive(x_245)) { + lean_ctor_release(x_245, 0); + lean_ctor_release(x_245, 1); + x_256 = x_245; +} else { + lean_dec_ref(x_245); + x_256 = lean_box(0); +} +x_257 = lean_ctor_get(x_241, 1); +lean_inc(x_257); +lean_dec(x_241); +x_258 = lean_ctor_get(x_246, 0); +lean_inc(x_258); +lean_dec(x_246); +x_259 = lean_box(0); +if (lean_is_scalar(x_256)) { + x_260 = lean_alloc_ctor(1, 2, 0); +} else { + x_260 = x_256; + lean_ctor_set_tag(x_260, 1); +} +lean_ctor_set(x_260, 0, x_258); +lean_ctor_set(x_260, 1, x_259); +x_8 = x_260; +x_9 = x_257; +goto block_18; +} +} +else +{ +lean_object* x_261; lean_object* x_262; +lean_dec(x_225); +lean_dec(x_222); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_261 = lean_ctor_get(x_241, 0); +lean_inc(x_261); +x_262 = lean_ctor_get(x_241, 1); +lean_inc(x_262); +lean_dec(x_241); +x_19 = x_261; +x_20 = x_262; +goto block_28; +} +} +else +{ +lean_object* x_263; lean_object* x_264; +lean_dec(x_229); +lean_dec(x_227); +lean_dec(x_225); +lean_dec(x_222); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_263 = lean_ctor_get(x_230, 0); +lean_inc(x_263); +x_264 = lean_ctor_get(x_230, 1); +lean_inc(x_264); +lean_dec(x_230); +x_19 = x_263; +x_20 = x_264; +goto block_28; +} +} +else +{ +lean_object* x_265; lean_object* x_266; +lean_dec(x_225); +lean_dec(x_222); +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_265 = lean_ctor_get(x_226, 0); +lean_inc(x_265); +x_266 = lean_ctor_get(x_226, 1); +lean_inc(x_266); +lean_dec(x_226); +x_19 = x_265; +x_20 = x_266; +goto block_28; +} +} +} +} +else +{ +lean_object* x_267; lean_object* x_268; +lean_dec(x_41); +lean_dec(x_40); +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_267 = lean_ctor_get(x_42, 0); +lean_inc(x_267); +x_268 = lean_ctor_get(x_42, 1); +lean_inc(x_268); +lean_dec(x_42); +x_19 = x_267; +x_20 = x_268; +goto block_28; +} +} +else +{ +lean_object* x_269; lean_object* x_270; lean_object* x_271; +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_269 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_269, 0, x_1); +lean_ctor_set(x_269, 1, x_2); +x_270 = lean_box(0); +x_271 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_271, 0, x_269); +lean_ctor_set(x_271, 1, x_270); +x_8 = x_271; +x_9 = x_7; +goto block_18; +} +} +else +{ +lean_object* x_272; lean_object* x_273; lean_object* x_274; +lean_dec(x_31); +lean_dec(x_30); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_272 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_272, 0, x_1); +lean_ctor_set(x_272, 1, x_2); +x_273 = lean_box(0); +x_274 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_274, 0, x_272); +lean_ctor_set(x_274, 1, x_273); +x_8 = x_274; +x_9 = x_7; +goto block_18; } } } case 10: { -lean_object* x_256; lean_object* x_257; lean_object* x_258; -x_256 = lean_ctor_get(x_2, 0); -lean_inc(x_256); -x_257 = lean_ctor_get(x_2, 1); -lean_inc(x_257); -lean_inc(x_257); -lean_inc(x_1); -x_258 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_1, x_257, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_258) == 0) -{ -uint8_t x_259; -lean_dec(x_1); -x_259 = !lean_is_exclusive(x_258); -if (x_259 == 0) -{ -lean_object* x_260; uint8_t x_261; -x_260 = lean_ctor_get(x_258, 0); -x_261 = !lean_is_exclusive(x_260); -if (x_261 == 0) -{ -lean_object* x_262; size_t x_263; size_t x_264; uint8_t x_265; -x_262 = lean_ctor_get(x_260, 1); -x_263 = lean_ptr_addr(x_257); -lean_dec(x_257); -x_264 = lean_ptr_addr(x_262); -x_265 = lean_usize_dec_eq(x_263, x_264); -if (x_265 == 0) -{ -lean_object* x_266; -lean_dec(x_2); -x_266 = l_Lean_Expr_mdata___override(x_256, x_262); -lean_ctor_set(x_260, 1, x_266); -return x_258; -} -else -{ -lean_dec(x_262); -lean_dec(x_256); -lean_ctor_set(x_260, 1, x_2); -return x_258; -} -} -else -{ -lean_object* x_267; lean_object* x_268; size_t x_269; size_t x_270; uint8_t x_271; -x_267 = lean_ctor_get(x_260, 0); -x_268 = lean_ctor_get(x_260, 1); -lean_inc(x_268); -lean_inc(x_267); -lean_dec(x_260); -x_269 = lean_ptr_addr(x_257); -lean_dec(x_257); -x_270 = lean_ptr_addr(x_268); -x_271 = lean_usize_dec_eq(x_269, x_270); -if (x_271 == 0) -{ -lean_object* x_272; lean_object* x_273; -lean_dec(x_2); -x_272 = l_Lean_Expr_mdata___override(x_256, x_268); -x_273 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_273, 0, x_267); -lean_ctor_set(x_273, 1, x_272); -lean_ctor_set(x_258, 0, x_273); -return x_258; -} -else -{ -lean_object* x_274; -lean_dec(x_268); -lean_dec(x_256); -x_274 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_274, 0, x_267); -lean_ctor_set(x_274, 1, x_2); -lean_ctor_set(x_258, 0, x_274); -return x_258; -} -} -} -else -{ -lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; size_t x_280; size_t x_281; uint8_t x_282; -x_275 = lean_ctor_get(x_258, 0); -x_276 = lean_ctor_get(x_258, 1); -lean_inc(x_276); +lean_object* x_275; lean_object* x_276; lean_object* x_277; +x_275 = lean_ctor_get(x_2, 0); lean_inc(x_275); -lean_dec(x_258); -x_277 = lean_ctor_get(x_275, 0); -lean_inc(x_277); -x_278 = lean_ctor_get(x_275, 1); -lean_inc(x_278); -if (lean_is_exclusive(x_275)) { - lean_ctor_release(x_275, 0); - lean_ctor_release(x_275, 1); - x_279 = x_275; -} else { - lean_dec_ref(x_275); - x_279 = lean_box(0); -} -x_280 = lean_ptr_addr(x_257); -lean_dec(x_257); -x_281 = lean_ptr_addr(x_278); -x_282 = lean_usize_dec_eq(x_280, x_281); -if (x_282 == 0) +x_276 = lean_ctor_get(x_2, 1); +lean_inc(x_276); +lean_inc(x_276); +lean_inc(x_1); +x_277 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_1, x_276, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_277) == 0) { -lean_object* x_283; lean_object* x_284; lean_object* x_285; -lean_dec(x_2); -x_283 = l_Lean_Expr_mdata___override(x_256, x_278); -if (lean_is_scalar(x_279)) { - x_284 = lean_alloc_ctor(0, 2, 0); -} else { - x_284 = x_279; -} -lean_ctor_set(x_284, 0, x_277); -lean_ctor_set(x_284, 1, x_283); -x_285 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_285, 0, x_284); -lean_ctor_set(x_285, 1, x_276); -return x_285; -} -else +uint8_t x_278; +lean_dec(x_1); +x_278 = !lean_is_exclusive(x_277); +if (x_278 == 0) +{ +lean_object* x_279; uint8_t x_280; +x_279 = lean_ctor_get(x_277, 0); +x_280 = !lean_is_exclusive(x_279); +if (x_280 == 0) +{ +lean_object* x_281; lean_object* x_282; size_t x_283; size_t x_284; uint8_t x_285; +x_281 = lean_ctor_get(x_277, 1); +x_282 = lean_ctor_get(x_279, 1); +x_283 = lean_ptr_addr(x_276); +lean_dec(x_276); +x_284 = lean_ptr_addr(x_282); +x_285 = lean_usize_dec_eq(x_283, x_284); +if (x_285 == 0) { lean_object* x_286; lean_object* x_287; -lean_dec(x_278); -lean_dec(x_256); -if (lean_is_scalar(x_279)) { - x_286 = lean_alloc_ctor(0, 2, 0); -} else { - x_286 = x_279; -} -lean_ctor_set(x_286, 0, x_277); -lean_ctor_set(x_286, 1, x_2); -x_287 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_287, 0, x_286); -lean_ctor_set(x_287, 1, x_276); -return x_287; -} -} -} -else -{ -lean_object* x_288; lean_object* x_289; -lean_dec(x_257); -lean_dec(x_256); -x_288 = lean_ctor_get(x_258, 0); -lean_inc(x_288); -x_289 = lean_ctor_get(x_258, 1); -lean_inc(x_289); -lean_dec(x_258); -x_8 = x_288; -x_9 = x_289; -goto block_16; -} -} -default: -{ -lean_object* x_290; lean_object* x_291; -lean_dec(x_6); -lean_dec(x_5); -lean_dec(x_4); -lean_dec(x_3); -x_290 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_290, 0, x_1); -lean_ctor_set(x_290, 1, x_2); -x_291 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_291, 0, x_290); -lean_ctor_set(x_291, 1, x_7); -return x_291; -} -} -} -case 10: -{ -lean_object* x_292; lean_object* x_293; lean_object* x_294; -x_292 = lean_ctor_get(x_1, 0); -lean_inc(x_292); -x_293 = lean_ctor_get(x_1, 1); -lean_inc(x_293); -lean_inc(x_2); -lean_inc(x_293); -x_294 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_293, x_2, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_294) == 0) -{ -uint8_t x_295; lean_dec(x_2); -x_295 = !lean_is_exclusive(x_294); -if (x_295 == 0) -{ -lean_object* x_296; uint8_t x_297; -x_296 = lean_ctor_get(x_294, 0); -x_297 = !lean_is_exclusive(x_296); -if (x_297 == 0) -{ -lean_object* x_298; size_t x_299; size_t x_300; uint8_t x_301; -x_298 = lean_ctor_get(x_296, 0); -x_299 = lean_ptr_addr(x_293); -lean_dec(x_293); -x_300 = lean_ptr_addr(x_298); -x_301 = lean_usize_dec_eq(x_299, x_300); -if (x_301 == 0) -{ -lean_object* x_302; -lean_dec(x_1); -x_302 = l_Lean_Expr_mdata___override(x_292, x_298); -lean_ctor_set(x_296, 0, x_302); -return x_294; +x_286 = l_Lean_Expr_mdata___override(x_275, x_282); +lean_ctor_set(x_279, 1, x_286); +x_287 = lean_box(0); +lean_ctor_set_tag(x_277, 1); +lean_ctor_set(x_277, 1, x_287); +x_8 = x_277; +x_9 = x_281; +goto block_18; } else { -lean_dec(x_298); -lean_dec(x_292); -lean_ctor_set(x_296, 0, x_1); -return x_294; +lean_object* x_288; +lean_dec(x_282); +lean_dec(x_275); +lean_ctor_set(x_279, 1, x_2); +x_288 = lean_box(0); +lean_ctor_set_tag(x_277, 1); +lean_ctor_set(x_277, 1, x_288); +x_8 = x_277; +x_9 = x_281; +goto block_18; } } else { -lean_object* x_303; lean_object* x_304; size_t x_305; size_t x_306; uint8_t x_307; -x_303 = lean_ctor_get(x_296, 0); -x_304 = lean_ctor_get(x_296, 1); -lean_inc(x_304); +lean_object* x_289; lean_object* x_290; lean_object* x_291; size_t x_292; size_t x_293; uint8_t x_294; +x_289 = lean_ctor_get(x_277, 1); +x_290 = lean_ctor_get(x_279, 0); +x_291 = lean_ctor_get(x_279, 1); +lean_inc(x_291); +lean_inc(x_290); +lean_dec(x_279); +x_292 = lean_ptr_addr(x_276); +lean_dec(x_276); +x_293 = lean_ptr_addr(x_291); +x_294 = lean_usize_dec_eq(x_292, x_293); +if (x_294 == 0) +{ +lean_object* x_295; lean_object* x_296; lean_object* x_297; +lean_dec(x_2); +x_295 = l_Lean_Expr_mdata___override(x_275, x_291); +x_296 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_296, 0, x_290); +lean_ctor_set(x_296, 1, x_295); +x_297 = lean_box(0); +lean_ctor_set_tag(x_277, 1); +lean_ctor_set(x_277, 1, x_297); +lean_ctor_set(x_277, 0, x_296); +x_8 = x_277; +x_9 = x_289; +goto block_18; +} +else +{ +lean_object* x_298; lean_object* x_299; +lean_dec(x_291); +lean_dec(x_275); +x_298 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_298, 0, x_290); +lean_ctor_set(x_298, 1, x_2); +x_299 = lean_box(0); +lean_ctor_set_tag(x_277, 1); +lean_ctor_set(x_277, 1, x_299); +lean_ctor_set(x_277, 0, x_298); +x_8 = x_277; +x_9 = x_289; +goto block_18; +} +} +} +else +{ +lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; size_t x_305; size_t x_306; uint8_t x_307; +x_300 = lean_ctor_get(x_277, 0); +x_301 = lean_ctor_get(x_277, 1); +lean_inc(x_301); +lean_inc(x_300); +lean_dec(x_277); +x_302 = lean_ctor_get(x_300, 0); +lean_inc(x_302); +x_303 = lean_ctor_get(x_300, 1); lean_inc(x_303); -lean_dec(x_296); -x_305 = lean_ptr_addr(x_293); -lean_dec(x_293); +if (lean_is_exclusive(x_300)) { + lean_ctor_release(x_300, 0); + lean_ctor_release(x_300, 1); + x_304 = x_300; +} else { + lean_dec_ref(x_300); + x_304 = lean_box(0); +} +x_305 = lean_ptr_addr(x_276); +lean_dec(x_276); x_306 = lean_ptr_addr(x_303); x_307 = lean_usize_dec_eq(x_305, x_306); if (x_307 == 0) { -lean_object* x_308; lean_object* x_309; -lean_dec(x_1); -x_308 = l_Lean_Expr_mdata___override(x_292, x_303); -x_309 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_309, 0, x_308); -lean_ctor_set(x_309, 1, x_304); -lean_ctor_set(x_294, 0, x_309); -return x_294; +lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; +lean_dec(x_2); +x_308 = l_Lean_Expr_mdata___override(x_275, x_303); +if (lean_is_scalar(x_304)) { + x_309 = lean_alloc_ctor(0, 2, 0); +} else { + x_309 = x_304; +} +lean_ctor_set(x_309, 0, x_302); +lean_ctor_set(x_309, 1, x_308); +x_310 = lean_box(0); +x_311 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_311, 0, x_309); +lean_ctor_set(x_311, 1, x_310); +x_8 = x_311; +x_9 = x_301; +goto block_18; } else { -lean_object* x_310; +lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_dec(x_303); -lean_dec(x_292); -x_310 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_310, 0, x_1); -lean_ctor_set(x_310, 1, x_304); -lean_ctor_set(x_294, 0, x_310); -return x_294; +lean_dec(x_275); +if (lean_is_scalar(x_304)) { + x_312 = lean_alloc_ctor(0, 2, 0); +} else { + x_312 = x_304; +} +lean_ctor_set(x_312, 0, x_302); +lean_ctor_set(x_312, 1, x_2); +x_313 = lean_box(0); +x_314 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_314, 0, x_312); +lean_ctor_set(x_314, 1, x_313); +x_8 = x_314; +x_9 = x_301; +goto block_18; } } } else { -lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; size_t x_316; size_t x_317; uint8_t x_318; -x_311 = lean_ctor_get(x_294, 0); -x_312 = lean_ctor_get(x_294, 1); -lean_inc(x_312); -lean_inc(x_311); -lean_dec(x_294); -x_313 = lean_ctor_get(x_311, 0); -lean_inc(x_313); -x_314 = lean_ctor_get(x_311, 1); -lean_inc(x_314); -if (lean_is_exclusive(x_311)) { - lean_ctor_release(x_311, 0); - lean_ctor_release(x_311, 1); - x_315 = x_311; -} else { - lean_dec_ref(x_311); - x_315 = lean_box(0); +lean_object* x_315; lean_object* x_316; +lean_dec(x_276); +lean_dec(x_275); +x_315 = lean_ctor_get(x_277, 0); +lean_inc(x_315); +x_316 = lean_ctor_get(x_277, 1); +lean_inc(x_316); +lean_dec(x_277); +x_19 = x_315; +x_20 = x_316; +goto block_28; } -x_316 = lean_ptr_addr(x_293); -lean_dec(x_293); -x_317 = lean_ptr_addr(x_313); -x_318 = lean_usize_dec_eq(x_316, x_317); -if (x_318 == 0) +} +default: { -lean_object* x_319; lean_object* x_320; lean_object* x_321; -lean_dec(x_1); -x_319 = l_Lean_Expr_mdata___override(x_292, x_313); -if (lean_is_scalar(x_315)) { - x_320 = lean_alloc_ctor(0, 2, 0); -} else { - x_320 = x_315; +lean_object* x_317; lean_object* x_318; lean_object* x_319; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_317 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_317, 0, x_1); +lean_ctor_set(x_317, 1, x_2); +x_318 = lean_box(0); +x_319 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_319, 0, x_317); +lean_ctor_set(x_319, 1, x_318); +x_8 = x_319; +x_9 = x_7; +goto block_18; } -lean_ctor_set(x_320, 0, x_319); -lean_ctor_set(x_320, 1, x_314); -x_321 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_321, 0, x_320); -lean_ctor_set(x_321, 1, x_312); -return x_321; } -else +} +case 6: { -lean_object* x_322; lean_object* x_323; -lean_dec(x_313); -lean_dec(x_292); -if (lean_is_scalar(x_315)) { - x_322 = lean_alloc_ctor(0, 2, 0); -} else { - x_322 = x_315; -} -lean_ctor_set(x_322, 0, x_1); -lean_ctor_set(x_322, 1, x_314); -x_323 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_323, 0, x_322); -lean_ctor_set(x_323, 1, x_312); -return x_323; -} -} -} -else +switch (lean_obj_tag(x_2)) { +case 6: { -lean_object* x_324; lean_object* x_325; -lean_dec(x_293); -lean_dec(x_292); -x_324 = lean_ctor_get(x_294, 0); +lean_object* x_320; lean_object* x_321; lean_object* x_322; uint8_t x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; uint8_t x_327; lean_object* x_328; +x_320 = lean_ctor_get(x_1, 0); +lean_inc(x_320); +x_321 = lean_ctor_get(x_1, 1); +lean_inc(x_321); +x_322 = lean_ctor_get(x_1, 2); +lean_inc(x_322); +x_323 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); +x_324 = lean_ctor_get(x_2, 0); lean_inc(x_324); -x_325 = lean_ctor_get(x_294, 1); +x_325 = lean_ctor_get(x_2, 1); lean_inc(x_325); -lean_dec(x_294); -x_8 = x_324; -x_9 = x_325; -goto block_16; +x_326 = lean_ctor_get(x_2, 2); +lean_inc(x_326); +x_327 = lean_ctor_get_uint8(x_2, sizeof(void*)*3 + 8); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_325); +lean_inc(x_321); +x_328 = l_Lean_Meta_isExprDefEq(x_321, x_325, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_328) == 0) +{ +lean_object* x_329; uint8_t x_330; +x_329 = lean_ctor_get(x_328, 0); +lean_inc(x_329); +x_330 = lean_unbox(x_329); +lean_dec(x_329); +if (x_330 == 0) +{ +lean_object* x_331; lean_object* x_332; +x_331 = lean_ctor_get(x_328, 1); +lean_inc(x_331); +lean_dec(x_328); +x_332 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_321, x_325, x_3, x_4, x_5, x_6, x_331); +if (lean_obj_tag(x_332) == 0) +{ +uint8_t x_333; +lean_dec(x_2); +lean_dec(x_1); +x_333 = !lean_is_exclusive(x_332); +if (x_333 == 0) +{ +lean_object* x_334; uint8_t x_335; +x_334 = lean_ctor_get(x_332, 0); +x_335 = !lean_is_exclusive(x_334); +if (x_335 == 0) +{ +lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; uint8_t x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; +x_336 = lean_ctor_get(x_332, 1); +x_337 = lean_ctor_get(x_334, 0); +x_338 = lean_ctor_get(x_334, 1); +x_339 = l_Lean_Expr_lam___override(x_320, x_337, x_322, x_323); +x_340 = l_Lean_Expr_lam___override(x_324, x_338, x_326, x_327); +x_341 = 1; +x_342 = l_Lean_Expr_setPPFunBinderTypes(x_339, x_341); +x_343 = l_Lean_Expr_setPPFunBinderTypes(x_340, x_341); +lean_ctor_set(x_334, 1, x_343); +lean_ctor_set(x_334, 0, x_342); +x_344 = lean_box(0); +lean_ctor_set_tag(x_332, 1); +lean_ctor_set(x_332, 1, x_344); +x_8 = x_332; +x_9 = x_336; +goto block_18; +} +else +{ +lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; uint8_t x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; +x_345 = lean_ctor_get(x_332, 1); +x_346 = lean_ctor_get(x_334, 0); +x_347 = lean_ctor_get(x_334, 1); +lean_inc(x_347); +lean_inc(x_346); +lean_dec(x_334); +x_348 = l_Lean_Expr_lam___override(x_320, x_346, x_322, x_323); +x_349 = l_Lean_Expr_lam___override(x_324, x_347, x_326, x_327); +x_350 = 1; +x_351 = l_Lean_Expr_setPPFunBinderTypes(x_348, x_350); +x_352 = l_Lean_Expr_setPPFunBinderTypes(x_349, x_350); +x_353 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_353, 0, x_351); +lean_ctor_set(x_353, 1, x_352); +x_354 = lean_box(0); +lean_ctor_set_tag(x_332, 1); +lean_ctor_set(x_332, 1, x_354); +lean_ctor_set(x_332, 0, x_353); +x_8 = x_332; +x_9 = x_345; +goto block_18; +} +} +else +{ +lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; uint8_t x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; +x_355 = lean_ctor_get(x_332, 0); +x_356 = lean_ctor_get(x_332, 1); +lean_inc(x_356); +lean_inc(x_355); +lean_dec(x_332); +x_357 = lean_ctor_get(x_355, 0); +lean_inc(x_357); +x_358 = lean_ctor_get(x_355, 1); +lean_inc(x_358); +if (lean_is_exclusive(x_355)) { + lean_ctor_release(x_355, 0); + lean_ctor_release(x_355, 1); + x_359 = x_355; +} else { + lean_dec_ref(x_355); + x_359 = lean_box(0); +} +x_360 = l_Lean_Expr_lam___override(x_320, x_357, x_322, x_323); +x_361 = l_Lean_Expr_lam___override(x_324, x_358, x_326, x_327); +x_362 = 1; +x_363 = l_Lean_Expr_setPPFunBinderTypes(x_360, x_362); +x_364 = l_Lean_Expr_setPPFunBinderTypes(x_361, x_362); +if (lean_is_scalar(x_359)) { + x_365 = lean_alloc_ctor(0, 2, 0); +} else { + x_365 = x_359; +} +lean_ctor_set(x_365, 0, x_363); +lean_ctor_set(x_365, 1, x_364); +x_366 = lean_box(0); +x_367 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_367, 0, x_365); +lean_ctor_set(x_367, 1, x_366); +x_8 = x_367; +x_9 = x_356; +goto block_18; +} +} +else +{ +lean_object* x_368; lean_object* x_369; +lean_dec(x_326); +lean_dec(x_324); +lean_dec(x_322); +lean_dec(x_320); +x_368 = lean_ctor_get(x_332, 0); +lean_inc(x_368); +x_369 = lean_ctor_get(x_332, 1); +lean_inc(x_369); +lean_dec(x_332); +x_19 = x_368; +x_20 = x_369; +goto block_28; +} +} +else +{ +lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; uint8_t x_374; uint8_t x_375; lean_object* x_376; +x_370 = lean_ctor_get(x_328, 1); +lean_inc(x_370); +lean_dec(x_328); +x_371 = lean_box(x_323); +x_372 = lean_box(x_327); +lean_inc(x_321); +lean_inc(x_320); +x_373 = lean_alloc_closure((void*)(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__4___boxed), 14, 8); +lean_closure_set(x_373, 0, x_322); +lean_closure_set(x_373, 1, x_326); +lean_closure_set(x_373, 2, x_320); +lean_closure_set(x_373, 3, x_321); +lean_closure_set(x_373, 4, x_371); +lean_closure_set(x_373, 5, x_324); +lean_closure_set(x_373, 6, x_325); +lean_closure_set(x_373, 7, x_372); +x_374 = 0; +x_375 = 0; +x_376 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_320, x_374, x_321, x_373, x_375, x_3, x_4, x_5, x_6, x_370); +if (lean_obj_tag(x_376) == 0) +{ +uint8_t x_377; +lean_dec(x_2); +lean_dec(x_1); +x_377 = !lean_is_exclusive(x_376); +if (x_377 == 0) +{ +lean_object* x_378; lean_object* x_379; +x_378 = lean_ctor_get(x_376, 1); +x_379 = lean_box(0); +lean_ctor_set(x_376, 1, x_379); +x_8 = x_376; +x_9 = x_378; +goto block_18; +} +else +{ +lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; +x_380 = lean_ctor_get(x_376, 0); +x_381 = lean_ctor_get(x_376, 1); +lean_inc(x_381); +lean_inc(x_380); +lean_dec(x_376); +x_382 = lean_box(0); +x_383 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_383, 0, x_380); +lean_ctor_set(x_383, 1, x_382); +x_8 = x_383; +x_9 = x_381; +goto block_18; +} +} +else +{ +lean_object* x_384; lean_object* x_385; +x_384 = lean_ctor_get(x_376, 0); +lean_inc(x_384); +x_385 = lean_ctor_get(x_376, 1); +lean_inc(x_385); +lean_dec(x_376); +x_19 = x_384; +x_20 = x_385; +goto block_28; +} +} +} +else +{ +lean_object* x_386; lean_object* x_387; +lean_dec(x_326); +lean_dec(x_325); +lean_dec(x_324); +lean_dec(x_322); +lean_dec(x_321); +lean_dec(x_320); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_386 = lean_ctor_get(x_328, 0); +lean_inc(x_386); +x_387 = lean_ctor_get(x_328, 1); +lean_inc(x_387); +lean_dec(x_328); +x_19 = x_386; +x_20 = x_387; +goto block_28; +} +} +case 10: +{ +lean_object* x_388; lean_object* x_389; lean_object* x_390; +x_388 = lean_ctor_get(x_2, 0); +lean_inc(x_388); +x_389 = lean_ctor_get(x_2, 1); +lean_inc(x_389); +lean_inc(x_389); +lean_inc(x_1); +x_390 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_1, x_389, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_390) == 0) +{ +uint8_t x_391; +lean_dec(x_1); +x_391 = !lean_is_exclusive(x_390); +if (x_391 == 0) +{ +lean_object* x_392; uint8_t x_393; +x_392 = lean_ctor_get(x_390, 0); +x_393 = !lean_is_exclusive(x_392); +if (x_393 == 0) +{ +lean_object* x_394; lean_object* x_395; size_t x_396; size_t x_397; uint8_t x_398; +x_394 = lean_ctor_get(x_390, 1); +x_395 = lean_ctor_get(x_392, 1); +x_396 = lean_ptr_addr(x_389); +lean_dec(x_389); +x_397 = lean_ptr_addr(x_395); +x_398 = lean_usize_dec_eq(x_396, x_397); +if (x_398 == 0) +{ +lean_object* x_399; lean_object* x_400; +lean_dec(x_2); +x_399 = l_Lean_Expr_mdata___override(x_388, x_395); +lean_ctor_set(x_392, 1, x_399); +x_400 = lean_box(0); +lean_ctor_set_tag(x_390, 1); +lean_ctor_set(x_390, 1, x_400); +x_8 = x_390; +x_9 = x_394; +goto block_18; +} +else +{ +lean_object* x_401; +lean_dec(x_395); +lean_dec(x_388); +lean_ctor_set(x_392, 1, x_2); +x_401 = lean_box(0); +lean_ctor_set_tag(x_390, 1); +lean_ctor_set(x_390, 1, x_401); +x_8 = x_390; +x_9 = x_394; +goto block_18; +} +} +else +{ +lean_object* x_402; lean_object* x_403; lean_object* x_404; size_t x_405; size_t x_406; uint8_t x_407; +x_402 = lean_ctor_get(x_390, 1); +x_403 = lean_ctor_get(x_392, 0); +x_404 = lean_ctor_get(x_392, 1); +lean_inc(x_404); +lean_inc(x_403); +lean_dec(x_392); +x_405 = lean_ptr_addr(x_389); +lean_dec(x_389); +x_406 = lean_ptr_addr(x_404); +x_407 = lean_usize_dec_eq(x_405, x_406); +if (x_407 == 0) +{ +lean_object* x_408; lean_object* x_409; lean_object* x_410; +lean_dec(x_2); +x_408 = l_Lean_Expr_mdata___override(x_388, x_404); +x_409 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_409, 0, x_403); +lean_ctor_set(x_409, 1, x_408); +x_410 = lean_box(0); +lean_ctor_set_tag(x_390, 1); +lean_ctor_set(x_390, 1, x_410); +lean_ctor_set(x_390, 0, x_409); +x_8 = x_390; +x_9 = x_402; +goto block_18; +} +else +{ +lean_object* x_411; lean_object* x_412; +lean_dec(x_404); +lean_dec(x_388); +x_411 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_411, 0, x_403); +lean_ctor_set(x_411, 1, x_2); +x_412 = lean_box(0); +lean_ctor_set_tag(x_390, 1); +lean_ctor_set(x_390, 1, x_412); +lean_ctor_set(x_390, 0, x_411); +x_8 = x_390; +x_9 = x_402; +goto block_18; +} +} +} +else +{ +lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; size_t x_418; size_t x_419; uint8_t x_420; +x_413 = lean_ctor_get(x_390, 0); +x_414 = lean_ctor_get(x_390, 1); +lean_inc(x_414); +lean_inc(x_413); +lean_dec(x_390); +x_415 = lean_ctor_get(x_413, 0); +lean_inc(x_415); +x_416 = lean_ctor_get(x_413, 1); +lean_inc(x_416); +if (lean_is_exclusive(x_413)) { + lean_ctor_release(x_413, 0); + lean_ctor_release(x_413, 1); + x_417 = x_413; +} else { + lean_dec_ref(x_413); + x_417 = lean_box(0); +} +x_418 = lean_ptr_addr(x_389); +lean_dec(x_389); +x_419 = lean_ptr_addr(x_416); +x_420 = lean_usize_dec_eq(x_418, x_419); +if (x_420 == 0) +{ +lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; +lean_dec(x_2); +x_421 = l_Lean_Expr_mdata___override(x_388, x_416); +if (lean_is_scalar(x_417)) { + x_422 = lean_alloc_ctor(0, 2, 0); +} else { + x_422 = x_417; +} +lean_ctor_set(x_422, 0, x_415); +lean_ctor_set(x_422, 1, x_421); +x_423 = lean_box(0); +x_424 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_424, 0, x_422); +lean_ctor_set(x_424, 1, x_423); +x_8 = x_424; +x_9 = x_414; +goto block_18; +} +else +{ +lean_object* x_425; lean_object* x_426; lean_object* x_427; +lean_dec(x_416); +lean_dec(x_388); +if (lean_is_scalar(x_417)) { + x_425 = lean_alloc_ctor(0, 2, 0); +} else { + x_425 = x_417; +} +lean_ctor_set(x_425, 0, x_415); +lean_ctor_set(x_425, 1, x_2); +x_426 = lean_box(0); +x_427 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_427, 0, x_425); +lean_ctor_set(x_427, 1, x_426); +x_8 = x_427; +x_9 = x_414; +goto block_18; +} +} +} +else +{ +lean_object* x_428; lean_object* x_429; +lean_dec(x_389); +lean_dec(x_388); +x_428 = lean_ctor_get(x_390, 0); +lean_inc(x_428); +x_429 = lean_ctor_get(x_390, 1); +lean_inc(x_429); +lean_dec(x_390); +x_19 = x_428; +x_20 = x_429; +goto block_28; +} +} +default: +{ +lean_object* x_430; lean_object* x_431; lean_object* x_432; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_430 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_430, 0, x_1); +lean_ctor_set(x_430, 1, x_2); +x_431 = lean_box(0); +x_432 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_432, 0, x_430); +lean_ctor_set(x_432, 1, x_431); +x_8 = x_432; +x_9 = x_7; +goto block_18; +} +} +} +case 7: +{ +switch (lean_obj_tag(x_2)) { +case 7: +{ +lean_object* x_433; lean_object* x_434; lean_object* x_435; uint8_t x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; uint8_t x_440; lean_object* x_441; +x_433 = lean_ctor_get(x_1, 0); +lean_inc(x_433); +x_434 = lean_ctor_get(x_1, 1); +lean_inc(x_434); +x_435 = lean_ctor_get(x_1, 2); +lean_inc(x_435); +x_436 = lean_ctor_get_uint8(x_1, sizeof(void*)*3 + 8); +x_437 = lean_ctor_get(x_2, 0); +lean_inc(x_437); +x_438 = lean_ctor_get(x_2, 1); +lean_inc(x_438); +x_439 = lean_ctor_get(x_2, 2); +lean_inc(x_439); +x_440 = lean_ctor_get_uint8(x_2, sizeof(void*)*3 + 8); +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_438); +lean_inc(x_434); +x_441 = l_Lean_Meta_isExprDefEq(x_434, x_438, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_441) == 0) +{ +lean_object* x_442; uint8_t x_443; +x_442 = lean_ctor_get(x_441, 0); +lean_inc(x_442); +x_443 = lean_unbox(x_442); +lean_dec(x_442); +if (x_443 == 0) +{ +lean_object* x_444; lean_object* x_445; +x_444 = lean_ctor_get(x_441, 1); +lean_inc(x_444); +lean_dec(x_441); +x_445 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_434, x_438, x_3, x_4, x_5, x_6, x_444); +if (lean_obj_tag(x_445) == 0) +{ +uint8_t x_446; +lean_dec(x_2); +lean_dec(x_1); +x_446 = !lean_is_exclusive(x_445); +if (x_446 == 0) +{ +lean_object* x_447; uint8_t x_448; +x_447 = lean_ctor_get(x_445, 0); +x_448 = !lean_is_exclusive(x_447); +if (x_448 == 0) +{ +lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; uint8_t x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; +x_449 = lean_ctor_get(x_445, 1); +x_450 = lean_ctor_get(x_447, 0); +x_451 = lean_ctor_get(x_447, 1); +x_452 = l_Lean_Expr_forallE___override(x_433, x_450, x_435, x_436); +x_453 = l_Lean_Expr_forallE___override(x_437, x_451, x_439, x_440); +x_454 = 1; +x_455 = l_Lean_Expr_setPPPiBinderTypes(x_452, x_454); +x_456 = l_Lean_Expr_setPPPiBinderTypes(x_453, x_454); +lean_ctor_set(x_447, 1, x_456); +lean_ctor_set(x_447, 0, x_455); +x_457 = lean_box(0); +lean_ctor_set_tag(x_445, 1); +lean_ctor_set(x_445, 1, x_457); +x_8 = x_445; +x_9 = x_449; +goto block_18; +} +else +{ +lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; uint8_t x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; +x_458 = lean_ctor_get(x_445, 1); +x_459 = lean_ctor_get(x_447, 0); +x_460 = lean_ctor_get(x_447, 1); +lean_inc(x_460); +lean_inc(x_459); +lean_dec(x_447); +x_461 = l_Lean_Expr_forallE___override(x_433, x_459, x_435, x_436); +x_462 = l_Lean_Expr_forallE___override(x_437, x_460, x_439, x_440); +x_463 = 1; +x_464 = l_Lean_Expr_setPPPiBinderTypes(x_461, x_463); +x_465 = l_Lean_Expr_setPPPiBinderTypes(x_462, x_463); +x_466 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_466, 0, x_464); +lean_ctor_set(x_466, 1, x_465); +x_467 = lean_box(0); +lean_ctor_set_tag(x_445, 1); +lean_ctor_set(x_445, 1, x_467); +lean_ctor_set(x_445, 0, x_466); +x_8 = x_445; +x_9 = x_458; +goto block_18; +} +} +else +{ +lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; uint8_t x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; +x_468 = lean_ctor_get(x_445, 0); +x_469 = lean_ctor_get(x_445, 1); +lean_inc(x_469); +lean_inc(x_468); +lean_dec(x_445); +x_470 = lean_ctor_get(x_468, 0); +lean_inc(x_470); +x_471 = lean_ctor_get(x_468, 1); +lean_inc(x_471); +if (lean_is_exclusive(x_468)) { + lean_ctor_release(x_468, 0); + lean_ctor_release(x_468, 1); + x_472 = x_468; +} else { + lean_dec_ref(x_468); + x_472 = lean_box(0); +} +x_473 = l_Lean_Expr_forallE___override(x_433, x_470, x_435, x_436); +x_474 = l_Lean_Expr_forallE___override(x_437, x_471, x_439, x_440); +x_475 = 1; +x_476 = l_Lean_Expr_setPPPiBinderTypes(x_473, x_475); +x_477 = l_Lean_Expr_setPPPiBinderTypes(x_474, x_475); +if (lean_is_scalar(x_472)) { + x_478 = lean_alloc_ctor(0, 2, 0); +} else { + x_478 = x_472; +} +lean_ctor_set(x_478, 0, x_476); +lean_ctor_set(x_478, 1, x_477); +x_479 = lean_box(0); +x_480 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_480, 0, x_478); +lean_ctor_set(x_480, 1, x_479); +x_8 = x_480; +x_9 = x_469; +goto block_18; +} +} +else +{ +lean_object* x_481; lean_object* x_482; +lean_dec(x_439); +lean_dec(x_437); +lean_dec(x_435); +lean_dec(x_433); +x_481 = lean_ctor_get(x_445, 0); +lean_inc(x_481); +x_482 = lean_ctor_get(x_445, 1); +lean_inc(x_482); +lean_dec(x_445); +x_19 = x_481; +x_20 = x_482; +goto block_28; +} +} +else +{ +lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; uint8_t x_487; uint8_t x_488; lean_object* x_489; +x_483 = lean_ctor_get(x_441, 1); +lean_inc(x_483); +lean_dec(x_441); +x_484 = lean_box(x_436); +x_485 = lean_box(x_440); +lean_inc(x_434); +lean_inc(x_433); +x_486 = lean_alloc_closure((void*)(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__5___boxed), 14, 8); +lean_closure_set(x_486, 0, x_435); +lean_closure_set(x_486, 1, x_439); +lean_closure_set(x_486, 2, x_433); +lean_closure_set(x_486, 3, x_434); +lean_closure_set(x_486, 4, x_484); +lean_closure_set(x_486, 5, x_437); +lean_closure_set(x_486, 6, x_438); +lean_closure_set(x_486, 7, x_485); +x_487 = 0; +x_488 = 0; +x_489 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_433, x_487, x_434, x_486, x_488, x_3, x_4, x_5, x_6, x_483); +if (lean_obj_tag(x_489) == 0) +{ +uint8_t x_490; +lean_dec(x_2); +lean_dec(x_1); +x_490 = !lean_is_exclusive(x_489); +if (x_490 == 0) +{ +lean_object* x_491; lean_object* x_492; +x_491 = lean_ctor_get(x_489, 1); +x_492 = lean_box(0); +lean_ctor_set(x_489, 1, x_492); +x_8 = x_489; +x_9 = x_491; +goto block_18; +} +else +{ +lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; +x_493 = lean_ctor_get(x_489, 0); +x_494 = lean_ctor_get(x_489, 1); +lean_inc(x_494); +lean_inc(x_493); +lean_dec(x_489); +x_495 = lean_box(0); +x_496 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_496, 0, x_493); +lean_ctor_set(x_496, 1, x_495); +x_8 = x_496; +x_9 = x_494; +goto block_18; +} +} +else +{ +lean_object* x_497; lean_object* x_498; +x_497 = lean_ctor_get(x_489, 0); +lean_inc(x_497); +x_498 = lean_ctor_get(x_489, 1); +lean_inc(x_498); +lean_dec(x_489); +x_19 = x_497; +x_20 = x_498; +goto block_28; +} +} +} +else +{ +lean_object* x_499; lean_object* x_500; +lean_dec(x_439); +lean_dec(x_438); +lean_dec(x_437); +lean_dec(x_435); +lean_dec(x_434); +lean_dec(x_433); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_499 = lean_ctor_get(x_441, 0); +lean_inc(x_499); +x_500 = lean_ctor_get(x_441, 1); +lean_inc(x_500); +lean_dec(x_441); +x_19 = x_499; +x_20 = x_500; +goto block_28; +} +} +case 10: +{ +lean_object* x_501; lean_object* x_502; lean_object* x_503; +x_501 = lean_ctor_get(x_2, 0); +lean_inc(x_501); +x_502 = lean_ctor_get(x_2, 1); +lean_inc(x_502); +lean_inc(x_502); +lean_inc(x_1); +x_503 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_1, x_502, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_503) == 0) +{ +uint8_t x_504; +lean_dec(x_1); +x_504 = !lean_is_exclusive(x_503); +if (x_504 == 0) +{ +lean_object* x_505; uint8_t x_506; +x_505 = lean_ctor_get(x_503, 0); +x_506 = !lean_is_exclusive(x_505); +if (x_506 == 0) +{ +lean_object* x_507; lean_object* x_508; size_t x_509; size_t x_510; uint8_t x_511; +x_507 = lean_ctor_get(x_503, 1); +x_508 = lean_ctor_get(x_505, 1); +x_509 = lean_ptr_addr(x_502); +lean_dec(x_502); +x_510 = lean_ptr_addr(x_508); +x_511 = lean_usize_dec_eq(x_509, x_510); +if (x_511 == 0) +{ +lean_object* x_512; lean_object* x_513; +lean_dec(x_2); +x_512 = l_Lean_Expr_mdata___override(x_501, x_508); +lean_ctor_set(x_505, 1, x_512); +x_513 = lean_box(0); +lean_ctor_set_tag(x_503, 1); +lean_ctor_set(x_503, 1, x_513); +x_8 = x_503; +x_9 = x_507; +goto block_18; +} +else +{ +lean_object* x_514; +lean_dec(x_508); +lean_dec(x_501); +lean_ctor_set(x_505, 1, x_2); +x_514 = lean_box(0); +lean_ctor_set_tag(x_503, 1); +lean_ctor_set(x_503, 1, x_514); +x_8 = x_503; +x_9 = x_507; +goto block_18; +} +} +else +{ +lean_object* x_515; lean_object* x_516; lean_object* x_517; size_t x_518; size_t x_519; uint8_t x_520; +x_515 = lean_ctor_get(x_503, 1); +x_516 = lean_ctor_get(x_505, 0); +x_517 = lean_ctor_get(x_505, 1); +lean_inc(x_517); +lean_inc(x_516); +lean_dec(x_505); +x_518 = lean_ptr_addr(x_502); +lean_dec(x_502); +x_519 = lean_ptr_addr(x_517); +x_520 = lean_usize_dec_eq(x_518, x_519); +if (x_520 == 0) +{ +lean_object* x_521; lean_object* x_522; lean_object* x_523; +lean_dec(x_2); +x_521 = l_Lean_Expr_mdata___override(x_501, x_517); +x_522 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_522, 0, x_516); +lean_ctor_set(x_522, 1, x_521); +x_523 = lean_box(0); +lean_ctor_set_tag(x_503, 1); +lean_ctor_set(x_503, 1, x_523); +lean_ctor_set(x_503, 0, x_522); +x_8 = x_503; +x_9 = x_515; +goto block_18; +} +else +{ +lean_object* x_524; lean_object* x_525; +lean_dec(x_517); +lean_dec(x_501); +x_524 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_524, 0, x_516); +lean_ctor_set(x_524, 1, x_2); +x_525 = lean_box(0); +lean_ctor_set_tag(x_503, 1); +lean_ctor_set(x_503, 1, x_525); +lean_ctor_set(x_503, 0, x_524); +x_8 = x_503; +x_9 = x_515; +goto block_18; +} +} +} +else +{ +lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; size_t x_531; size_t x_532; uint8_t x_533; +x_526 = lean_ctor_get(x_503, 0); +x_527 = lean_ctor_get(x_503, 1); +lean_inc(x_527); +lean_inc(x_526); +lean_dec(x_503); +x_528 = lean_ctor_get(x_526, 0); +lean_inc(x_528); +x_529 = lean_ctor_get(x_526, 1); +lean_inc(x_529); +if (lean_is_exclusive(x_526)) { + lean_ctor_release(x_526, 0); + lean_ctor_release(x_526, 1); + x_530 = x_526; +} else { + lean_dec_ref(x_526); + x_530 = lean_box(0); +} +x_531 = lean_ptr_addr(x_502); +lean_dec(x_502); +x_532 = lean_ptr_addr(x_529); +x_533 = lean_usize_dec_eq(x_531, x_532); +if (x_533 == 0) +{ +lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; +lean_dec(x_2); +x_534 = l_Lean_Expr_mdata___override(x_501, x_529); +if (lean_is_scalar(x_530)) { + x_535 = lean_alloc_ctor(0, 2, 0); +} else { + x_535 = x_530; +} +lean_ctor_set(x_535, 0, x_528); +lean_ctor_set(x_535, 1, x_534); +x_536 = lean_box(0); +x_537 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_537, 0, x_535); +lean_ctor_set(x_537, 1, x_536); +x_8 = x_537; +x_9 = x_527; +goto block_18; +} +else +{ +lean_object* x_538; lean_object* x_539; lean_object* x_540; +lean_dec(x_529); +lean_dec(x_501); +if (lean_is_scalar(x_530)) { + x_538 = lean_alloc_ctor(0, 2, 0); +} else { + x_538 = x_530; +} +lean_ctor_set(x_538, 0, x_528); +lean_ctor_set(x_538, 1, x_2); +x_539 = lean_box(0); +x_540 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_540, 0, x_538); +lean_ctor_set(x_540, 1, x_539); +x_8 = x_540; +x_9 = x_527; +goto block_18; +} +} +} +else +{ +lean_object* x_541; lean_object* x_542; +lean_dec(x_502); +lean_dec(x_501); +x_541 = lean_ctor_get(x_503, 0); +lean_inc(x_541); +x_542 = lean_ctor_get(x_503, 1); +lean_inc(x_542); +lean_dec(x_503); +x_19 = x_541; +x_20 = x_542; +goto block_28; +} +} +default: +{ +lean_object* x_543; lean_object* x_544; lean_object* x_545; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +x_543 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_543, 0, x_1); +lean_ctor_set(x_543, 1, x_2); +x_544 = lean_box(0); +x_545 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_545, 0, x_543); +lean_ctor_set(x_545, 1, x_544); +x_8 = x_545; +x_9 = x_7; +goto block_18; +} +} +} +case 10: +{ +lean_object* x_546; lean_object* x_547; lean_object* x_548; +x_546 = lean_ctor_get(x_1, 0); +lean_inc(x_546); +x_547 = lean_ctor_get(x_1, 1); +lean_inc(x_547); +lean_inc(x_2); +lean_inc(x_547); +x_548 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_547, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_548) == 0) +{ +uint8_t x_549; +lean_dec(x_2); +x_549 = !lean_is_exclusive(x_548); +if (x_549 == 0) +{ +lean_object* x_550; uint8_t x_551; +x_550 = lean_ctor_get(x_548, 0); +x_551 = !lean_is_exclusive(x_550); +if (x_551 == 0) +{ +lean_object* x_552; lean_object* x_553; size_t x_554; size_t x_555; uint8_t x_556; +x_552 = lean_ctor_get(x_548, 1); +x_553 = lean_ctor_get(x_550, 0); +x_554 = lean_ptr_addr(x_547); +lean_dec(x_547); +x_555 = lean_ptr_addr(x_553); +x_556 = lean_usize_dec_eq(x_554, x_555); +if (x_556 == 0) +{ +lean_object* x_557; lean_object* x_558; +lean_dec(x_1); +x_557 = l_Lean_Expr_mdata___override(x_546, x_553); +lean_ctor_set(x_550, 0, x_557); +x_558 = lean_box(0); +lean_ctor_set_tag(x_548, 1); +lean_ctor_set(x_548, 1, x_558); +x_8 = x_548; +x_9 = x_552; +goto block_18; +} +else +{ +lean_object* x_559; +lean_dec(x_553); +lean_dec(x_546); +lean_ctor_set(x_550, 0, x_1); +x_559 = lean_box(0); +lean_ctor_set_tag(x_548, 1); +lean_ctor_set(x_548, 1, x_559); +x_8 = x_548; +x_9 = x_552; +goto block_18; +} +} +else +{ +lean_object* x_560; lean_object* x_561; lean_object* x_562; size_t x_563; size_t x_564; uint8_t x_565; +x_560 = lean_ctor_get(x_548, 1); +x_561 = lean_ctor_get(x_550, 0); +x_562 = lean_ctor_get(x_550, 1); +lean_inc(x_562); +lean_inc(x_561); +lean_dec(x_550); +x_563 = lean_ptr_addr(x_547); +lean_dec(x_547); +x_564 = lean_ptr_addr(x_561); +x_565 = lean_usize_dec_eq(x_563, x_564); +if (x_565 == 0) +{ +lean_object* x_566; lean_object* x_567; lean_object* x_568; +lean_dec(x_1); +x_566 = l_Lean_Expr_mdata___override(x_546, x_561); +x_567 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_567, 0, x_566); +lean_ctor_set(x_567, 1, x_562); +x_568 = lean_box(0); +lean_ctor_set_tag(x_548, 1); +lean_ctor_set(x_548, 1, x_568); +lean_ctor_set(x_548, 0, x_567); +x_8 = x_548; +x_9 = x_560; +goto block_18; +} +else +{ +lean_object* x_569; lean_object* x_570; +lean_dec(x_561); +lean_dec(x_546); +x_569 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_569, 0, x_1); +lean_ctor_set(x_569, 1, x_562); +x_570 = lean_box(0); +lean_ctor_set_tag(x_548, 1); +lean_ctor_set(x_548, 1, x_570); +lean_ctor_set(x_548, 0, x_569); +x_8 = x_548; +x_9 = x_560; +goto block_18; +} +} +} +else +{ +lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; size_t x_576; size_t x_577; uint8_t x_578; +x_571 = lean_ctor_get(x_548, 0); +x_572 = lean_ctor_get(x_548, 1); +lean_inc(x_572); +lean_inc(x_571); +lean_dec(x_548); +x_573 = lean_ctor_get(x_571, 0); +lean_inc(x_573); +x_574 = lean_ctor_get(x_571, 1); +lean_inc(x_574); +if (lean_is_exclusive(x_571)) { + lean_ctor_release(x_571, 0); + lean_ctor_release(x_571, 1); + x_575 = x_571; +} else { + lean_dec_ref(x_571); + x_575 = lean_box(0); +} +x_576 = lean_ptr_addr(x_547); +lean_dec(x_547); +x_577 = lean_ptr_addr(x_573); +x_578 = lean_usize_dec_eq(x_576, x_577); +if (x_578 == 0) +{ +lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; +lean_dec(x_1); +x_579 = l_Lean_Expr_mdata___override(x_546, x_573); +if (lean_is_scalar(x_575)) { + x_580 = lean_alloc_ctor(0, 2, 0); +} else { + x_580 = x_575; +} +lean_ctor_set(x_580, 0, x_579); +lean_ctor_set(x_580, 1, x_574); +x_581 = lean_box(0); +x_582 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_582, 0, x_580); +lean_ctor_set(x_582, 1, x_581); +x_8 = x_582; +x_9 = x_572; +goto block_18; +} +else +{ +lean_object* x_583; lean_object* x_584; lean_object* x_585; +lean_dec(x_573); +lean_dec(x_546); +if (lean_is_scalar(x_575)) { + x_583 = lean_alloc_ctor(0, 2, 0); +} else { + x_583 = x_575; +} +lean_ctor_set(x_583, 0, x_1); +lean_ctor_set(x_583, 1, x_574); +x_584 = lean_box(0); +x_585 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_585, 0, x_583); +lean_ctor_set(x_585, 1, x_584); +x_8 = x_585; +x_9 = x_572; +goto block_18; +} +} +} +else +{ +lean_object* x_586; lean_object* x_587; +lean_dec(x_547); +lean_dec(x_546); +x_586 = lean_ctor_get(x_548, 0); +lean_inc(x_586); +x_587 = lean_ctor_get(x_548, 1); +lean_inc(x_587); +lean_dec(x_548); +x_19 = x_586; +x_20 = x_587; +goto block_28; } } default: { if (lean_obj_tag(x_2) == 10) { -lean_object* x_326; lean_object* x_327; lean_object* x_328; -x_326 = lean_ctor_get(x_2, 0); -lean_inc(x_326); -x_327 = lean_ctor_get(x_2, 1); -lean_inc(x_327); -lean_inc(x_327); +lean_object* x_588; lean_object* x_589; lean_object* x_590; +x_588 = lean_ctor_get(x_2, 0); +lean_inc(x_588); +x_589 = lean_ctor_get(x_2, 1); +lean_inc(x_589); +lean_inc(x_589); lean_inc(x_1); -x_328 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_1, x_327, x_3, x_4, x_5, x_6, x_7); -if (lean_obj_tag(x_328) == 0) +x_590 = l_Lean_Meta_addPPExplicitToExposeDiff_visit(x_1, x_589, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_590) == 0) { -uint8_t x_329; +uint8_t x_591; lean_dec(x_1); -x_329 = !lean_is_exclusive(x_328); -if (x_329 == 0) +x_591 = !lean_is_exclusive(x_590); +if (x_591 == 0) { -lean_object* x_330; uint8_t x_331; -x_330 = lean_ctor_get(x_328, 0); -x_331 = !lean_is_exclusive(x_330); -if (x_331 == 0) +lean_object* x_592; uint8_t x_593; +x_592 = lean_ctor_get(x_590, 0); +x_593 = !lean_is_exclusive(x_592); +if (x_593 == 0) { -lean_object* x_332; size_t x_333; size_t x_334; uint8_t x_335; -x_332 = lean_ctor_get(x_330, 1); -x_333 = lean_ptr_addr(x_327); -lean_dec(x_327); -x_334 = lean_ptr_addr(x_332); -x_335 = lean_usize_dec_eq(x_333, x_334); -if (x_335 == 0) +lean_object* x_594; lean_object* x_595; size_t x_596; size_t x_597; uint8_t x_598; +x_594 = lean_ctor_get(x_590, 1); +x_595 = lean_ctor_get(x_592, 1); +x_596 = lean_ptr_addr(x_589); +lean_dec(x_589); +x_597 = lean_ptr_addr(x_595); +x_598 = lean_usize_dec_eq(x_596, x_597); +if (x_598 == 0) { -lean_object* x_336; +lean_object* x_599; lean_object* x_600; lean_dec(x_2); -x_336 = l_Lean_Expr_mdata___override(x_326, x_332); -lean_ctor_set(x_330, 1, x_336); -return x_328; +x_599 = l_Lean_Expr_mdata___override(x_588, x_595); +lean_ctor_set(x_592, 1, x_599); +x_600 = lean_box(0); +lean_ctor_set_tag(x_590, 1); +lean_ctor_set(x_590, 1, x_600); +x_8 = x_590; +x_9 = x_594; +goto block_18; } else { -lean_dec(x_332); -lean_dec(x_326); -lean_ctor_set(x_330, 1, x_2); -return x_328; +lean_object* x_601; +lean_dec(x_595); +lean_dec(x_588); +lean_ctor_set(x_592, 1, x_2); +x_601 = lean_box(0); +lean_ctor_set_tag(x_590, 1); +lean_ctor_set(x_590, 1, x_601); +x_8 = x_590; +x_9 = x_594; +goto block_18; } } else { -lean_object* x_337; lean_object* x_338; size_t x_339; size_t x_340; uint8_t x_341; -x_337 = lean_ctor_get(x_330, 0); -x_338 = lean_ctor_get(x_330, 1); -lean_inc(x_338); -lean_inc(x_337); -lean_dec(x_330); -x_339 = lean_ptr_addr(x_327); -lean_dec(x_327); -x_340 = lean_ptr_addr(x_338); -x_341 = lean_usize_dec_eq(x_339, x_340); -if (x_341 == 0) +lean_object* x_602; lean_object* x_603; lean_object* x_604; size_t x_605; size_t x_606; uint8_t x_607; +x_602 = lean_ctor_get(x_590, 1); +x_603 = lean_ctor_get(x_592, 0); +x_604 = lean_ctor_get(x_592, 1); +lean_inc(x_604); +lean_inc(x_603); +lean_dec(x_592); +x_605 = lean_ptr_addr(x_589); +lean_dec(x_589); +x_606 = lean_ptr_addr(x_604); +x_607 = lean_usize_dec_eq(x_605, x_606); +if (x_607 == 0) { -lean_object* x_342; lean_object* x_343; +lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_dec(x_2); -x_342 = l_Lean_Expr_mdata___override(x_326, x_338); -x_343 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_343, 0, x_337); -lean_ctor_set(x_343, 1, x_342); -lean_ctor_set(x_328, 0, x_343); -return x_328; +x_608 = l_Lean_Expr_mdata___override(x_588, x_604); +x_609 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_609, 0, x_603); +lean_ctor_set(x_609, 1, x_608); +x_610 = lean_box(0); +lean_ctor_set_tag(x_590, 1); +lean_ctor_set(x_590, 1, x_610); +lean_ctor_set(x_590, 0, x_609); +x_8 = x_590; +x_9 = x_602; +goto block_18; } else { -lean_object* x_344; -lean_dec(x_338); -lean_dec(x_326); -x_344 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_344, 0, x_337); -lean_ctor_set(x_344, 1, x_2); -lean_ctor_set(x_328, 0, x_344); -return x_328; +lean_object* x_611; lean_object* x_612; +lean_dec(x_604); +lean_dec(x_588); +x_611 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_611, 0, x_603); +lean_ctor_set(x_611, 1, x_2); +x_612 = lean_box(0); +lean_ctor_set_tag(x_590, 1); +lean_ctor_set(x_590, 1, x_612); +lean_ctor_set(x_590, 0, x_611); +x_8 = x_590; +x_9 = x_602; +goto block_18; } } } else { -lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; size_t x_350; size_t x_351; uint8_t x_352; -x_345 = lean_ctor_get(x_328, 0); -x_346 = lean_ctor_get(x_328, 1); -lean_inc(x_346); -lean_inc(x_345); -lean_dec(x_328); -x_347 = lean_ctor_get(x_345, 0); -lean_inc(x_347); -x_348 = lean_ctor_get(x_345, 1); -lean_inc(x_348); -if (lean_is_exclusive(x_345)) { - lean_ctor_release(x_345, 0); - lean_ctor_release(x_345, 1); - x_349 = x_345; +lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; size_t x_618; size_t x_619; uint8_t x_620; +x_613 = lean_ctor_get(x_590, 0); +x_614 = lean_ctor_get(x_590, 1); +lean_inc(x_614); +lean_inc(x_613); +lean_dec(x_590); +x_615 = lean_ctor_get(x_613, 0); +lean_inc(x_615); +x_616 = lean_ctor_get(x_613, 1); +lean_inc(x_616); +if (lean_is_exclusive(x_613)) { + lean_ctor_release(x_613, 0); + lean_ctor_release(x_613, 1); + x_617 = x_613; } else { - lean_dec_ref(x_345); - x_349 = lean_box(0); + lean_dec_ref(x_613); + x_617 = lean_box(0); } -x_350 = lean_ptr_addr(x_327); -lean_dec(x_327); -x_351 = lean_ptr_addr(x_348); -x_352 = lean_usize_dec_eq(x_350, x_351); -if (x_352 == 0) +x_618 = lean_ptr_addr(x_589); +lean_dec(x_589); +x_619 = lean_ptr_addr(x_616); +x_620 = lean_usize_dec_eq(x_618, x_619); +if (x_620 == 0) { -lean_object* x_353; lean_object* x_354; lean_object* x_355; +lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_dec(x_2); -x_353 = l_Lean_Expr_mdata___override(x_326, x_348); -if (lean_is_scalar(x_349)) { - x_354 = lean_alloc_ctor(0, 2, 0); +x_621 = l_Lean_Expr_mdata___override(x_588, x_616); +if (lean_is_scalar(x_617)) { + x_622 = lean_alloc_ctor(0, 2, 0); } else { - x_354 = x_349; + x_622 = x_617; } -lean_ctor_set(x_354, 0, x_347); -lean_ctor_set(x_354, 1, x_353); -x_355 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_355, 0, x_354); -lean_ctor_set(x_355, 1, x_346); -return x_355; +lean_ctor_set(x_622, 0, x_615); +lean_ctor_set(x_622, 1, x_621); +x_623 = lean_box(0); +x_624 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_624, 0, x_622); +lean_ctor_set(x_624, 1, x_623); +x_8 = x_624; +x_9 = x_614; +goto block_18; } else { -lean_object* x_356; lean_object* x_357; -lean_dec(x_348); -lean_dec(x_326); -if (lean_is_scalar(x_349)) { - x_356 = lean_alloc_ctor(0, 2, 0); +lean_object* x_625; lean_object* x_626; lean_object* x_627; +lean_dec(x_616); +lean_dec(x_588); +if (lean_is_scalar(x_617)) { + x_625 = lean_alloc_ctor(0, 2, 0); } else { - x_356 = x_349; + x_625 = x_617; } -lean_ctor_set(x_356, 0, x_347); -lean_ctor_set(x_356, 1, x_2); -x_357 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_357, 0, x_356); -lean_ctor_set(x_357, 1, x_346); -return x_357; +lean_ctor_set(x_625, 0, x_615); +lean_ctor_set(x_625, 1, x_2); +x_626 = lean_box(0); +x_627 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_627, 0, x_625); +lean_ctor_set(x_627, 1, x_626); +x_8 = x_627; +x_9 = x_614; +goto block_18; } } } else { -lean_object* x_358; lean_object* x_359; -lean_dec(x_327); -lean_dec(x_326); -x_358 = lean_ctor_get(x_328, 0); -lean_inc(x_358); -x_359 = lean_ctor_get(x_328, 1); -lean_inc(x_359); -lean_dec(x_328); -x_8 = x_358; -x_9 = x_359; -goto block_16; +lean_object* x_628; lean_object* x_629; +lean_dec(x_589); +lean_dec(x_588); +x_628 = lean_ctor_get(x_590, 0); +lean_inc(x_628); +x_629 = lean_ctor_get(x_590, 1); +lean_inc(x_629); +lean_dec(x_590); +x_19 = x_628; +x_20 = x_629; +goto block_28; } } else { -lean_object* x_360; lean_object* x_361; +lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_dec(x_6); lean_dec(x_5); lean_dec(x_4); lean_dec(x_3); -x_360 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_360, 0, x_1); -lean_ctor_set(x_360, 1, x_2); -x_361 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_361, 0, x_360); -lean_ctor_set(x_361, 1, x_7); -return x_361; +x_630 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_630, 0, x_1); +lean_ctor_set(x_630, 1, x_2); +x_631 = lean_box(0); +x_632 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_632, 0, x_630); +lean_ctor_set(x_632, 1, x_631); +x_8 = x_632; +x_9 = x_7; +goto block_18; } } } -block_16: +block_18: +{ +if (lean_obj_tag(x_8) == 0) { uint8_t x_10; -x_10 = l_Lean_Exception_isInterrupt(x_8); +x_10 = !lean_is_exclusive(x_8); if (x_10 == 0) { -uint8_t x_11; -x_11 = l_Lean_Exception_isRuntime(x_8); -if (x_11 == 0) +lean_object* x_11; +x_11 = lean_ctor_get(x_8, 1); +lean_dec(x_11); +lean_ctor_set(x_8, 1, x_9); +return x_8; +} +else { lean_object* x_12; lean_object* x_13; +x_12 = lean_ctor_get(x_8, 0); +lean_inc(x_12); lean_dec(x_8); -x_12 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_12, 0, x_1); -lean_ctor_set(x_12, 1, x_2); x_13 = lean_alloc_ctor(0, 2, 0); lean_ctor_set(x_13, 0, x_12); lean_ctor_set(x_13, 1, x_9); return x_13; } +} else { -lean_object* x_14; -lean_dec(x_2); -lean_dec(x_1); -x_14 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_14, 0, x_8); -lean_ctor_set(x_14, 1, x_9); -return x_14; -} -} -else +uint8_t x_14; +x_14 = !lean_is_exclusive(x_8); +if (x_14 == 0) { lean_object* x_15; +x_15 = lean_ctor_get(x_8, 1); +lean_dec(x_15); +lean_ctor_set_tag(x_8, 0); +lean_ctor_set(x_8, 1, x_9); +return x_8; +} +else +{ +lean_object* x_16; lean_object* x_17; +x_16 = lean_ctor_get(x_8, 0); +lean_inc(x_16); +lean_dec(x_8); +x_17 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_17, 0, x_16); +lean_ctor_set(x_17, 1, x_9); +return x_17; +} +} +} +block_28: +{ +uint8_t x_21; +x_21 = l_Lean_Exception_isInterrupt(x_19); +if (x_21 == 0) +{ +uint8_t x_22; +x_22 = l_Lean_Exception_isRuntime(x_19); +if (x_22 == 0) +{ +lean_object* x_23; lean_object* x_24; lean_object* x_25; +lean_dec(x_19); +x_23 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_23, 0, x_1); +lean_ctor_set(x_23, 1, x_2); +x_24 = lean_box(0); +x_25 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_25, 0, x_23); +lean_ctor_set(x_25, 1, x_24); +x_8 = x_25; +x_9 = x_20; +goto block_18; +} +else +{ +lean_object* x_26; lean_dec(x_2); lean_dec(x_1); -x_15 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_15, 0, x_8); -lean_ctor_set(x_15, 1, x_9); -return x_15; +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_19); +lean_ctor_set(x_26, 1, x_20); +return x_26; +} +} +else +{ +lean_object* x_27; +lean_dec(x_2); +lean_dec(x_1); +x_27 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_27, 0, x_19); +lean_ctor_set(x_27, 1, x_20); +return x_27; } } } @@ -4500,6 +6133,29 @@ lean_dec(x_3); return x_20; } } +LEAN_EXPORT lean_object* l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2___boxed(lean_object* x_1, lean_object* x_2) { +_start: +{ +uint8_t x_3; lean_object* x_4; +x_3 = l___private_Init_Data_Option_Basic_0__Option_beqOption____x40_Init_Data_Option_Basic___hyg_159____at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__2(x_1, x_2); +lean_dec(x_2); +lean_dec(x_1); +x_4 = lean_box(x_3); +return x_4; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +_start: +{ +uint8_t x_11; uint8_t x_12; lean_object* x_13; +x_11 = lean_unbox(x_2); +lean_dec(x_2); +x_12 = lean_unbox(x_5); +lean_dec(x_5); +x_13 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10); +return x_13; +} +} LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11) { _start: { @@ -4527,6 +6183,45 @@ lean_dec(x_3); return x_13; } } +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14, lean_object* x_15) { +_start: +{ +lean_object* x_16; +x_16 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10, x_11, x_12, x_13, x_14, x_15); +lean_dec(x_10); +lean_dec(x_4); +lean_dec(x_3); +return x_16; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_unbox(x_5); +lean_dec(x_5); +x_16 = lean_unbox(x_8); +lean_dec(x_8); +x_17 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__4(x_1, x_2, x_3, x_4, x_15, x_6, x_7, x_16, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_2); +lean_dec(x_1); +return x_17; +} +} +LEAN_EXPORT lean_object* l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__5___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10, lean_object* x_11, lean_object* x_12, lean_object* x_13, lean_object* x_14) { +_start: +{ +uint8_t x_15; uint8_t x_16; lean_object* x_17; +x_15 = lean_unbox(x_5); +lean_dec(x_5); +x_16 = lean_unbox(x_8); +lean_dec(x_8); +x_17 = l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__5(x_1, x_2, x_3, x_4, x_15, x_6, x_7, x_16, x_9, x_10, x_11, x_12, x_13, x_14); +lean_dec(x_2); +lean_dec(x_1); +return x_17; +} +} LEAN_EXPORT lean_object* l_Lean_withoutModifyingState___at_Lean_Meta_addPPExplicitToExposeDiff___spec__1(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6) { _start: { @@ -14378,7 +16073,7 @@ return x_30; } } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1() { _start: { lean_object* x_1; @@ -14386,27 +16081,27 @@ x_1 = lean_mk_string_unchecked("Lean", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__2() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__3() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__2; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__2; x_2 = l_Lean_Meta_check___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__4() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__4() { _start: { lean_object* x_1; @@ -14414,17 +16109,17 @@ x_1 = lean_mk_string_unchecked("initFn", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__5() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__5() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__3; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__4; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__3; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__6() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__6() { _start: { lean_object* x_1; @@ -14432,37 +16127,37 @@ x_1 = lean_mk_string_unchecked("_@", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__7() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__5; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__6; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__5; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__6; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__8() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__7; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__9() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__8; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__8; x_2 = l_Lean_Meta_check___closed__1; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__10() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__10() { _start: { lean_object* x_1; @@ -14470,17 +16165,17 @@ x_1 = lean_mk_string_unchecked("Check", 5, 5); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__11() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__9; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__10; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__9; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__10; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__12() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__12() { _start: { lean_object* x_1; @@ -14488,33 +16183,33 @@ x_1 = lean_mk_string_unchecked("_hyg", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__13() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__11; -x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__12; +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__11; +x_2 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__12; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__14() { +static lean_object* _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__14() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__13; -x_2 = lean_unsigned_to_nat(3480u); +x_1 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__13; +x_2 = lean_unsigned_to_nat(4312u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312_(lean_object* x_1) { _start: { lean_object* x_2; uint8_t x_3; lean_object* x_4; lean_object* x_5; x_2 = l_Lean_Meta_check___closed__3; x_3 = 0; -x_4 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__14; +x_4 = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__14; x_5 = l_Lean_registerTraceClass(x_2, x_3, x_4, x_1); return x_5; } @@ -14554,6 +16249,16 @@ l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__11 = _init_l_Lean_Meta_ lean_mark_persistent(l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__11); l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__12 = _init_l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__12(); lean_mark_persistent(l_Lean_Meta_throwLetTypeMismatchMessage___rarg___closed__12); +l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__1 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__1(); +lean_mark_persistent(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__1); +l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__2 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__2(); +lean_mark_persistent(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__2); +l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__3 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__3(); +lean_mark_persistent(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__3); +l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__4 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__4(); +lean_mark_persistent(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__4); +l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5(); +lean_mark_persistent(l_Lean_Meta_addPPExplicitToExposeDiff_visit___lambda__3___closed__5); l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1(); lean_mark_persistent(l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__1); l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2 = _init_l_Lean_Meta_addPPExplicitToExposeDiff_visit___closed__2(); @@ -14635,35 +16340,35 @@ l_Lean_Meta_check___closed__2 = _init_l_Lean_Meta_check___closed__2(); lean_mark_persistent(l_Lean_Meta_check___closed__2); l_Lean_Meta_check___closed__3 = _init_l_Lean_Meta_check___closed__3(); lean_mark_persistent(l_Lean_Meta_check___closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__1); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__2(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__2); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__3(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__3); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__4(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__4); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__5(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__5); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__6(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__6); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__7 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__7(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__7); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__8 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__8(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__8); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__9 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__9(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__9); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__10 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__10(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__10); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__11 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__11(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__11); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__12 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__12(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__12); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__13 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__13(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__13); -l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__14 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__14(); -lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480____closed__14); -if (builtin) {res = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_3480_(lean_io_mk_world()); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__1); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__2 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__2(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__2); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__3 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__3(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__3); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__4 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__4(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__4); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__5 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__5(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__5); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__6 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__6(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__6); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__7); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__8 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__8(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__8); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__9 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__9(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__9); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__10 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__10(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__10); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__11 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__11(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__11); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__12 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__12(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__12); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__13 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__13(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__13); +l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__14 = _init_l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__14(); +lean_mark_persistent(l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312____closed__14); +if (builtin) {res = l_Lean_Meta_initFn____x40_Lean_Meta_Check___hyg_4312_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Meta/CongrTheorems.c b/stage0/stdlib/Lean/Meta/CongrTheorems.c index e6b188759d..91712543f4 100644 --- a/stage0/stdlib/Lean/Meta/CongrTheorems.c +++ b/stage0/stdlib/Lean/Meta/CongrTheorems.c @@ -115,6 +115,7 @@ static lean_object* l___private_Lean_Meta_CongrTheorems_0__Lean_Meta_reprCongrAr LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_Meta_getCongrSimpKinds___spec__1___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkHCongr(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_CongrTheorems_0__Lean_Meta_shouldUseSubsingletonInst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_CongrTheorems_0__Lean_Meta_shouldUseSubsingletonInst___spec__1___closed__2; uint8_t lean_expr_eqv(lean_object*, lean_object*); @@ -279,7 +280,6 @@ static lean_object* l___private_Lean_Meta_CongrTheorems_0__Lean_Meta_reprCongrAr lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkCongrSimpCore_x3f_mk_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_mkHCongrWithArity_mkProof___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_CongrTheorems_0__Lean_Meta_reprCongrArgKind____x40_Lean_Meta_CongrTheorems___hyg_17____closed__5; extern lean_object* l_Lean_Meta_instInhabitedParamInfo; static lean_object* l___private_Lean_Meta_CongrTheorems_0__Lean_Meta_reprCongrArgKind____x40_Lean_Meta_CongrTheorems___hyg_17____closed__25; @@ -1380,7 +1380,7 @@ lean_closure_set(x_34, 4, x_3); lean_closure_set(x_34, 5, x_31); x_35 = 0; x_36 = 0; -x_37 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_33, x_35, x_28, x_34, x_36, x_7, x_8, x_9, x_10, x_29); +x_37 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_33, x_35, x_28, x_34, x_36, x_7, x_8, x_9, x_10, x_29); return x_37; } else @@ -1445,7 +1445,7 @@ lean_closure_set(x_49, 4, x_3); lean_closure_set(x_49, 5, x_46); x_50 = 0; x_51 = 0; -x_52 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_48, x_50, x_43, x_49, x_51, x_7, x_8, x_9, x_10, x_44); +x_52 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_48, x_50, x_43, x_49, x_51, x_7, x_8, x_9, x_10, x_44); return x_52; } else @@ -1927,7 +1927,7 @@ lean_closure_set(x_19, 2, x_18); lean_closure_set(x_19, 3, x_2); x_20 = 0; x_21 = 0; -x_22 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_15, x_20, x_16, x_19, x_21, x_5, x_6, x_7, x_8, x_9); +x_22 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_20, x_16, x_19, x_21, x_5, x_6, x_7, x_8, x_9); return x_22; } else @@ -1941,7 +1941,7 @@ lean_closure_set(x_24, 2, x_23); lean_closure_set(x_24, 3, x_2); x_25 = 0; x_26 = 0; -x_27 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_15, x_25, x_16, x_24, x_26, x_5, x_6, x_7, x_8, x_9); +x_27 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_25, x_16, x_24, x_26, x_5, x_6, x_7, x_8, x_9); return x_27; } } @@ -8650,7 +8650,7 @@ lean_closure_set(x_24, 8, x_10); lean_closure_set(x_24, 9, x_11); x_25 = 0; x_26 = 0; -x_27 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_22, x_25, x_19, x_24, x_26, x_13, x_14, x_15, x_16, x_20); +x_27 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_22, x_25, x_19, x_24, x_26, x_13, x_14, x_15, x_16, x_20); return x_27; } else @@ -8759,7 +8759,7 @@ lean_closure_set(x_30, 7, x_11); lean_closure_set(x_30, 8, x_3); x_31 = 1; x_32 = 0; -x_33 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_28, x_31, x_24, x_30, x_32, x_12, x_13, x_14, x_15, x_27); +x_33 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_28, x_31, x_24, x_30, x_32, x_12, x_13, x_14, x_15, x_27); return x_33; } else @@ -8823,7 +8823,7 @@ lean_closure_set(x_42, 7, x_11); lean_closure_set(x_42, 8, x_3); x_43 = 3; x_44 = 0; -x_45 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_40, x_43, x_24, x_42, x_44, x_12, x_13, x_14, x_15, x_39); +x_45 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_40, x_43, x_24, x_42, x_44, x_12, x_13, x_14, x_15, x_39); return x_45; } else @@ -9117,7 +9117,7 @@ lean_closure_set(x_31, 8, x_3); lean_closure_set(x_31, 9, x_4); lean_closure_set(x_31, 10, x_5); x_32 = 0; -x_33 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_27, x_28, x_29, x_31, x_32, x_10, x_11, x_12, x_13, x_26); +x_33 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_27, x_28, x_29, x_31, x_32, x_10, x_11, x_12, x_13, x_26); return x_33; } else diff --git a/stage0/stdlib/Lean/Meta/Constructions/NoConfusion.c b/stage0/stdlib/Lean/Meta/Constructions/NoConfusion.c index 37be3824c4..248b54a244 100644 --- a/stage0/stdlib/Lean/Meta/Constructions/NoConfusion.c +++ b/stage0/stdlib/Lean/Meta/Constructions/NoConfusion.c @@ -47,6 +47,7 @@ static lean_object* l_Lean_mkNoConfusionEnum_mkNoConfusionType___lambda__1___clo static lean_object* l_Lean_mkNoConfusionEnum_mkNoConfusionType___closed__6; LEAN_EXPORT lean_object* l_Lean_mkNoConfusionCore___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_mkNoConfusionEnum_mkNoConfusionType___closed__4; static lean_object* l_Lean_setReducibilityStatus___at_Lean_mkNoConfusionCore___spec__4___closed__2; static lean_object* l_Lean_mkNoConfusionCore___lambda__1___closed__5; @@ -119,7 +120,6 @@ LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at_Lean_mkNoConfusionEnum_ lean_object* lean_array_mk(lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_mkNoConfusionCore___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_noConfusionExt; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_setReducibilityStatus___at_Lean_mkNoConfusionCore___spec__4___closed__3; lean_object* l_Lean_Level_param___override(lean_object*); lean_object* lean_st_ref_set(lean_object*, lean_object*, lean_object*); @@ -3546,7 +3546,7 @@ lean_closure_set(x_33, 7, x_26); x_34 = l_Lean_mkNoConfusionEnum_mkToCtorIdx___closed__11; x_35 = 0; x_36 = 0; -x_37 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_34, x_35, x_23, x_33, x_36, x_2, x_3, x_4, x_5, x_32); +x_37 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_34, x_35, x_23, x_33, x_36, x_2, x_3, x_4, x_5, x_32); return x_37; } else @@ -3606,7 +3606,7 @@ lean_closure_set(x_57, 7, x_49); x_58 = l_Lean_mkNoConfusionEnum_mkToCtorIdx___closed__11; x_59 = 0; x_60 = 0; -x_61 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_58, x_59, x_46, x_57, x_60, x_2, x_3, x_4, x_5, x_56); +x_61 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_58, x_59, x_46, x_57, x_60, x_2, x_3, x_4, x_5, x_56); return x_61; } } @@ -3956,7 +3956,7 @@ lean_closure_set(x_15, 7, x_7); x_16 = l_Lean_mkNoConfusionEnum_mkNoConfusionType___lambda__2___closed__2; x_17 = 0; x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_16, x_17, x_8, x_15, x_18, x_10, x_11, x_12, x_13, x_14); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_17, x_8, x_15, x_18, x_10, x_11, x_12, x_13, x_14); return x_19; } } @@ -3977,7 +3977,7 @@ lean_closure_set(x_14, 7, x_7); x_15 = l_Lean_mkNoConfusionEnum_mkToCtorIdx___closed__11; x_16 = 0; x_17 = 0; -x_18 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_15, x_16, x_7, x_14, x_17, x_9, x_10, x_11, x_12, x_13); +x_18 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_16, x_7, x_14, x_17, x_9, x_10, x_11, x_12, x_13); return x_18; } } @@ -4096,7 +4096,7 @@ lean_closure_set(x_25, 6, x_19); x_26 = l_Lean_mkNoConfusionEnum_mkNoConfusionType___closed__6; x_27 = 0; x_28 = 0; -x_29 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_26, x_27, x_21, x_25, x_28, x_2, x_3, x_4, x_5, x_18); +x_29 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_26, x_27, x_21, x_25, x_28, x_2, x_3, x_4, x_5, x_18); return x_29; } else @@ -4675,7 +4675,7 @@ lean_closure_set(x_18, 8, x_8); x_19 = l_Lean_mkNoConfusionEnum_mkNoConfusion___lambda__2___closed__2; x_20 = 0; x_21 = 0; -x_22 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_19, x_20, x_16, x_18, x_21, x_10, x_11, x_12, x_13, x_17); +x_22 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_19, x_20, x_16, x_18, x_21, x_10, x_11, x_12, x_13, x_17); return x_22; } else @@ -4731,7 +4731,7 @@ lean_closure_set(x_15, 7, x_7); x_16 = l_Lean_mkNoConfusionEnum_mkNoConfusionType___lambda__2___closed__2; x_17 = 1; x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_16, x_17, x_8, x_15, x_18, x_10, x_11, x_12, x_13, x_14); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_17, x_8, x_15, x_18, x_10, x_11, x_12, x_13, x_14); return x_19; } } @@ -4752,7 +4752,7 @@ lean_closure_set(x_14, 7, x_7); x_15 = l_Lean_mkNoConfusionEnum_mkToCtorIdx___closed__11; x_16 = 1; x_17 = 0; -x_18 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_15, x_16, x_7, x_14, x_17, x_9, x_10, x_11, x_12, x_13); +x_18 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_16, x_7, x_14, x_17, x_9, x_10, x_11, x_12, x_13); return x_18; } } @@ -4844,7 +4844,7 @@ lean_closure_set(x_29, 6, x_20); x_30 = l_Lean_mkNoConfusionEnum_mkNoConfusionType___closed__6; x_31 = 1; x_32 = 0; -x_33 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_30, x_31, x_22, x_29, x_32, x_2, x_3, x_4, x_5, x_19); +x_33 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_30, x_31, x_22, x_29, x_32, x_2, x_3, x_4, x_5, x_19); return x_33; } else @@ -4885,7 +4885,7 @@ lean_closure_set(x_46, 6, x_36); x_47 = l_Lean_mkNoConfusionEnum_mkNoConfusionType___closed__6; x_48 = 1; x_49 = 0; -x_50 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_47, x_48, x_38, x_46, x_49, x_2, x_3, x_4, x_5, x_35); +x_50 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_47, x_48, x_38, x_46, x_49, x_2, x_3, x_4, x_5, x_35); return x_50; } } diff --git a/stage0/stdlib/Lean/Meta/GeneralizeTelescope.c b/stage0/stdlib/Lean/Meta/GeneralizeTelescope.c index 2f3711a0d8..b94e5833ec 100644 --- a/stage0/stdlib/Lean/Meta/GeneralizeTelescope.c +++ b/stage0/stdlib/Lean/Meta/GeneralizeTelescope.c @@ -24,27 +24,25 @@ lean_object* lean_array_fset(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___rarg___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_generalizeTelescope(lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_generalizeTelescope___spec__1(size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_isTypeCorrect(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_generalizeTelescope___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___rarg___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___rarg___lambda__2___closed__2; lean_object* l_Lean_Meta_kabstract(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_CoreM_0__Lean_Core_mkFreshNameImp(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_List_mapTR_loop___at_Lean_MessageData_instCoeListExpr___spec__1(lean_object*, lean_object*); lean_object* l_Lean_FVarId_getDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2(size_t, size_t, lean_object*); static lean_object* l_Lean_Meta_generalizeTelescope___rarg___closed__1; lean_object* lean_array_to_list(lean_object*); uint8_t l_Lean_Expr_hasLooseBVars(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___boxed(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_str___override(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_generalizeTelescope___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_LocalDecl_userName(lean_object*); static lean_object* l_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___rarg___closed__2; -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(lean_object*); uint8_t lean_nat_dec_lt(lean_object*, lean_object*); lean_object* l_Lean_instantiateMVars___at___private_Lean_Meta_Basic_0__Lean_Meta_isClassApp_x3f___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___rarg___closed__3; @@ -54,7 +52,6 @@ size_t lean_usize_add(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); lean_object* lean_array_get_size(lean_object*); -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); lean_object* lean_nat_add(lean_object*, lean_object*); @@ -276,66 +273,7 @@ lean_dec(x_2); return x_10; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -return x_11; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_ctor_get(x_11, 1); -lean_inc(x_14); -lean_inc(x_13); -lean_dec(x_11); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); -return x_15; -} -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_11); -if (x_16 == 0) -{ -return x_11; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_11, 0); -x_18 = lean_ctor_get(x_11, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_11); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -return x_19; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg___boxed), 10, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2(size_t x_1, size_t x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(size_t x_1, size_t x_2, lean_object* x_3) { _start: { uint8_t x_4; @@ -455,7 +393,7 @@ lean_closure_set(x_17, 3, x_4); lean_closure_set(x_17, 4, x_5); x_18 = 0; x_19 = 0; -x_20 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_15, x_18, x_6, x_17, x_19, x_8, x_9, x_10, x_11, x_16); +x_20 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_18, x_6, x_17, x_19, x_8, x_9, x_10, x_11, x_16); return x_20; } } @@ -572,7 +510,7 @@ lean_closure_set(x_30, 3, x_4); lean_closure_set(x_30, 4, x_1); x_31 = 0; x_32 = 0; -x_33 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_28, x_31, x_16, x_30, x_32, x_5, x_6, x_7, x_8, x_29); +x_33 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_28, x_31, x_16, x_30, x_32, x_5, x_6, x_7, x_8, x_29); return x_33; } } @@ -641,7 +579,7 @@ lean_inc(x_42); lean_dec(x_39); x_43 = lean_array_size(x_2); x_44 = 0; -x_45 = l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2(x_43, x_44, x_2); +x_45 = l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(x_43, x_44, x_2); x_46 = lean_array_to_list(x_45); x_47 = lean_box(0); x_48 = l_List_mapTR_loop___at_Lean_MessageData_instCoeListExpr___spec__1(x_46, x_47); @@ -769,7 +707,7 @@ lean_inc(x_74); lean_dec(x_71); x_75 = lean_array_size(x_2); x_76 = 0; -x_77 = l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2(x_75, x_76, x_2); +x_77 = l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(x_75, x_76, x_2); x_78 = lean_array_to_list(x_77); x_79 = lean_box(0); x_80 = l_List_mapTR_loop___at_Lean_MessageData_instCoeListExpr___spec__1(x_78, x_79); @@ -862,19 +800,7 @@ x_2 = lean_alloc_closure((void*)(l_Lean_Meta_GeneralizeTelescope_generalizeTeles return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -uint8_t x_11; uint8_t x_12; lean_object* x_13; -x_11 = lean_unbox(x_2); -lean_dec(x_2); -x_12 = lean_unbox(x_5); -lean_dec(x_5); -x_13 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10); -return x_13; -} -} -LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { +LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3) { _start: { size_t x_4; size_t x_5; lean_object* x_6; @@ -882,7 +808,7 @@ x_4 = lean_unbox_usize(x_1); lean_dec(x_1); x_5 = lean_unbox_usize(x_2); lean_dec(x_2); -x_6 = l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__2(x_4, x_5, x_3); +x_6 = l_Array_mapMUnsafe_map___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1(x_4, x_5, x_3); return x_6; } } diff --git a/stage0/stdlib/Lean/Meta/IndPredBelow.c b/stage0/stdlib/Lean/Meta/IndPredBelow.c index 4e4fff8ce5..420f84985c 100644 --- a/stage0/stdlib/Lean/Meta/IndPredBelow.c +++ b/stage0/stdlib/Lean/Meta/IndPredBelow.c @@ -177,7 +177,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_mkCtorType_mkBelowBinder___lam LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_proveBrecOn_applyCtors___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_IndPredBelow_mkBrecOnDecl_mkIH___closed__2; LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_IndPredBelow_backwardsChaining___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_Lean_Meta_IndPredBelow_mkBrecOnDecl_mkType___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_Match_Pattern_toExpr_visit(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Meta_WHNF_0__Lean_Meta_toCtorWhenStructure___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -213,6 +212,7 @@ LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Meta_IndPredBelow_find LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_IndPredBelow_mkCtorType_addMotives___spec__1(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at_Lean_Meta_IndPredBelow_mkContext_addMotives___spec__1(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_IndPredBelow_mkBelowMatcher_convertToBelow___closed__3; LEAN_EXPORT lean_object* l_Lean_Meta_IndPredBelow_mkBrecOnDecl_mkType___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -876,7 +876,7 @@ lean_closure_set(x_17, 1, x_1); lean_closure_set(x_17, 2, x_5); x_18 = 1; x_19 = 0; -x_20 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_3, x_18, x_15, x_17, x_19, x_6, x_7, x_8, x_9, x_16); +x_20 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_3, x_18, x_15, x_17, x_19, x_6, x_7, x_8, x_9, x_16); return x_20; } else @@ -4922,7 +4922,7 @@ lean_dec(x_44); x_47 = l_Lean_Expr_binderInfo(x_4); lean_dec(x_4); x_48 = 0; -x_49 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_45, x_47, x_41, x_6, x_48, x_11, x_12, x_13, x_14, x_46); +x_49 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_45, x_47, x_41, x_6, x_48, x_11, x_12, x_13, x_14, x_46); return x_49; } else @@ -5016,7 +5016,7 @@ lean_dec(x_67); x_70 = l_Lean_Expr_binderInfo(x_4); lean_dec(x_4); x_71 = 0; -x_72 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_68, x_70, x_64, x_6, x_71, x_11, x_12, x_13, x_14, x_69); +x_72 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_68, x_70, x_64, x_6, x_71, x_11, x_12, x_13, x_14, x_69); return x_72; } else @@ -5466,7 +5466,7 @@ x_70 = l_Lean_Expr_binderInfo(x_3); lean_dec(x_3); x_71 = lean_apply_1(x_5, x_40); x_72 = 0; -x_73 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_68, x_70, x_64, x_71, x_72, x_11, x_12, x_13, x_14, x_69); +x_73 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_68, x_70, x_64, x_71, x_72, x_11, x_12, x_13, x_14, x_69); return x_73; } else @@ -5564,7 +5564,7 @@ x_94 = l_Lean_Expr_binderInfo(x_3); lean_dec(x_3); x_95 = lean_apply_1(x_5, x_40); x_96 = 0; -x_97 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_92, x_94, x_88, x_95, x_96, x_11, x_12, x_13, x_14, x_93); +x_97 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_92, x_94, x_88, x_95, x_96, x_11, x_12, x_13, x_14, x_93); return x_97; } else @@ -18293,7 +18293,7 @@ x_23 = lean_alloc_closure((void*)(l_Lean_Meta_IndPredBelow_mkBelowMatcher_conver lean_closure_set(x_23, 0, x_11); x_24 = 0; x_25 = 0; -x_26 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_21, x_24, x_18, x_23, x_25, x_4, x_5, x_6, x_7, x_22); +x_26 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_21, x_24, x_18, x_23, x_25, x_4, x_5, x_6, x_7, x_22); return x_26; } else @@ -19149,7 +19149,7 @@ lean_closure_set(x_21, 4, x_2); lean_closure_set(x_21, 5, x_4); x_22 = 0; x_23 = 0; -x_24 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_18, x_22, x_20, x_21, x_23, x_7, x_8, x_9, x_10, x_19); +x_24 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_18, x_22, x_20, x_21, x_23, x_7, x_8, x_9, x_10, x_19); return x_24; } else @@ -19852,7 +19852,7 @@ lean_closure_set(x_18, 1, x_12); lean_closure_set(x_18, 2, x_5); x_19 = 0; x_20 = 0; -x_21 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_15, x_19, x_17, x_18, x_20, x_6, x_7, x_8, x_9, x_16); +x_21 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_19, x_17, x_18, x_20, x_6, x_7, x_8, x_9, x_16); return x_21; } } @@ -21258,7 +21258,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_16); -x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_20, x_23, x_16, x_22, x_24, x_6, x_7, x_8, x_9, x_21); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_20, x_23, x_16, x_22, x_24, x_6, x_7, x_8, x_9, x_21); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; lean_object* x_27; lean_object* x_28; @@ -21406,7 +21406,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_16); -x_53 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_48, x_51, x_16, x_50, x_52, x_6, x_7, x_8, x_9, x_49); +x_53 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_48, x_51, x_16, x_50, x_52, x_6, x_7, x_8, x_9, x_49); if (lean_obj_tag(x_53) == 0) { lean_object* x_54; lean_object* x_55; lean_object* x_56; @@ -21557,7 +21557,7 @@ lean_inc(x_8); lean_inc(x_7); lean_inc(x_6); lean_inc(x_74); -x_83 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_77, x_81, x_74, x_80, x_82, x_6, x_7, x_8, x_9, x_78); +x_83 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_77, x_81, x_74, x_80, x_82, x_6, x_7, x_8, x_9, x_78); if (lean_obj_tag(x_83) == 0) { lean_object* x_84; lean_object* x_85; lean_object* x_86; diff --git a/stage0/stdlib/Lean/Meta/Injective.c b/stage0/stdlib/Lean/Meta/Injective.c index 7f8f526b8f..64d846346b 100644 --- a/stage0/stdlib/Lean/Meta/Injective.c +++ b/stage0/stdlib/Lean/Meta/Injective.c @@ -104,6 +104,7 @@ lean_object* lean_local_ctx_find(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_solveEqOfCtorEq___closed__1; lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_mkInjectiveTheorems___spec__7___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Subarray_forInUnsafe_loop___at___private_Lean_Meta_Injective_0__Lean_Meta_mkAnd_x3f___spec__1___closed__1; uint8_t lean_expr_eqv(lean_object*, lean_object*); @@ -236,7 +237,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_mkInjectiveTheoremNameFor(lean_object*); lean_object* lean_array_mk(lean_object*); uint8_t l_Lean_Expr_occurs(lean_object*, lean_object*); static lean_object* l_Lean_getConstInfoCtor___at_Lean_Meta_mkInjectiveTheorems___spec__3___closed__1; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Injective_0__Lean_Meta_mkInjectiveTheoremTypeCore_x3f___lambda__3(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Meta_mkInjectiveTheorems___spec__12___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_elimOptParam___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -778,7 +778,7 @@ if (x_2 == 0) uint8_t x_29; uint8_t x_30; lean_object* x_31; x_29 = 1; x_30 = 0; -x_31 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_21, x_29, x_22, x_28, x_30, x_10, x_11, x_12, x_13, x_20); +x_31 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_21, x_29, x_22, x_28, x_30, x_10, x_11, x_12, x_13, x_20); return x_31; } else @@ -786,7 +786,7 @@ else uint8_t x_32; uint8_t x_33; lean_object* x_34; x_32 = 0; x_33 = 0; -x_34 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_21, x_32, x_22, x_28, x_33, x_10, x_11, x_12, x_13, x_20); +x_34 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_21, x_32, x_22, x_28, x_33, x_10, x_11, x_12, x_13, x_20); return x_34; } } diff --git a/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c b/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c index 56e33ad4b2..687042323b 100644 --- a/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c +++ b/stage0/stdlib/Lean/Meta/Match/CaseArraySizes.c @@ -39,6 +39,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_getArrayArgType___lambda__1(lean_object*, l LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_caseArraySizes___spec__1(size_t, size_t, lean_object*); lean_object* l_Lean_MVarId_assign___at_Lean_Meta_getLevel___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapFinIdxM_map___at_Lean_Meta_caseArraySizes___spec__3___boxed(lean_object**); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_getArrayArgType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_caseArraySizes___lambda__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_caseArraySizes___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -86,7 +87,6 @@ static lean_object* l___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_mkAr static lean_object* l_Lean_Meta_caseArraySizes___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_caseArraySizes___spec__2(lean_object*, size_t, size_t, lean_object*); lean_object* lean_array_mk(lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_caseArraySizes___spec__1___boxed(lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); @@ -764,7 +764,7 @@ lean_closure_set(x_33, 3, x_31); x_34 = l___private_Lean_Meta_Match_CaseArraySizes_0__Lean_Meta_introArrayLit_loop___closed__4; x_35 = 0; x_36 = 0; -x_37 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_34, x_35, x_21, x_33, x_36, x_10, x_11, x_12, x_13, x_32); +x_37 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_34, x_35, x_21, x_33, x_36, x_10, x_11, x_12, x_13, x_32); return x_37; } else @@ -886,7 +886,7 @@ lean_closure_set(x_53, 8, x_6); lean_closure_set(x_53, 9, x_51); x_54 = 0; x_55 = 0; -x_56 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_52, x_54, x_6, x_53, x_55, x_10, x_11, x_12, x_13, x_14); +x_56 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_52, x_54, x_6, x_53, x_55, x_10, x_11, x_12, x_13, x_14); return x_56; } } diff --git a/stage0/stdlib/Lean/Meta/Match/Match.c b/stage0/stdlib/Lean/Meta/Match/Match.c index 27010cb29d..3cd35106fb 100644 --- a/stage0/stdlib/Lean/Meta/Match/Match.c +++ b/stage0/stdlib/Lean/Meta/Match/Match.c @@ -286,7 +286,6 @@ LEAN_EXPORT lean_object* l_List_mapTR_loop___at___private_Lean_Meta_Match_Match_ LEAN_EXPORT lean_object* l_List_filterTR_loop___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processConstructor___spec__7(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_throwNonSupported(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Level_ofNat(lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_traceStep___closed__1; LEAN_EXPORT lean_object* l_List_foldl___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_collectValues___spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_solveSomeLocalFVarIdCnstr_x3f_go___closed__1; @@ -350,6 +349,7 @@ static lean_object* l_Lean_Meta_Match_processInaccessibleAsCtor___closed__1; lean_object* l_Lean_Meta_Match_withGoalOf___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_getUElimPos_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Meta_getArrayArgType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static size_t l_Lean_PersistentHashMap_findAux___at_Lean_Meta_Match_mkMatcherAuxDefinition___spec__2___closed__2; static lean_object* l___private_Lean_Meta_Match_Match_0__Lean_Meta_Match_processNonVariable___closed__1; @@ -1240,7 +1240,7 @@ lean_closure_set(x_27, 4, x_3); lean_closure_set(x_27, 5, x_4); x_28 = 0; x_29 = 0; -x_30 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_16, x_28, x_25, x_27, x_29, x_7, x_8, x_9, x_10, x_26); +x_30 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_28, x_25, x_27, x_29, x_7, x_8, x_9, x_10, x_26); return x_30; } else @@ -1303,7 +1303,7 @@ lean_closure_set(x_39, 4, x_3); lean_closure_set(x_39, 5, x_4); x_40 = 0; x_41 = 0; -x_42 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_16, x_40, x_37, x_39, x_41, x_7, x_8, x_9, x_10, x_38); +x_42 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_40, x_37, x_39, x_41, x_7, x_8, x_9, x_10, x_38); return x_42; } else @@ -1372,7 +1372,7 @@ lean_closure_set(x_53, 4, x_3); lean_closure_set(x_53, 5, x_4); x_54 = 0; x_55 = 0; -x_56 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_16, x_54, x_51, x_53, x_55, x_7, x_8, x_9, x_10, x_52); +x_56 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_54, x_51, x_53, x_55, x_7, x_8, x_9, x_10, x_52); return x_56; } else @@ -1435,7 +1435,7 @@ lean_closure_set(x_65, 4, x_3); lean_closure_set(x_65, 5, x_4); x_66 = 0; x_67 = 0; -x_68 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_16, x_66, x_63, x_65, x_67, x_7, x_8, x_9, x_10, x_64); +x_68 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_66, x_63, x_65, x_67, x_7, x_8, x_9, x_10, x_64); return x_68; } else @@ -1933,7 +1933,7 @@ lean_closure_set(x_24, 12, x_13); lean_closure_set(x_24, 13, x_14); x_25 = 0; x_26 = 0; -x_27 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_15, x_25, x_16, x_24, x_26, x_18, x_19, x_20, x_21, x_22); +x_27 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_25, x_16, x_24, x_26, x_18, x_19, x_20, x_21, x_22); return x_27; } } @@ -20831,7 +20831,7 @@ lean_closure_set(x_18, 4, x_4); lean_closure_set(x_18, 5, x_15); x_19 = 0; x_20 = 0; -x_21 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_17, x_19, x_3, x_18, x_20, x_7, x_8, x_9, x_10, x_11); +x_21 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_17, x_19, x_3, x_18, x_20, x_7, x_8, x_9, x_10, x_11); return x_21; } else @@ -43700,7 +43700,7 @@ lean_closure_set(x_21, 11, x_12); x_22 = l_Lean_Meta_Match_mkMatcher___lambda__20___closed__2; x_23 = 0; x_24 = 0; -x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_22, x_23, x_13, x_21, x_24, x_15, x_16, x_17, x_18, x_19); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_22, x_23, x_13, x_21, x_24, x_15, x_16, x_17, x_18, x_19); return x_25; } } diff --git a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c index 188f2121ad..f4b3ccc2fd 100644 --- a/stage0/stdlib/Lean/Meta/Match/MatchEqs.c +++ b/stage0/stdlib/Lean/Meta/Match/MatchEqs.c @@ -238,7 +238,6 @@ static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_MVarId_contradi LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkEquationsFor___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__10___lambda__1___boxed(lean_object**); static lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_SimpH_contradiction___closed__1; -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_appArg_x21(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_mkSplitterProof_convertTemplate___spec__12___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_substSomeVar___spec__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -309,6 +308,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at___private_ LEAN_EXPORT lean_object* l_Lean_Meta_Match_proveCondEqThm___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_Match_forallAltTelescope_go___spec__5(lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwMaxRecDepthAt___at_Lean_Meta_Match_proveCondEqThm_go___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Match_MatchEqs_0__Lean_Meta_Match_withSplitterAlts_go(lean_object*); @@ -6993,7 +6993,7 @@ lean_closure_set(x_19, 9, x_9); lean_closure_set(x_19, 10, x_10); x_20 = 0; x_21 = 0; -x_22 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_11, x_20, x_12, x_19, x_21, x_14, x_15, x_16, x_17, x_18); +x_22 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_11, x_20, x_12, x_19, x_21, x_14, x_15, x_16, x_17, x_18); return x_22; } } @@ -8596,7 +8596,7 @@ lean_closure_set(x_257, 9, x_4); lean_closure_set(x_257, 10, x_6); x_258 = 0; x_259 = 0; -x_260 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_197, x_258, x_255, x_257, x_259, x_11, x_12, x_13, x_14, x_256); +x_260 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_197, x_258, x_255, x_257, x_259, x_11, x_12, x_13, x_14, x_256); return x_260; } else @@ -21162,7 +21162,7 @@ lean_closure_set(x_18, 2, x_2); lean_closure_set(x_18, 3, x_14); x_19 = 0; x_20 = 0; -x_21 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_16, x_19, x_17, x_18, x_20, x_5, x_6, x_7, x_8, x_9); +x_21 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_19, x_17, x_18, x_20, x_5, x_6, x_7, x_8, x_9); return x_21; } } @@ -43138,7 +43138,7 @@ lean_closure_set(x_23, 3, x_2); lean_closure_set(x_23, 4, x_3); lean_closure_set(x_23, 5, x_4); x_24 = 0; -x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_GeneralizeTelescope_generalizeTelescopeAux___spec__1___rarg(x_21, x_22, x_20, x_23, x_24, x_7, x_8, x_9, x_10, x_18); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_21, x_22, x_20, x_23, x_24, x_7, x_8, x_9, x_10, x_18); return x_25; } else diff --git a/stage0/stdlib/Lean/Meta/SizeOf.c b/stage0/stdlib/Lean/Meta/SizeOf.c index 0f7961f44e..3884457a66 100644 --- a/stage0/stdlib/Lean/Meta/SizeOf.c +++ b/stage0/stdlib/Lean/Meta/SizeOf.c @@ -184,6 +184,7 @@ lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_obje static lean_object* l_Lean_Meta_mkSizeOfFn___closed__1; lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMinors_loop___rarg___lambda__2___closed__1; +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfSpecTheorems___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfoRec___at_Lean_Meta_mkSizeOfFn___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_SizeOfSpecNested_throwFailed___rarg___closed__1; @@ -419,7 +420,6 @@ LEAN_EXPORT lean_object* l_List_forIn_x27_loop___at_Lean_Meta_mkSizeOfInstances_ static lean_object* l_Lean_Meta_mkSizeOfSpecLemmaName___closed__1; LEAN_EXPORT lean_object* l_Lean_throwError___at_Lean_Meta_SizeOfSpecNested_throwFailed___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkSizeOfAuxLemmaProof___spec__6___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static double l_Lean_addTrace___at___private_Lean_Meta_SizeOf_0__Lean_Meta_SizeOfSpecNested_mkMinorProof___spec__2___closed__1; static lean_object* l___private_Lean_Meta_SizeOf_0__Lean_Meta_mkSizeOfMotives_loop___rarg___closed__8; size_t lean_usize_add(size_t, size_t); @@ -848,7 +848,7 @@ lean_closure_set(x_31, 2, x_1); lean_closure_set(x_31, 3, x_2); x_32 = 3; x_33 = 0; -x_34 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_29, x_32, x_26, x_31, x_33, x_5, x_6, x_7, x_8, x_30); +x_34 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_29, x_32, x_26, x_31, x_33, x_5, x_6, x_7, x_8, x_30); return x_34; } } @@ -17419,7 +17419,7 @@ lean_closure_set(x_25, 10, x_15); x_26 = l_List_forIn_x27_loop___at_Lean_Meta_mkSizeOfInstances___spec__2___lambda__3___closed__2; x_27 = 0; x_28 = 0; -x_29 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_26, x_27, x_19, x_25, x_28, x_10, x_11, x_12, x_13, x_24); +x_29 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_26, x_27, x_19, x_25, x_28, x_10, x_11, x_12, x_13, x_24); return x_29; } else diff --git a/stage0/stdlib/Lean/Meta/SynthInstance.c b/stage0/stdlib/Lean/Meta/SynthInstance.c index 8ca17d79cb..b1c660bdec 100644 --- a/stage0/stdlib/Lean/Meta/SynthInstance.c +++ b/stage0/stdlib/Lean/Meta/SynthInstance.c @@ -178,7 +178,6 @@ static lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__2___closed_ static lean_object* l_Lean_Meta_SynthInstance_newSubgoal___closed__1; static lean_object* l_Lean_Meta_SynthInstance_mkTableKey___rarg___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_getMaxHeartbeats___boxed(lean_object*); -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_synthPendingImp___lambda__3___closed__4; static lean_object* l_Lean_Meta_SynthInstance_wakeUp___closed__1; LEAN_EXPORT lean_object* l___private_Lean_Util_Trace_0__Lean_addTraceNode___at_Lean_Meta_SynthInstance_newSubgoal___spec__11(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -198,7 +197,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_tryResolve___lambda__5(lean_o LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_addAnswer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l___private_Lean_Util_Trace_0__Lean_checkTraceOption(lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_synthInstance_x3f___lambda__4___closed__7; -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_tryResolve___spec__2___lambda__2(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, double, double, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKeyFor___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Exception_toMessageData(lean_object*); @@ -251,6 +249,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_getEntry(lean_object*, lean_o LEAN_EXPORT lean_object* l_Lean_Meta_synthInstance_x3f___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Meta_SynthInstance_newSubgoal___spec__6(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Util_Trace_0__Lean_getResetTraces___at_Lean_Meta_processPostponed___spec__2___rarg(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessOutParam(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Meta_SynthInstance_newSubgoal___spec__13___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -285,7 +284,6 @@ lean_object* l_Lean_registerTraceClass(lean_object*, uint8_t, lean_object*, lean LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Meta_SynthInstance_consume___spec__4(lean_object*, lean_object*, size_t, size_t, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_MkTableKey_instMonadMCtxM___lambda__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_insertAtCollisionNodeAux___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_cacheResult___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Std_DHashMap_Internal_AssocList_contains___at___private_Lean_Meta_AbstractMVars_0__Lean_Meta_AbstractMVars_abstractLevelMVars___spec__2(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_ReaderT_bind___at_Lean_Meta_SynthInstance_newSubgoal___spec__6___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_assignOutParams___closed__3; @@ -306,6 +304,7 @@ static lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__2___closed_ static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_83____closed__5; static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___lambda__2___closed__5; LEAN_EXPORT lean_object* l_Lean_withTraceNode_x27___at_Lean_Meta_SynthInstance_newSubgoal___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_SynthInstance_generate___lambda__4___closed__1; static lean_object* l_Lean_Meta_SynthInstance_getSubgoals___closed__1; static lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_mkAnswer___lambda__2___closed__6; @@ -483,7 +482,6 @@ static lean_object* l_Lean_Meta_SynthInstance_instInhabitedGeneratorNode___close LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_tryResolve___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_MonadExcept_ofExcept___at_Lean_Meta_SynthInstance_generate___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_tryResolve___lambda__6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_withMCtx___at_Lean_Meta_SynthInstance_tryResolve___spec__1___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_findEntry_x3f___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_withTraceNode_x27___at_Lean_Meta_SynthInstance_newSubgoal___spec__7___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -587,6 +585,7 @@ LEAN_EXPORT lean_object* l_Lean_withTraceNode___at_Lean_Meta_SynthInstance_gener static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_SynthInstance___hyg_10059____closed__7; static lean_object* l_Lean_Meta_SynthInstance_addAnswer___lambda__1___closed__2; static lean_object* l_Lean_Meta_SynthInstance_generate___closed__1; +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_panic___at_Lean_Meta_SynthInstance_getEntry___spec__1___closed__1; static lean_object* l_Lean_Meta_SynthInstance_getInstances___lambda__2___closed__1; lean_object* lean_nat_sub(lean_object*, lean_object*); @@ -636,7 +635,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_SynthInstan lean_object* l_Lean_instantiateMVarsCore(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_mkTableKey___at_Lean_Meta_SynthInstance_main___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_preprocessArgs___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_resume___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_exceptOptionEmoji___rarg(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_backward_synthInstance_canonInstances; @@ -701,7 +699,6 @@ lean_object* lean_infer_type(lean_object*, lean_object*, lean_object*, lean_obje LEAN_EXPORT lean_object* l_Lean_Loop_forIn_loop___at_Lean_Meta_SynthInstance_getSubgoals___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_le(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SynthInstance_getSubgoals(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_assignOutParams___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_usize_dec_lt(size_t, size_t); uint8_t l_Array_contains___at___private_Lean_Meta_FunInfo_0__Lean_Meta_collectDeps_visit___spec__2(lean_object*, lean_object*); @@ -16235,66 +16232,7 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object* x_1, uint8_t x_2, lean_object* x_3, lean_object* x_4, uint8_t x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -lean_object* x_11; -x_11 = l___private_Lean_Meta_Basic_0__Lean_Meta_withLocalDeclImp___rarg(x_1, x_2, x_3, x_4, x_5, x_6, x_7, x_8, x_9, x_10); -if (lean_obj_tag(x_11) == 0) -{ -uint8_t x_12; -x_12 = !lean_is_exclusive(x_11); -if (x_12 == 0) -{ -return x_11; -} -else -{ -lean_object* x_13; lean_object* x_14; lean_object* x_15; -x_13 = lean_ctor_get(x_11, 0); -x_14 = lean_ctor_get(x_11, 1); -lean_inc(x_14); -lean_inc(x_13); -lean_dec(x_11); -x_15 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_15, 0, x_13); -lean_ctor_set(x_15, 1, x_14); -return x_15; -} -} -else -{ -uint8_t x_16; -x_16 = !lean_is_exclusive(x_11); -if (x_16 == 0) -{ -return x_11; -} -else -{ -lean_object* x_17; lean_object* x_18; lean_object* x_19; -x_17 = lean_ctor_get(x_11, 0); -x_18 = lean_ctor_get(x_11, 1); -lean_inc(x_18); -lean_inc(x_17); -lean_dec(x_11); -x_19 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_19, 0, x_17); -lean_ctor_set(x_19, 1, x_18); -return x_19; -} -} -} -} -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(lean_object* x_1) { -_start: -{ -lean_object* x_2; -x_2 = lean_alloc_closure((void*)(l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg___boxed), 10, 0); -return x_2; -} -} -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -16405,7 +16343,7 @@ return x_31; } } } -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__4(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__3(lean_object* x_1, lean_object* x_2, size_t x_3, size_t x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { uint8_t x_11; @@ -16822,7 +16760,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_35 = l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__3(x_3, x_2, x_33, x_34, x_9, x_4, x_5, x_6, x_7, x_8); +x_35 = l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(x_3, x_2, x_33, x_34, x_9, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_35) == 0) { lean_object* x_36; lean_object* x_37; @@ -16888,7 +16826,7 @@ lean_inc(x_7); lean_inc(x_6); lean_inc(x_5); lean_inc(x_4); -x_46 = l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__4(x_3, x_2, x_44, x_45, x_9, x_4, x_5, x_6, x_7, x_8); +x_46 = l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__3(x_3, x_2, x_44, x_45, x_9, x_4, x_5, x_6, x_7, x_8); if (lean_obj_tag(x_46) == 0) { lean_object* x_47; lean_object* x_48; @@ -16959,7 +16897,7 @@ lean_closure_set(x_21, 4, x_1); x_22 = l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___lambda__3___closed__2; x_23 = 0; x_24 = 0; -x_25 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_22, x_23, x_19, x_21, x_24, x_4, x_5, x_6, x_7, x_20); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_22, x_23, x_19, x_21, x_24, x_4, x_5, x_6, x_7, x_20); return x_25; } else @@ -17125,15 +17063,17 @@ lean_dec(x_1); return x_8; } } -LEAN_EXPORT lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { +LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { _start: { -uint8_t x_11; uint8_t x_12; lean_object* x_13; -x_11 = lean_unbox(x_2); +size_t x_11; size_t x_12; lean_object* x_13; +x_11 = lean_unbox_usize(x_3); +lean_dec(x_3); +x_12 = lean_unbox_usize(x_4); +lean_dec(x_4); +x_13 = l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2(x_1, x_2, x_11, x_12, x_5, x_6, x_7, x_8, x_9, x_10); lean_dec(x_2); -x_12 = lean_unbox(x_5); -lean_dec(x_5); -x_13 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_1, x_11, x_3, x_4, x_12, x_6, x_7, x_8, x_9, x_10); +lean_dec(x_1); return x_13; } } @@ -17151,20 +17091,6 @@ lean_dec(x_1); return x_13; } } -LEAN_EXPORT lean_object* l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__4___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8, lean_object* x_9, lean_object* x_10) { -_start: -{ -size_t x_11; size_t x_12; lean_object* x_13; -x_11 = lean_unbox_usize(x_3); -lean_dec(x_3); -x_12 = lean_unbox_usize(x_4); -lean_dec(x_4); -x_13 = l_Array_foldrMUnsafe_fold___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__4(x_1, x_2, x_11, x_12, x_5, x_6, x_7, x_8, x_9, x_10); -lean_dec(x_2); -lean_dec(x_1); -return x_13; -} -} LEAN_EXPORT lean_object* l___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { diff --git a/stage0/stdlib/Lean/Meta/Tactic/AC/Main.c b/stage0/stdlib/Lean/Meta/Tactic/AC/Main.c index fc9ef85c18..0ba5718321 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/AC/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/AC/Main.c @@ -132,6 +132,7 @@ lean_object* l_Lean_MVarId_getNondepPropHyps(lean_object*, lean_object*, lean_ob LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_Meta_AC_buildNormProof_mkContext___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_AC_buildNormProof_mkContext(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_panic___rarg(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_AC_abstractAtoms_go___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Data_AC_norm___at_Lean_Meta_AC_buildNormProof___spec__3___boxed(lean_object*, lean_object*); lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand___at_Lean_ForEachExpr_visit___spec__3(lean_object*); @@ -307,7 +308,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_AC_acRflTactic___rarg___lambda__1(lean_obje static lean_object* l_Lean_Meta_AC_initFn____x40_Lean_Meta_Tactic_AC_Main___hyg_8732____closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_AC_toACExpr_toACExpr(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_AssocList_get_x21___at_Lean_Meta_AC_toACExpr___spec__10(lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_AC_rewriteUnnormalized___closed__11; LEAN_EXPORT lean_object* l_Lean_Meta_AC_instContextInformationProdPreContextArrayBool; static lean_object* l_Lean_Meta_AC_instContextInformationProdPreContextArrayBool___closed__1; @@ -3684,7 +3684,7 @@ lean_closure_set(x_39, 12, x_9); x_40 = l_Lean_Meta_AC_abstractAtoms_go___lambda__2___closed__4; x_41 = 0; x_42 = 0; -x_43 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_40, x_41, x_38, x_39, x_42, x_11, x_12, x_13, x_14, x_34); +x_43 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_40, x_41, x_38, x_39, x_42, x_11, x_12, x_13, x_14, x_34); return x_43; } } @@ -3881,7 +3881,7 @@ lean_closure_set(x_39, 8, x_5); x_40 = l_Lean_Meta_AC_abstractAtoms_go___closed__2; x_41 = 0; x_42 = 0; -x_43 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_40, x_41, x_4, x_39, x_42, x_10, x_11, x_12, x_13, x_14); +x_43 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_40, x_41, x_4, x_39, x_42, x_10, x_11, x_12, x_13, x_14); return x_43; } } diff --git a/stage0/stdlib/Lean/Meta/Tactic/Cases.c b/stage0/stdlib/Lean/Meta/Tactic/Cases.c index 7b1c74af5b..9f9f3b4e3a 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Cases.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Cases.c @@ -165,6 +165,7 @@ LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at_Lean_Meta_generalizeIndices LEAN_EXPORT lean_object* l_Lean_PersistentArray_anyM___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__7___boxed(lean_object*, lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); static lean_object* l_Lean_MVarId_substEqs___closed__1; +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_generalizeTargetsEq___lambda__3___closed__1; static lean_object* l_Lean_MVarId_byCases___closed__1; static lean_object* l_Lean_Meta_Cases_cases___lambda__2___closed__10; @@ -373,7 +374,6 @@ lean_object* l_Lean_mkEM(lean_object*); static lean_object* l_Lean_Meta_Cases_cases___lambda__2___closed__6; LEAN_EXPORT uint8_t l_Lean_PersistentArray_anyMAux___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__48(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_Cases_hasIndepIndices___spec__55(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentArray_forInAux___at_Lean_MVarId_casesRec___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Cases_cases___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Expr_withAppAux___at_Lean_Meta_generalizeIndices___spec__1___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1249,7 +1249,7 @@ lean_closure_set(x_25, 6, x_3); x_26 = l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_withNewEqs_loop___rarg___closed__2; x_27 = 0; x_28 = 0; -x_29 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_26, x_27, x_23, x_25, x_28, x_7, x_8, x_9, x_10, x_22); +x_29 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_26, x_27, x_23, x_25, x_28, x_7, x_8, x_9, x_10, x_22); return x_29; } else @@ -1318,7 +1318,7 @@ lean_closure_set(x_40, 6, x_3); x_41 = l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_withNewEqs_loop___rarg___closed__2; x_42 = 0; x_43 = 0; -x_44 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_41, x_42, x_38, x_40, x_43, x_7, x_8, x_9, x_10, x_37); +x_44 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_41, x_42, x_38, x_40, x_43, x_7, x_8, x_9, x_10, x_37); return x_44; } else @@ -2308,7 +2308,7 @@ lean_closure_set(x_22, 8, x_21); x_23 = l___private_Lean_Meta_Tactic_Cases_0__Lean_Meta_withNewEqs_loop___rarg___closed__2; x_24 = 0; x_25 = 0; -x_26 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_23, x_24, x_19, x_22, x_25, x_10, x_11, x_12, x_13, x_18); +x_26 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_23, x_24, x_19, x_22, x_25, x_10, x_11, x_12, x_13, x_18); return x_26; } else @@ -2381,7 +2381,7 @@ lean_closure_set(x_16, 4, x_5); lean_closure_set(x_16, 5, x_6); x_17 = 0; x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_15, x_17, x_14, x_16, x_18, x_9, x_10, x_11, x_12, x_13); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_15, x_17, x_14, x_16, x_18, x_9, x_10, x_11, x_12, x_13); return x_19; } } diff --git a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c index f4e11225eb..a2efaceda7 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/FunInd.c +++ b/stage0/stdlib/Lean/Meta/Tactic/FunInd.c @@ -436,6 +436,7 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__3__ uint8_t l_Array_contains___at_Lean_Meta_setMVarUserNamesAt___spec__1(lean_object*, lean_object*); lean_object* lean_st_ref_take(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_foldAndCollect___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_withLetDecls_go___rarg___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_initFn____x40_Lean_Meta_Tactic_FunInd___hyg_18094____closed__5; @@ -762,7 +763,6 @@ LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_abstractIndependentMVars___lambda_ static lean_object* l_Lean_Tactic_FunInd_deriveInductionStructural___lambda__14___closed__1; static double l_Lean_withTraceNode___at_Lean_Tactic_FunInd_foldAndCollect___spec__30___lambda__4___closed__4; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Tactic_FunInd_projectMutualInduct___spec__1___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Tactic_FunInd_isFunInductName___lambda__2___closed__1; LEAN_EXPORT lean_object* l_Lean_Tactic_FunInd_isFunInductName___lambda__3(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Tactic_FunInd_buildInductionBody___spec__44___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -57248,7 +57248,7 @@ lean_closure_set(x_26, 9, x_18); x_27 = l_Lean_Tactic_FunInd_deriveUnaryInduction___lambda__11___closed__2; x_28 = 0; x_29 = 0; -x_30 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_forallTelescopeCompatibleAux___spec__15___rarg(x_27, x_28, x_24, x_26, x_29, x_10, x_11, x_12, x_13, x_25); +x_30 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_27, x_28, x_24, x_26, x_29, x_10, x_11, x_12, x_13, x_25); return x_30; } else diff --git a/stage0/stdlib/Lean/Meta/Tactic/LinearArith/Nat/Simp.c b/stage0/stdlib/Lean/Meta/Tactic/LinearArith/Nat/Simp.c index f8cbf25be5..d256455e9a 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/LinearArith/Nat/Simp.c +++ b/stage0/stdlib/Lean/Meta/Tactic/LinearArith/Nat/Simp.c @@ -59,6 +59,7 @@ uint8_t l_Nat_Linear_PolyCnstr_isUnsat(lean_object*); static lean_object* l_Lean_Meta_withLocalDecls___at_Lean_Meta_Linear_Nat_withAbstractAtoms___spec__4___rarg___closed__1; lean_object* l_Lean_Meta_Linear_Nat_ToLinear_run___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); static lean_object* l_Lean_Meta_Linear_Nat_simpCnstr_x3f___closed__23; static lean_object* l_Lean_Meta_Linear_Nat_simpCnstr_x3f___closed__10; @@ -122,7 +123,6 @@ static lean_object* l_Lean_Meta_Linear_Nat_simpCnstrPos_x3f___lambda__1___closed lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_Meta_Linear_Nat_simpCnstrPos_x3f___lambda__1___closed__13; static lean_object* l_Lean_Meta_Linear_Nat_simpCnstrPos_x3f___lambda__1___closed__2; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Linear_Nat_simpCnstrPos_x3f___lambda__1___closed__4; size_t lean_usize_add(size_t, size_t); lean_object* lean_array_uget(lean_object*, size_t); @@ -388,7 +388,7 @@ lean_closure_set(x_22, 3, x_3); x_23 = 0; x_24 = lean_unbox(x_17); lean_dec(x_17); -x_25 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_16, x_24, x_20, x_22, x_23, x_5, x_6, x_7, x_8, x_21); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_16, x_24, x_20, x_22, x_23, x_5, x_6, x_7, x_8, x_21); return x_25; } else diff --git a/stage0/stdlib/Lean/Meta/Tactic/Rewrite.c b/stage0/stdlib/Lean/Meta/Tactic/Rewrite.c index 79cfc07cbb..d5838db68e 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Rewrite.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Rewrite.c @@ -55,6 +55,7 @@ static lean_object* l_Lean_MVarId_rewrite___lambda__18___closed__3; size_t lean_usize_of_nat(lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_rewrite___lambda__12(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_MVarId_rewrite___spec__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_MVarId_rewrite___lambda__2___closed__4; LEAN_EXPORT lean_object* l_Lean_MVarId_rewrite___lambda__3___boxed(lean_object**); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_forallMetaTelescopeReducingAux(lean_object*, uint8_t, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -115,7 +116,6 @@ static lean_object* l_Lean_MVarId_rewrite___lambda__18___closed__11; LEAN_EXPORT lean_object* l_Lean_MVarId_rewrite___lambda__4___boxed(lean_object**); lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_MVarId_rewrite___closed__1; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_MVarId_rewrite___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); static lean_object* l_Lean_MVarId_rewrite___lambda__3___closed__4; @@ -869,7 +869,7 @@ lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_inc(x_4); -x_24 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_3, x_22, x_4, x_21, x_23, x_16, x_17, x_18, x_19, x_20); +x_24 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_3, x_22, x_4, x_21, x_23, x_16, x_17, x_18, x_19, x_20); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; uint8_t x_26; @@ -2109,7 +2109,7 @@ lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_inc(x_4); -x_24 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_3, x_22, x_4, x_21, x_23, x_16, x_17, x_18, x_19, x_20); +x_24 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_3, x_22, x_4, x_21, x_23, x_16, x_17, x_18, x_19, x_20); if (lean_obj_tag(x_24) == 0) { lean_object* x_25; uint8_t x_26; @@ -3260,7 +3260,7 @@ lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_4); -x_25 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_3, x_23, x_4, x_22, x_24, x_17, x_18, x_19, x_20, x_21); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_3, x_23, x_4, x_22, x_24, x_17, x_18, x_19, x_20, x_21); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; uint8_t x_27; @@ -4422,7 +4422,7 @@ lean_inc(x_19); lean_inc(x_18); lean_inc(x_17); lean_inc(x_4); -x_25 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_3, x_23, x_4, x_22, x_24, x_17, x_18, x_19, x_20, x_21); +x_25 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_3, x_23, x_4, x_22, x_24, x_17, x_18, x_19, x_20, x_21); if (lean_obj_tag(x_25) == 0) { lean_object* x_26; uint8_t x_27; diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c index d8e43e3b08..ffec2f1fc2 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/Main.c @@ -308,6 +308,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_congr___lambda__1___boxed(lean_object* LEAN_EXPORT lean_object* l_Lean_Meta_transform_visit_visitForall___at___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_dsimpImpl___spec__5___boxed(lean_object**); lean_object* lean_st_ref_take(lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_SimpLetCase_toCtorIdx(uint8_t); lean_object* l_Lean_getConstInfo___at___private_Lean_Compiler_InlineAttrs_0__Lean_Compiler_isValidMacroInline___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); @@ -691,7 +692,6 @@ LEAN_EXPORT lean_object* l_Lean_Meta_Simp_simpLoop_visitPreContinue___lambda__1_ lean_object* l_Lean_MVarId_tryClearMany(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Lean_Meta_Simp_isOfScientificLit(lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Simp_trySimpCongrTheorem_x3f___lambda__9(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_SMap_insert___at_Lean_Meta_Simp_cacheResult___spec__1(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_Main_0__Lean_Meta_Simp_unfold_x3f_unfoldDeclToUnfold_x3f(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_Simp_Config_updateArith___closed__2; @@ -8431,7 +8431,7 @@ x_9 = lean_alloc_closure((void*)(l_Lean_Meta_Simp_getSimpLetCase___lambda__1___b lean_closure_set(x_9, 0, x_3); x_10 = 0; x_11 = 0; -x_12 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_1, x_10, x_2, x_9, x_11, x_4, x_5, x_6, x_7, x_8); +x_12 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_1, x_10, x_2, x_9, x_11, x_4, x_5, x_6, x_7, x_8); return x_12; } } diff --git a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c index ec7f21e5cd..7c02b03d5f 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Simp/SimpTheorems.c @@ -180,6 +180,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_SimpTheorems_erase(lean_object*); static lean_object* l_Lean_Meta_DiscrTree_insertCore___at_Lean_Meta_addSimpTheoremEntry___spec__1___closed__4; LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_empty___at_Lean_Meta_instInhabitedSimpTheorems___spec__1; lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at___private_Lean_Compiler_InlineAttrs_0__Lean_Compiler_isValidMacroInline___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_SimpTheorems_add___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -434,7 +435,6 @@ static lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_ static lean_object* l_Lean_Meta_instInhabitedSimpEntry___closed__1; static lean_object* l___auto____x40_Lean_Meta_Tactic_Simp_SimpTheorems___hyg_5514____closed__9; static lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_preprocess_go___closed__12; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Simp_SimpTheorems_0__Lean_Meta_preprocess_go___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PersistentHashMap_find_x3f___at_Lean_Meta_addSimpTheoremEntry___spec__2(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); @@ -9595,7 +9595,7 @@ lean_closure_set(x_49, 0, x_38); lean_closure_set(x_49, 1, x_40); x_50 = 0; x_51 = 0; -x_52 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_36, x_50, x_37, x_49, x_51, x_3, x_4, x_5, x_6, x_48); +x_52 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_36, x_50, x_37, x_49, x_51, x_3, x_4, x_5, x_6, x_48); return x_52; } } @@ -9730,7 +9730,7 @@ lean_closure_set(x_75, 0, x_64); lean_closure_set(x_75, 1, x_66); x_76 = 0; x_77 = 0; -x_78 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_62, x_76, x_63, x_75, x_77, x_3, x_4, x_5, x_6, x_74); +x_78 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_62, x_76, x_63, x_75, x_77, x_3, x_4, x_5, x_6, x_74); return x_78; } } diff --git a/stage0/stdlib/Lean/Meta/Tactic/Split.c b/stage0/stdlib/Lean/Meta/Tactic/Split.c index c5ac2fee7b..0516d3ac50 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Split.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Split.c @@ -169,6 +169,7 @@ LEAN_EXPORT lean_object* l_Lean_Meta_splitTarget_x3f___lambda__1(lean_object*, u lean_object* l_Lean_throwError___at_Lean_Expr_abstractRangeM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_Split_simpMatch___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Array_anyMUnsafe_any___at___private_Lean_Meta_RecursorInfo_0__Lean_Meta_checkMotive___spec__1(lean_object*, size_t, size_t); static lean_object* l_Lean_Meta_Split_isDiscrGenException___closed__1; static lean_object* l_List_forIn_x27_loop___at___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_generalizeMatchDiscrs_mkNewTarget___spec__3___closed__3; @@ -420,7 +421,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Meta_Tactic_Split_0__Lean_Meta_Split_g size_t lean_usize_sub(size_t, size_t); lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_Meta_Split_simpMatch___lambda__2___closed__1; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Split___hyg_7138____closed__17; LEAN_EXPORT lean_object* l_Lean_Meta_splitLocalDecl_x3f___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); @@ -2482,7 +2482,7 @@ lean_closure_set(x_26, 5, x_3); lean_closure_set(x_26, 6, x_21); x_27 = 0; x_28 = 0; -x_29 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_17, x_27, x_24, x_26, x_28, x_7, x_8, x_9, x_10, x_25); +x_29 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_17, x_27, x_24, x_26, x_28, x_7, x_8, x_9, x_10, x_25); return x_29; } else @@ -3010,7 +3010,7 @@ lean_closure_set(x_38, 5, x_2); lean_closure_set(x_38, 6, x_3); x_39 = 0; x_40 = 0; -x_41 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_37, x_39, x_35, x_38, x_40, x_7, x_8, x_9, x_10, x_36); +x_41 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_37, x_39, x_35, x_38, x_40, x_7, x_8, x_9, x_10, x_36); return x_41; } else @@ -3474,7 +3474,7 @@ lean_closure_set(x_159, 5, x_2); lean_closure_set(x_159, 6, x_3); x_160 = 0; x_161 = 0; -x_162 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_158, x_160, x_156, x_159, x_161, x_7, x_8, x_9, x_10, x_157); +x_162 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_158, x_160, x_156, x_159, x_161, x_7, x_8, x_9, x_10, x_157); return x_162; } else diff --git a/stage0/stdlib/Lean/Meta/Tactic/Subst.c b/stage0/stdlib/Lean/Meta/Tactic/Subst.c index 139bb245f9..75e5aae3a0 100644 --- a/stage0/stdlib/Lean/Meta/Tactic/Subst.c +++ b/stage0/stdlib/Lean/Meta/Tactic/Subst.c @@ -82,6 +82,7 @@ static lean_object* l_Lean_Meta_substCore___lambda__21___closed__20; static lean_object* l_Lean_Meta_substCore___lambda__21___closed__18; LEAN_EXPORT lean_object* l_Lean_Meta_substCore___lambda__4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Meta_substVar___lambda__2___closed__1; +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Meta_substCore___lambda__21___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); static lean_object* l_Lean_Meta_initFn____x40_Lean_Meta_Tactic_Subst___hyg_3839____closed__13; @@ -228,7 +229,6 @@ LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_substVar___ lean_object* lean_array_mk(lean_object*); static lean_object* l_Lean_Meta_substCore___lambda__21___closed__9; LEAN_EXPORT lean_object* l_Lean_Meta_substCore___lambda__16(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_substSomeVar_x3f___spec__5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Meta_substVar___spec__5___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2875,7 +2875,7 @@ lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); -x_101 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_98, x_99, x_95, x_97, x_100, x_15, x_16, x_17, x_18, x_96); +x_101 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_98, x_99, x_95, x_97, x_100, x_15, x_16, x_17, x_18, x_96); if (lean_obj_tag(x_101) == 0) { lean_object* x_102; lean_object* x_103; lean_object* x_104; @@ -3196,7 +3196,7 @@ lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); -x_149 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_146, x_147, x_143, x_145, x_148, x_15, x_16, x_17, x_18, x_144); +x_149 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_146, x_147, x_143, x_145, x_148, x_15, x_16, x_17, x_18, x_144); if (lean_obj_tag(x_149) == 0) { lean_object* x_150; lean_object* x_151; lean_object* x_152; @@ -3702,7 +3702,7 @@ lean_inc(x_18); lean_inc(x_17); lean_inc(x_16); lean_inc(x_15); -x_228 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_225, x_226, x_222, x_224, x_227, x_15, x_16, x_17, x_18, x_223); +x_228 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_225, x_226, x_222, x_224, x_227, x_15, x_16, x_17, x_18, x_223); if (lean_obj_tag(x_228) == 0) { lean_object* x_229; lean_object* x_230; lean_object* x_231; diff --git a/stage0/stdlib/Lean/Parser/Command.c b/stage0/stdlib/Lean/Parser/Command.c index 7ff4cf2a31..fd8cfef081 100644 --- a/stage0/stdlib/Lean/Parser/Command.c +++ b/stage0/stdlib/Lean/Parser/Command.c @@ -23,9 +23,9 @@ static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__12; lean_object* l_Lean_Parser_sepByIndent_parenthesizer___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_Term_binderTactic_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_computedFields___closed__13; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__6; static lean_object* l_Lean_Parser_Command_declValSimple___closed__12; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_universe_declRange__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__6; lean_object* l_Lean_Parser_many1_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_register__tactic__tag_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_initialize_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -40,10 +40,10 @@ static lean_object* l_Lean_Parser_Tactic_open___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiersT_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__4; static lean_object* l_Lean_Parser_Command_declId_formatter___closed__11; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__53; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_nonrec_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__8; -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135_(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_addDocString_formatter__1(lean_object*); static lean_object* l_Lean_Parser_Command_tactic__extension___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_synth_formatter__1___closed__1; @@ -59,8 +59,8 @@ static lean_object* l_Lean_Parser_Tactic_open_formatter___closed__5; static lean_object* l_Lean_Parser_Command_structure___closed__11; static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_quot_declRange__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__15; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange__1___closed__6; static lean_object* l_Lean_Parser_Command_openSimple___closed__6; static lean_object* l_Lean_Parser_Command_variable_parenthesizer___closed__6; @@ -134,7 +134,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__12; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__3; static lean_object* l_Lean_Parser_Command_print___closed__5; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__17; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__12; static lean_object* l_Lean_Parser_Command_instance_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_formatter__1___closed__2; @@ -150,6 +149,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_eoi; static lean_object* l_Lean_Parser_Command_declSig_formatter___closed__1; static lean_object* l_Lean_Parser_Command_axiom_formatter___closed__4; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48; static lean_object* l_Lean_Parser_Command_import___closed__1; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange__1___closed__2; @@ -186,11 +186,11 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_addDocString_declRange__1 static lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange__1___closed__7; static lean_object* l_Lean_Parser_Command_printEqns_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_structFields___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__29; static lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_structureTk_parenthesizer__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_in; static lean_object* l_Lean_Parser_Command_computedField_formatter___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__52; static lean_object* l_Lean_Parser_Command_theorem_parenthesizer___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange__1___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_where_parenthesizer__1___closed__1; @@ -252,7 +252,6 @@ static lean_object* l_Lean_Parser_Command_declModifiers___closed__7; static lean_object* l_Lean_Parser_Command_omit___closed__5; static lean_object* l_Lean_Parser_Command_declModifiers___closed__14; static lean_object* l_Lean_Parser_Tactic_open___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__27; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_structSimpleBinder_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__1; @@ -264,6 +263,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_formatter_ static lean_object* l_Lean_Parser_Command_namedPrio___closed__6; static lean_object* l_Lean_Parser_Command_printTacTags_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_tactic__extension___closed__7; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__20; static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__11; static lean_object* l_Lean_Parser_Command_universe_formatter___closed__2; lean_object* l_Lean_PrettyPrinter_Formatter_orelse_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -275,6 +275,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_register__tactic__tag_dec static lean_object* l___regBuiltin_Lean_Parser_Command_version_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_addDocString___closed__3; static lean_object* l_Lean_Parser_Command_moduleDoc_formatter___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50; static lean_object* l___regBuiltin_Lean_Parser_Command_eval_docString__1___closed__1; static lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_tactic__extension_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -369,6 +370,7 @@ static lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___c static lean_object* l_Lean_Parser_Command_declSig___closed__9; static lean_object* l_Lean_Parser_Command_optDefDeriving_formatter___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_omit_parenthesizer__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__36; static lean_object* l_Lean_Parser_Command_deriving___closed__11; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__6; static lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__3; @@ -388,6 +390,7 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_eraseAttr_formatter(lean_object*, static lean_object* l_Lean_Parser_Command_whereStructInst___closed__20; static lean_object* l___regBuiltin_Lean_Parser_Command_opaque_formatter__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange__1___closed__4; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3092_(lean_object*); static lean_object* l_Lean_Parser_Command_synth_formatter___closed__2; static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__12; static lean_object* l_Lean_Parser_Command_theorem___closed__9; @@ -415,12 +418,10 @@ static lean_object* l_Lean_Parser_Tactic_set__option_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_exit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__6; -extern lean_object* l_Lean_Parser_Term_structInst; static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__3; static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__3; static lean_object* l_Lean_Parser_Command_include___closed__4; static lean_object* l_Lean_Parser_Command_partial___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__13; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_synth_formatter___closed__1; static lean_object* l_Lean_Parser_Command_definition_formatter___closed__6; @@ -456,14 +457,12 @@ static lean_object* l_Lean_Parser_Command_attribute___closed__15; static lean_object* l_Lean_Parser_Command_section___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_axiom_formatter__1___closed__2; lean_object* l_Lean_Parser_leadingNode(lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__38; static lean_object* l_Lean_Parser_Command_private_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_namedPrio___closed__21; static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__8; static lean_object* l_Lean_Parser_Command_classInductive___closed__10; static lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_structure_formatter___closed__4; -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_end_declRange__1___closed__2; static lean_object* l_Lean_Parser_Term_set__option_formatter___closed__3; static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__5; @@ -492,7 +491,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer__1 static lean_object* l___regBuiltin_Lean_Parser_Command_export_declRange__1___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_check_parenthesizer__1(lean_object*); lean_object* l_Lean_Parser_group_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__23; static lean_object* l_Lean_Parser_Command_structureTk_formatter___closed__2; static lean_object* l_Lean_Parser_Command_openHiding_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declBody___closed__2; @@ -522,7 +520,6 @@ static lean_object* l_Lean_Parser_Command_declValSimple___closed__1; static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Term_set__option___closed__5; static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__42; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_eval__1(lean_object*); static lean_object* l_Lean_Parser_Command_eraseAttr___closed__5; static lean_object* l_Lean_Parser_Command_initializeKeyword___closed__11; @@ -581,6 +578,7 @@ static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_declRange__1___closed__5; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structFields_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_quot_parenthesizer__1___closed__3; +static lean_object* l_Lean_Parser_Command_classInductive___closed__17; static lean_object* l_Lean_Parser_Command_opaque___closed__4; static lean_object* l_Lean_Parser_Command_opaque___closed__7; static lean_object* l_Lean_Parser_Command_structSimpleBinder_parenthesizer___closed__3; @@ -588,6 +586,7 @@ static lean_object* l_Lean_Parser_Command_moduleDoc___closed__4; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__10; static lean_object* l_Lean_Parser_Command_noncomputableSection_formatter___closed__7; static lean_object* l_Lean_Parser_Command_open___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__26; lean_object* l_instDecidableEqChar___boxed(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__5; @@ -599,6 +598,7 @@ static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___close static lean_object* l_Lean_Parser_Command_structInstBinder___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange__1___closed__3; static lean_object* l_Lean_Parser_Command_openRenaming___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__11; static lean_object* l_Lean_Parser_Command_moduleDoc_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems_docString__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_declRange__1___closed__2; @@ -616,6 +616,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_printAxioms_declRange__1_ static lean_object* l_Lean_Parser_Command_end___closed__3; static lean_object* l_Lean_Parser_Command_register__tactic__tag_formatter___closed__2; static lean_object* l_Lean_Parser_Command_computedField___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__44; static lean_object* l_Lean_Parser_Command_nonrec___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_declRange__1___closed__2; static lean_object* l_Lean_Parser_Command_openRenamingItem_parenthesizer___closed__2; @@ -627,7 +628,6 @@ static lean_object* l_Lean_Parser_Command_extends_formatter___closed__5; lean_object* l_Lean_Parser_nonReservedSymbol(lean_object*, uint8_t); static lean_object* l_Lean_Parser_Command_tactic__extension___closed__3; static lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__54; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_print; @@ -646,7 +646,6 @@ static lean_object* l_Lean_Parser_Command_printEqns_formatter___closed__2; static lean_object* l_Lean_Parser_Command_section___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_eval_declRange__1___closed__5; lean_object* l_Lean_Parser_ppDedent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__19; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__19; static lean_object* l_Lean_Parser_Command_mutual_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_import_formatter__1___closed__1; @@ -659,11 +658,12 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_register__tactic__tag_par static lean_object* l___regBuiltin_Lean_Parser_Command_where_parenthesizer__1___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_variable_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_structImplicitBinder_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__38; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structureTk_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structFields_formatter__1(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_ctor_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___closed__8; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__5; static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_openRenaming_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_eoi_parenthesizer__1___closed__2; @@ -674,18 +674,19 @@ lean_object* l_Lean_Parser_andthenFn(lean_object*, lean_object*, lean_object*, l static lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__2; static lean_object* l_Lean_Parser_Command_classInductive___closed__11; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__45; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__6; static lean_object* l_Lean_Parser_Command_instance___closed__1; static lean_object* l_Lean_Parser_Command_whereStructInst_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_evalBang_parenthesizer__1___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange__1(lean_object*); static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__13; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__4; static lean_object* l_Lean_Parser_Command_import___closed__2; static lean_object* l_Lean_Parser_Command_namedPrio___closed__4; static lean_object* l_Lean_Parser_Command_declModifiers___closed__4; static lean_object* l_Lean_Parser_Command_register__tactic__tag_formatter___closed__7; lean_object* l_Lean_Parser_withOpenFn(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__51; lean_object* l_Lean_Parser_withOpen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_abbrev___closed__8; static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__2; @@ -779,7 +780,6 @@ static lean_object* l_Lean_Parser_Command_noncomputable___closed__7; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving; static lean_object* l_Lean_Parser_Command_optionValue___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange__1___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__8; LEAN_EXPORT lean_object* l_Lean_Parser_Command_noncomputableSection; static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWs___closed__1; @@ -789,6 +789,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_namespace_declRange__1___ static lean_object* l_Lean_Parser_Command_declId___closed__14; LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDeriving_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_nonrec_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__5; static lean_object* l_Lean_Parser_Command_optNamedPrio___closed__1; static lean_object* l_Lean_Parser_Command_printAxioms___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_import_formatter__1(lean_object*); @@ -801,6 +802,7 @@ static lean_object* l_Lean_Parser_Command_nonrec_formatter___closed__1; static lean_object* l_Lean_Parser_Command_noncomputableSection___closed__4; static lean_object* l_Lean_Parser_Command_optDeriving___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_mutual_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__22; static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__2; static lean_object* l_Lean_Parser_Command_quot_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__11; @@ -847,6 +849,7 @@ static lean_object* l_Lean_Parser_Tactic_set__option___closed__7; lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__2; lean_object* l_Lean_Parser_setExpected(lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__33; static lean_object* l_Lean_Parser_Command_in_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_include___closed__8; @@ -860,13 +863,13 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_declRange__1_ static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_structFields_formatter__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_formatter__1___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__8; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__6; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_eoi_formatter___closed__2; static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__7; lean_object* l_Lean_Parser_termParser_formatter___rarg(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_eoi_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__30; static lean_object* l___regBuiltin_Lean_Parser_Command_structFields_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_declBody___closed__4; static lean_object* l_Lean_Parser_Command_eoi___closed__4; @@ -890,7 +893,6 @@ static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_import_declRange__1___closed__5; static lean_object* l_Lean_Parser_Command_variable___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_register__tactic__tag_declRange__1___closed__7; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__8; static lean_object* l_Lean_Parser_Command_partial_formatter___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structInstBinder_parenthesizer__1(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_formatter__1___closed__1; @@ -1087,7 +1089,6 @@ static lean_object* l_Lean_Parser_Command_printEqns_formatter___closed__3; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__9; static lean_object* l_Lean_Parser_Command_definition_formatter___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_genInjectiveTheorems_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__49; static lean_object* l___regBuiltin_Lean_Parser_Command_openOnly_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_instance___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange__1___closed__4; @@ -1134,7 +1135,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_protected_formatter__1___ static lean_object* l_Lean_Parser_Command_declaration___closed__13; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__2; lean_object* l_Lean_Parser_mkAntiquot_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_openScoped___closed__4; static lean_object* l_Lean_Parser_Command_open___closed__4; static lean_object* l_Lean_Parser_Command_ctor_formatter___closed__7; @@ -1144,13 +1144,10 @@ static lean_object* l_Lean_Parser_Command_structFields___closed__6; static lean_object* l_Lean_Parser_Command_quot_formatter___closed__7; static lean_object* l_Lean_Parser_Command_structInstBinder_formatter___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_where_formatter__1(lean_object*); -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_open_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__3; static lean_object* l_Lean_Parser_Command_print___closed__2; static lean_object* l_Lean_Parser_Command_partial___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__39; -lean_object* l_Lean_Parser_Term_structInst_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_printEqns___closed__12; static lean_object* l_Lean_Parser_Command_printEqns_parenthesizer___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_open_parenthesizer__1(lean_object*); @@ -1158,7 +1155,6 @@ static lean_object* l_Lean_Parser_Command_declValEqns_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__23; static lean_object* l___regBuiltin_Lean_Parser_Command_declaration_declRange__1___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_tactic__extension_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__7; static lean_object* l_Lean_Parser_Term_quot___closed__17; static lean_object* l_Lean_Parser_Command_printEqns___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_check_formatter__1___closed__2; @@ -1180,7 +1176,6 @@ static lean_object* l_Lean_Parser_Term_quot___closed__16; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Command_ctor___closed__2; static lean_object* l_Lean_Parser_Command_mutual_formatter___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__15; static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__8; lean_object* l_Lean_Parser_strLit_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__4; @@ -1215,7 +1210,6 @@ lean_object* l_Lean_Parser_notSymbol_parenthesizer___boxed(lean_object*, lean_ob static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_parenthesizer__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_structCtor_parenthesizer__1___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__37; static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_structExplicitBinder_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_optionValue_parenthesizer___closed__4; @@ -1249,6 +1243,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_structInstBinder_formatte LEAN_EXPORT lean_object* l_Lean_Parser_Command_structFields; static lean_object* l_Lean_Parser_Command_in_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__24; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_check__failure___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange__1___closed__4; @@ -1257,6 +1252,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_import_declRange__1___clo static lean_object* l_Lean_Parser_Command_classInductive_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Term_set__option___closed__8; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__17; static lean_object* l_Lean_Parser_Command_structure___closed__15; static lean_object* l_Lean_Parser_Command_computedField___closed__7; static lean_object* l_Lean_Parser_Command_optDeriving___closed__2; @@ -1270,7 +1266,6 @@ static lean_object* l_Lean_Parser_Command_extends___closed__1; static lean_object* l_Lean_Parser_Command_declId___closed__19; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__6; static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange__1___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange__1___closed__2; @@ -1289,6 +1284,7 @@ static lean_object* l_Lean_Parser_Command_optDeriving___closed__7; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__15; static lean_object* l___regBuiltin_Lean_Parser_Command_print_declRange__1___closed__2; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__7; static lean_object* l_Lean_Parser_Command_import_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__5; static lean_object* l_Lean_Parser_Term_open___closed__1; @@ -1356,7 +1352,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer(lean static lean_object* l___regBuiltin_Lean_Parser_Command_instance_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_addDocString___closed__2; static lean_object* l_Lean_Parser_Command_openOnly___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__25; static lean_object* l_Lean_Parser_Command_extends___closed__8; static lean_object* l_Lean_Parser_Command_structInstBinder_formatter___closed__5; static lean_object* l_Lean_Parser_Command_classInductive___closed__1; @@ -1450,6 +1445,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection static lean_object* l_Lean_Parser_Command_export___closed__3; static lean_object* l_Lean_Parser_Command_opaque___closed__6; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__40; static lean_object* l___regBuiltin_Lean_Parser_Command_whereStructField_formatter__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_derivingClasses; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange__1___closed__1; @@ -1470,6 +1466,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange__1___closed LEAN_EXPORT lean_object* l_Lean_Parser_Term_precheckedQuot_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_partial_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_universe_formatter___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__21; static lean_object* l_Lean_Parser_Command_register__tactic__tag_parenthesizer___closed__4; lean_object* l_Lean_Parser_Term_binderIdent_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_declVal_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -1507,10 +1504,10 @@ static lean_object* l_Lean_Parser_Tactic_set__option___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_printTacTags_formatter__1___closed__2; static lean_object* l_Lean_Parser_Command_openOnly_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_unsafe_formatter__1___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__41; static lean_object* l_Lean_Parser_Command_openRenamingItem_formatter___closed__1; static lean_object* l_Lean_Parser_Command_quot___closed__7; static lean_object* l_Lean_Parser_Command_whereStructField___closed__1; -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_initialize_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Term_quot_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_printEqns_formatter__1___closed__1; @@ -1571,7 +1568,6 @@ static lean_object* l_Lean_Parser_Command_inductive___closed__14; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__17; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__2; static lean_object* l_Lean_Parser_Command_namespace_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_init__quot__1(lean_object*); static lean_object* l_Lean_Parser_Command_optDeriving_formatter___closed__3; @@ -1588,7 +1584,6 @@ static lean_object* l_Lean_Parser_Command_printAxioms_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_formatter__1___closed__2; static lean_object* l_Lean_Parser_Command_eraseAttr___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_eoi_parenthesizer__1(lean_object*); -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__9; static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declId___closed__17; static lean_object* l___regBuiltin_Lean_Parser_Term_open_declRange__1___closed__3; @@ -1638,6 +1633,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_deriving__1(lean_obj LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_tactic__extension_declRange__1(lean_object*); static lean_object* l_Lean_Parser_Command_register__tactic__tag_formatter___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_whereStructInst_parenthesizer__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__47; static lean_object* l_Lean_Parser_Command_structureTk_formatter___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openOnly_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_structSimpleBinder_formatter___closed__4; @@ -1677,9 +1673,9 @@ static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_declId___closed__12; extern lean_object* l_Lean_Parser_Term_attrKind; static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__36; static lean_object* l_Lean_Parser_Command_whereStructInst___closed__24; LEAN_EXPORT lean_object* l_Lean_Parser_Command_import_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__42; lean_object* l_Lean_ppLine_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_inductive_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_where___closed__2; @@ -1720,7 +1716,6 @@ static lean_object* l_Lean_Parser_Command_addDocString___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_set__option_parenthesizer__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange__1___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_nonrec_formatter__1(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__10; static lean_object* l_Lean_Parser_Tactic_set__option___closed__9; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declId___lambda__1___boxed(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_eval_declRange__1___closed__3; @@ -1733,6 +1728,7 @@ LEAN_EXPORT uint8_t l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipU static lean_object* l___regBuiltin_Lean_Parser_Command_structSimpleBinder_formatter__1___closed__1; lean_object* l_Lean_Parser_notFollowedBy(lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__37; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange__1(lean_object*); static lean_object* l_Lean_Parser_Command_set__option_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_theorem_formatter__1(lean_object*); @@ -1740,7 +1736,6 @@ static lean_object* l_Lean_Parser_Command_omit_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_structureTk_formatter___closed__3; static lean_object* l_Lean_Parser_Command_declBody___closed__5; static lean_object* l_Lean_Parser_Command_abbrev___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__51; static lean_object* l_Lean_Parser_Command_noncomputable___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_attribute___closed__7; @@ -1773,10 +1768,10 @@ static lean_object* l_Lean_Parser_Command_version___closed__5; static lean_object* l_Lean_Parser_Command_definition_formatter___closed__4; static lean_object* l_Lean_Parser_Command_structFields___closed__13; static lean_object* l_Lean_Parser_Command_declVal___closed__4; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__32; LEAN_EXPORT lean_object* l_Lean_Parser_Command_addDocString; static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___closed__7; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__33; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openDecl; static lean_object* l_Lean_Parser_Command_inductive_formatter___closed__11; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__5; @@ -1815,12 +1810,10 @@ static lean_object* l_Lean_Parser_Command_printEqns___closed__9; static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__13; lean_object* l_Lean_Parser_symbol_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_whereStructInst___closed__16; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__9; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_abbrev_formatter__1(lean_object*); static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__6; static lean_object* l_Lean_Parser_Command_section_formatter___closed__1; static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__8; -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7; static lean_object* l_Lean_Parser_Command_eraseAttr_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputable_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_computedField___closed__2; @@ -1860,7 +1853,6 @@ static lean_object* l_Lean_Parser_Command_optDeclSig___closed__4; static lean_object* l_Lean_Parser_Tactic_open___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structExplicitBinder_formatter__1(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_parenthesizer__1___closed__2; -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_version___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_register__tactic__tag_declRange__1___closed__2; static lean_object* l_Lean_Parser_Command_partial___closed__3; @@ -1870,6 +1862,7 @@ static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__4; static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__14; static lean_object* l___regBuiltin_Lean_Parser_Command_declaration_declRange__1___closed__2; static lean_object* l_Lean_Parser_Command_noncomputableSection_formatter___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__49; static lean_object* l_Lean_Parser_Command_inductive___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open__1___closed__2; static lean_object* l_Lean_Parser_Command_printAxioms_parenthesizer___closed__2; @@ -1904,10 +1897,12 @@ static lean_object* l_Lean_Parser_Command_evalBang___closed__5; static lean_object* l_Lean_Parser_Command_quot_formatter___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_structExplicitBinder_parenthesizer___closed__11; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__12; static lean_object* l_Lean_Parser_Command_openRenaming___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structCtor; static lean_object* l___regBuiltin_Lean_Parser_Command_abbrev_parenthesizer__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openDecl_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__29; extern lean_object* l_Lean_Parser_Command_docComment; static lean_object* l_Lean_Parser_Command_openRenaming___closed__12; static lean_object* l_Lean_Parser_Command_deriving_parenthesizer___closed__2; @@ -1923,7 +1918,6 @@ static lean_object* l_Lean_Parser_Command_opaque___closed__5; static lean_object* l_Lean_Parser_Command_deriving___closed__5; static lean_object* l_Lean_Parser_Command_declSig_formatter___closed__4; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__7; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange__1___closed__3; static lean_object* l_Lean_Parser_Command_ctor___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_declId_parenthesizer__1___closed__1; @@ -1942,6 +1936,7 @@ static lean_object* l_Lean_Parser_Command_eoi_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange__1___closed__6; static lean_object* l___regBuiltin_Lean_Parser_Command_openDecl_docString__1___closed__2; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declBody; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__25; static lean_object* l_Lean_Parser_Command_unsafe_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Term_quot_formatter___closed__4; @@ -1980,7 +1975,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_inductive_parenthesizer(lean_obje static lean_object* l___regBuiltin_Lean_Parser_Command_evalBang_formatter__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_structure_parenthesizer__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_import_declRange__1___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48; static lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntilWsOrDelim___closed__1; static lean_object* l_Lean_Parser_Command_synth___closed__9; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__9; @@ -1988,6 +1982,7 @@ static lean_object* l_Lean_Parser_Command_structFields___closed__11; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__11; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declModifiersF; static lean_object* l_Lean_Parser_Command_deriving___closed__15; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__9; static lean_object* l_Lean_Parser_Tactic_set__option_formatter___closed__3; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__2; static lean_object* l_Lean_Parser_Command_tactic__extension___closed__4; @@ -2004,7 +1999,7 @@ static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__15; static lean_object* l_Lean_Parser_Command_attribute___closed__4; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer__1(lean_object*); -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3111_(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__54; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_export_formatter__1(lean_object*); static lean_object* l_Lean_Parser_Command_moduleDoc_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_classInductive___closed__15; @@ -2056,6 +2051,7 @@ static lean_object* l_Lean_Parser_Command_print_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declValEqns_formatter__1(lean_object*); static lean_object* l_Lean_Parser_Command_initialize___closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_initializeKeyword_parenthesizer__1___closed__2; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__46; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_noncomputable_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems_parenthesizer___closed__3; @@ -2076,6 +2072,7 @@ static lean_object* l_Lean_Parser_Command_declModifiers_parenthesizer___closed__ lean_object* l_Lean_Parser_many_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_noncomputableSection_parenthesizer___closed__7; lean_object* l_Lean_Parser_Term_attributes_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__10; LEAN_EXPORT lean_object* l_Lean_Parser_Command_structExplicitBinder; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__5; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__5; @@ -2097,6 +2094,7 @@ static lean_object* l_Lean_Parser_Command_structureTk___closed__7; static lean_object* l_Lean_Parser_Command_definition_parenthesizer___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange__1___closed__7; static lean_object* l_Lean_Parser_Command_ctor___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__13; static lean_object* l___regBuiltin_Lean_Parser_Command_noncomputableSection_formatter__1___closed__2; static lean_object* l_Lean_Parser_Command_axiom___closed__9; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__1; @@ -2156,11 +2154,11 @@ static lean_object* l_Lean_Parser_Command_instance_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Term_quot___closed__4; static lean_object* l_Lean_Parser_Command_printTacTags_formatter___closed__5; static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__8; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__28; static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__1; static lean_object* l_Lean_Parser_Command_opaque___closed__8; static lean_object* l_Lean_Parser_Command_inductive___closed__12; static lean_object* l___regBuiltin_Lean_Parser_Command_unsafe_formatter__1___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__22; static lean_object* l___regBuiltin_Lean_Parser_Command_computedFields_parenthesizer__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange__1___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_computedFields_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -2291,7 +2289,6 @@ static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__8; static lean_object* l___regBuiltin_Lean_Parser_Command_structCtor_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_register__tactic__tag___closed__13; static lean_object* l_Lean_Parser_Command_structExplicitBinder___closed__13; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__47; LEAN_EXPORT lean_object* l_Lean_Parser_Command_declaration_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__14; static lean_object* l_Lean_Parser_Command_omit___closed__10; @@ -2333,7 +2330,6 @@ static lean_object* l_Lean_Parser_Command_structImplicitBinder_formatter___close lean_object* l_Lean_Parser_atomic(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_instance; static lean_object* l___regBuiltin_Lean_Parser_Command_open_docString__1___closed__1; -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__3; lean_object* l_Lean_Parser_ident_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_abbrev___closed__5; static lean_object* l_Lean_Parser_Command_namespace___closed__1; @@ -2397,6 +2393,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_universe_formatter__ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declId_formatter__1(lean_object*); static lean_object* l_Lean_Parser_Command_moduleDoc_formatter___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_omit_formatter__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_declVal_docString__1___closed__3; static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__4; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__1; @@ -2433,13 +2430,11 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_eoi_parenthesizer__1___cl LEAN_EXPORT lean_object* l_Lean_Parser_Command_synth_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_moduleDoc___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange__1___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__26; static lean_object* l___regBuiltin_Lean_Parser_Term_precheckedQuot_declRange__1___closed__7; static lean_object* l_Lean_Parser_Command_printEqns_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_computedField_formatter__1___closed__1; lean_object* l_Lean_ppDedent_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_universe___closed__1; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_declId___closed__8; static lean_object* l_Lean_Parser_Command_openOnly___closed__1; @@ -2450,12 +2445,10 @@ static lean_object* l_Lean_Parser_Command_end___closed__7; static lean_object* l_Lean_Parser_Command_tactic__extension___closed__2; static lean_object* l_Lean_Parser_Term_set__option___closed__7; static lean_object* l_Lean_Parser_Command_init__quot_formatter___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__52; static lean_object* l_Lean_Parser_Command_opaque___closed__12; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_formatter__1(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_in_declRange__1___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_eraseAttr_parenthesizer__1___closed__1; -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__4; static lean_object* l_Lean_Parser_Command_openOnly___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_section_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__5; @@ -2498,16 +2491,15 @@ static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange__1___closed static lean_object* l_Lean_Parser_Command_eval___closed__2; static lean_object* l_Lean_Parser_Command_abbrev_formatter___closed__4; static lean_object* l_Lean_Parser_Command_check___closed__6; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__43; static lean_object* l_Lean_Parser_Command_structure_formatter___closed__9; static lean_object* l_Lean_Parser_Command_openDecl_formatter___closed__2; static lean_object* l_Lean_Parser_Command_openHiding_formatter___closed__7; static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_openSimple_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_exit_formatter___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__53; static lean_object* l_Lean_Parser_Command_moduleDoc_parenthesizer___closed__7; lean_object* l_Lean_ppSpace_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__31; LEAN_EXPORT lean_object* l_Lean_Parser_Command_initialize; static lean_object* l_Lean_Parser_Command_openDecl___closed__4; static lean_object* l_Lean_Parser_Command_declValSimple_formatter___closed__4; @@ -2549,7 +2541,6 @@ static lean_object* l_Lean_Parser_Command_opaque_formatter___closed__1; static lean_object* l_Lean_Parser_Command_check__failure_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_computedField___closed__10; static lean_object* l_Lean_Parser_Tactic_open_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__20; static lean_object* l___regBuiltin_Lean_Parser_Command_check__failure_declRange__1___closed__3; static lean_object* l_Lean_Parser_Command_eval___closed__3; static lean_object* l_Lean_Parser_Command_namedPrio___closed__9; @@ -2567,7 +2558,6 @@ LEAN_EXPORT lean_object* l_Lean_Parser_Command_universe_parenthesizer(lean_objec LEAN_EXPORT lean_object* l_Lean_Parser_Command_printTacTags_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_initialize_declRange__1___closed__5; static lean_object* l_Lean_Parser_Tactic_open_parenthesizer___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__3; static lean_object* l_Lean_Parser_Command_version___closed__4; static lean_object* l_Lean_Parser_Command_openScoped_parenthesizer___closed__4; static lean_object* l_Lean_Parser_Command_inductive___closed__4; @@ -2607,6 +2597,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_nonrec_formatter__1___clo static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange__1___closed__5; static lean_object* l_Lean_Parser_Command_printTacTags___closed__12; lean_object* l_Lean_Parser_sepBy1_formatter___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__27; static lean_object* l_Lean_Parser_Command_theorem_formatter___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_section_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_optDeriving___closed__6; @@ -2676,6 +2667,7 @@ static lean_object* l_Lean_Parser_Command_structImplicitBinder___closed__5; static lean_object* l_Lean_Parser_Command_mutual___closed__14; static lean_object* l_Lean_Parser_Command_ctor_parenthesizer___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_theorem_parenthesizer__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_open_declRange__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_eval; static lean_object* l_Lean_Parser_Command_whereStructField___closed__5; @@ -2723,7 +2715,6 @@ static lean_object* l_Lean_Parser_Command_structInstBinder_formatter___closed__1 static lean_object* l_Lean_Parser_Command_structure_formatter___closed__8; static lean_object* l_Lean_Parser_Command_omit_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declValEqns_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openDecl_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_namedPrio___closed__20; static lean_object* l___regBuiltin_Lean_Parser_Command_openRenaming_formatter__1___closed__1; @@ -2764,7 +2755,6 @@ static lean_object* l_Lean_Parser_Command_optDefDeriving_parenthesizer___closed_ static lean_object* l___regBuiltin_Lean_Parser_Command_register__tactic__tag_formatter__1___closed__2; static lean_object* l_Lean_Parser_Command_whereStructInst_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_addDocString___closed__8; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__34; static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__4; lean_object* l_Lean_Parser_ppGroup_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_initialize___closed__10; @@ -2779,6 +2769,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_ extern lean_object* l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; static lean_object* l_Lean_Parser_Command_declValSimple_parenthesizer___closed__7; lean_object* l_Lean_Parser_withAntiquotSpliceAndSuffix(lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__35; static lean_object* l_Lean_Parser_Command_evalBang_formatter___closed__4; static lean_object* l_Lean_Parser_Command_set__option_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_quot_formatter__1___closed__2; @@ -2805,11 +2796,9 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_universe_docString__1___c static lean_object* l_Lean_Parser_Command_declId_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_quot_declRange__1___closed__7; -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_formatter__1___closed__1; lean_object* l_Lean_Parser_Term_instBinder_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_withoutPosition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__40; static lean_object* l_Lean_Parser_Command_addDocString_formatter___closed__5; static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__2; static lean_object* l_Lean_Parser_Command_variable___closed__6; @@ -2822,7 +2811,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_genInjectiveTheorems LEAN_EXPORT lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Term_quot_parenthesizer___closed__8; lean_object* l_Lean_Parser_unicodeSymbol_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__12; static lean_object* l_Lean_Parser_Command_optDeriving_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_in___closed__2; static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__1; @@ -2898,7 +2886,6 @@ static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__4; static lean_object* l_Lean_Parser_Command_extends_parenthesizer___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Tactic_open_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_optDeclSig___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__46; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_namespace_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_deriving_formatter___closed__5; static lean_object* l_Lean_Parser_Command_ctor___closed__11; @@ -2909,6 +2896,7 @@ static lean_object* l_Lean_Parser_Command_export_formatter___closed__4; LEAN_EXPORT lean_object* l_Lean_Parser_Command_private_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_register__tactic__tag__1(lean_object*); static lean_object* l_Lean_Parser_Command_structFields___closed__16; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__16; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structCtor_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_in_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_tactic__extension_declRange__1___closed__7; @@ -2926,6 +2914,7 @@ lean_object* l_Lean_Parser_many1(lean_object*); static lean_object* l_Lean_Parser_Command_example___closed__3; static lean_object* l_Lean_Parser_Command_synth_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_parenthesizer__1___closed__2; +static lean_object* l_Lean_Parser_Command_classInductive___closed__18; static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_parenthesizer__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange__1___closed__6; static lean_object* l_Lean_Parser_Command_declId_formatter___closed__8; @@ -2937,7 +2926,6 @@ static lean_object* l_Lean_Parser_Command_optDeclSig_parenthesizer___closed__10; static lean_object* l_Lean_Parser_Command_partial_parenthesizer___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_eraseAttr_formatter__1(lean_object*); static lean_object* l_Lean_Parser_Command_unsafe___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__31; LEAN_EXPORT lean_object* l_Lean_Parser_Command_genInjectiveTheorems; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_attribute_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3029,11 +3017,10 @@ static lean_object* l_Lean_Parser_Command_quot___closed__5; static lean_object* l_Lean_Parser_Command_check___closed__3; LEAN_EXPORT lean_object* l_Lean_Parser_Command_protected; static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__39; static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_print_formatter___closed__1; static lean_object* l_Lean_Parser_Command_private___closed__2; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__18; static lean_object* l_Lean_Parser_Command_end___closed__6; lean_object* l_Lean_PrettyPrinter_Formatter_andthen_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_namedPrio_formatter___closed__8; @@ -3050,12 +3037,12 @@ static lean_object* l_Lean_Parser_Command_export___closed__9; static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__2; lean_object* l_Lean_Parser_Command_commentBody_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_orelse_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__41; static lean_object* l_Lean_Parser_Command_definition___closed__9; static lean_object* l_Lean_Parser_Command_declaration_parenthesizer___closed__3; lean_object* l_Lean_Parser_Tactic_tacticSeq_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__8; static lean_object* l_Lean_Parser_Term_quot_formatter___closed__6; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__14; static lean_object* l_Lean_Parser_Command_print___closed__10; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_computedFields_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Term_precheckedQuot___closed__8; @@ -3077,7 +3064,6 @@ static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_openOnly_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_structFields___closed__1; static lean_object* l_Lean_Parser_Command_whereStructField_parenthesizer___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__24; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__5; lean_object* l_Lean_Parser_sepBy(lean_object*, lean_object*, lean_object*, uint8_t); static lean_object* l_Lean_Parser_Command_structInstBinder_parenthesizer___closed__6; @@ -3110,15 +3096,14 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_tactic__extension_pa static lean_object* l___regBuiltin_Lean_Parser_Command_tactic__extension_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_printTacTags___closed__10; static lean_object* l_Lean_Parser_Command_evalBang_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__5; static lean_object* l_Lean_Parser_Command_genInjectiveTheorems___closed__8; static lean_object* l_Lean_Parser_Command_moduleDoc_formatter___closed__3; static lean_object* l_Lean_Parser_Command_import___closed__5; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__16; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_classTk___closed__1; static lean_object* l_Lean_Parser_Command_set__option___closed__7; static lean_object* l_Lean_Parser_Command_protected_parenthesizer___closed__3; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__30; LEAN_EXPORT lean_object* l_Lean_Parser_Command_quot; static lean_object* l_Lean_Parser_Command_partial___closed__8; static lean_object* l_Lean_Parser_Command_declId___closed__9; @@ -3178,12 +3163,11 @@ static lean_object* l_Lean_Parser_Command_inductive___closed__1; static lean_object* l_Lean_Parser_Command_definition_parenthesizer___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_openHiding_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Term_quot___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__28; static lean_object* l_Lean_Parser_Command_extends_formatter___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__14; static lean_object* l_Lean_Parser_Command_printEqns___closed__6; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_eval_docString__2(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_openOnly_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__43; static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_omit_formatter___closed__5; static lean_object* l_Lean_Parser_Command_check__failure___closed__3; @@ -3244,7 +3228,6 @@ static lean_object* l_Lean_Parser_Command_abbrev___closed__1; static lean_object* l_Lean_Parser_Command_declId___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_eval_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_tactic__extension_parenthesizer___closed__3; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__11; static lean_object* l___regBuiltin_Lean_Parser_Command_declSig_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_definition_formatter___closed__2; static lean_object* l_Lean_Parser_Command_namedPrio_parenthesizer___closed__8; @@ -3269,13 +3252,11 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structure_formatter_ static lean_object* l___regBuiltin_Lean_Parser_Command_export_declRange__1___closed__3; static lean_object* l_Lean_Parser_Command_declaration_formatter___closed__11; static lean_object* l_Lean_Parser_Command_mutual_formatter___closed__11; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__44; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_structCtor_formatter___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Command_import_declRange__1___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_printEqns_declRange__1___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_include_parenthesizer__1(lean_object*); -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__2; static lean_object* l_Lean_Parser_Command_in_formatter___closed__2; static lean_object* l_Lean_Parser_Command_structFields_formatter___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Tactic_set__option_declRange__1___closed__7; @@ -3296,7 +3277,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_in_formatter__1___closed_ static lean_object* l_Lean_Parser_Command_declaration___closed__11; lean_object* l_Lean_Parser_mkAntiquot(lean_object*, lean_object*, uint8_t, uint8_t); static lean_object* l_Lean_Parser_Command_inductive___closed__8; -lean_object* l_Lean_Parser_Term_structInst_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_structCtor_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Term_open_parenthesizer__1___closed__2; static lean_object* l_Lean_Parser_Command_computedField_formatter___closed__7; @@ -3321,7 +3301,6 @@ static lean_object* l___regBuiltin_Lean_Parser_Term_set__option_declRange__1___c static lean_object* l___regBuiltin_Lean_Parser_Command_init__quot_declRange__1___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_openSimple_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_eval_formatter___closed__1; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__5; static lean_object* l___regBuiltin_Lean_Parser_Command_partial_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Command_structFields___closed__10; static lean_object* l_Lean_Parser_Command_noncomputableSection_formatter___closed__3; @@ -3336,7 +3315,6 @@ static lean_object* l_Lean_Parser_Command_version_formatter___closed__2; static lean_object* l_Lean_Parser_Command_opaque_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_inductive_formatter___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_declaration_parenthesizer__1(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__8; static lean_object* l_Lean_Parser_Term_open_parenthesizer___closed__4; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_end_docString__1(lean_object*); static lean_object* l_Lean_Parser_Tactic_open___closed__4; @@ -3346,7 +3324,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Tactic_open_docString__1(lea LEAN_EXPORT lean_object* l_Lean_Parser_Command_universe_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Parser_incQuotDepth_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structImplicitBinder_formatter__1(lean_object*); -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__45; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__34; static lean_object* l_Lean_Parser_Command_definition_parenthesizer___closed__9; static lean_object* l___regBuiltin_Lean_Parser_Term_quot_formatter__1___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_omit_formatter__1___closed__1; @@ -3370,7 +3348,7 @@ static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_declRange__1___ static lean_object* l_Lean_Parser_Command_printEqns_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_declBody___closed__7; static lean_object* l_Lean_Parser_Command_structureTk_parenthesizer___closed__2; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__19; LEAN_EXPORT lean_object* l_Lean_Parser_Command_check__failure_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_example_formatter___closed__3; static lean_object* l_Lean_Parser_Command_optionValue_parenthesizer___closed__2; @@ -3398,6 +3376,7 @@ static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_inductive_parenthesizer___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_declModifiers_docString__1___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange__1___closed__5; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__23; static lean_object* l_Lean_Parser_Command_ctor___closed__1; static lean_object* l_Lean_Parser_Command_declModifiers___closed__6; static lean_object* l_Lean_Parser_Command_eraseAttr___closed__8; @@ -3413,6 +3392,7 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange__1( static lean_object* l_Lean_Parser_Command_inductive_formatter___closed__6; LEAN_EXPORT lean_object* l_Lean_Parser_Command_example_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_structureTk_formatter__1(lean_object*); +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__18; static lean_object* l_Lean_Parser_Command_addDocString___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_quot_parenthesizer__1___closed__1; static lean_object* l_Lean_Parser_Tactic_set__option___closed__3; @@ -3467,7 +3447,6 @@ static lean_object* l_Lean_Parser_Command_structFields___closed__15; static lean_object* l_Lean_Parser_Command_openSimple_parenthesizer___closed__2; static lean_object* l_Lean_Parser_Command_inductive___closed__19; static lean_object* l_Lean_Parser_Command_printAxioms___closed__9; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__21; LEAN_EXPORT lean_object* l___private_Lean_Parser_Command_0__Lean_Parser_Command_skipUntil(lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_variable__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -3488,7 +3467,6 @@ static lean_object* l_Lean_Parser_Command_structExplicitBinder_formatter___close static lean_object* l_Lean_Parser_Command_declValEqns___closed__3; static lean_object* l_Lean_Parser_Command_version_formatter___closed__1; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__11; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__32; static lean_object* l_Lean_Parser_Command_classInductive___closed__4; static lean_object* l_Lean_Parser_Command_noncomputable___closed__2; static lean_object* l_Lean_Parser_Command_initialize_formatter___closed__12; @@ -3512,7 +3490,6 @@ static lean_object* l_Lean_Parser_Command_abbrev_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_eraseAttr___closed__7; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_opaque_parenthesizer__1(lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_deriving_declRange__1___closed__4; -static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__35; static lean_object* l_Lean_Parser_Command_structureTk_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_printAxioms___closed__10; static lean_object* l_Lean_Parser_Command_print___closed__8; @@ -3539,7 +3516,6 @@ LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Term_set__option_docString__ static lean_object* l_Lean_Parser_Command_structure_parenthesizer___closed__3; static lean_object* l_Lean_Parser_Command_declModifiers_formatter___closed__23; static lean_object* l_Lean_Parser_Command_omit_parenthesizer___closed__5; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__7; static lean_object* l_Lean_Parser_Tactic_open_formatter___closed__4; static lean_object* l_Lean_Parser_Command_eraseAttr_parenthesizer___closed__1; static lean_object* l_Lean_Parser_Command_openOnly___closed__9; @@ -3617,7 +3593,6 @@ static lean_object* l_Lean_Parser_Command_open_parenthesizer___closed__5; static lean_object* l_Lean_Parser_Command_openRenamingItem_formatter___closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_partial_formatter__1___closed__1; static lean_object* l_Lean_Parser_Command_optDefDeriving___closed__10; -static lean_object* l_Lean_Parser_Command_derivingClasses_formatter___closed__1; static lean_object* l_Lean_Parser_Command_declaration___closed__17; static lean_object* l_Lean_Parser_Command_openRenaming___closed__10; static lean_object* l___regBuiltin_Lean_Parser_Command_exit_declRange__1___closed__3; @@ -3658,7 +3633,6 @@ static lean_object* l_Lean_Parser_Command_attribute_formatter___closed__7; static lean_object* l___regBuiltin_Lean_Parser_Command_declaration_declRange__1___closed__5; static lean_object* l_Lean_Parser_Command_classTk___closed__2; static lean_object* l___regBuiltin_Lean_Parser_Command_moduleDoc_parenthesizer__1___closed__2; -static lean_object* l_Lean_Parser_Command_derivingClasses___closed__3; static lean_object* l_Lean_Parser_Command_where_formatter___closed__3; static lean_object* l_Lean_Parser_Command_whereStructField___closed__2; static lean_object* l_Lean_Parser_Command_variable_formatter___closed__2; @@ -3709,6 +3683,7 @@ static lean_object* l_Lean_Parser_Command_mutual_parenthesizer___closed__1; LEAN_EXPORT lean_object* l_Lean_Parser_Command_definition_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Parser_Command_computedField_parenthesizer___closed__6; static lean_object* l_Lean_Parser_Command_structSimpleBinder___closed__9; +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116_(lean_object*); LEAN_EXPORT lean_object* l_Lean_Parser_Command_print_formatter(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_Parser_Command_attribute_declRange__1___closed__5; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_partial_parenthesizer__1(lean_object*); @@ -3795,6 +3770,7 @@ static lean_object* l_Lean_Parser_Command_where_formatter___closed__2; LEAN_EXPORT lean_object* l___regBuiltin_Lean_Parser_Command_initializeKeyword_parenthesizer__1(lean_object*); static lean_object* l_Lean_Parser_Command_optDeclSig_formatter___closed__3; static lean_object* l___regBuiltin_Lean_Parser_Command_declValSimple_formatter__1___closed__1; +static lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__4; static lean_object* l___regBuiltin_Lean_Parser_Command_mutual_declRange__1___closed__1; static lean_object* l___regBuiltin_Lean_Parser_Tactic_open_declRange__1___closed__2; static lean_object* l_Lean_Parser_Command_in___closed__1; @@ -9582,97 +9558,11 @@ x_1 = l_Lean_Parser_Command_ctor___closed__14; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__1() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked(" with ", 6, 6); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__2() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__1; -x_2 = l_Lean_Parser_symbol(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__2; -x_2 = l_Lean_Parser_Term_structInst; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__3; -x_2 = l_Lean_Parser_optional(x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_ident; -x_2 = l_Lean_Parser_Command_derivingClasses___closed__4; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__6() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("group", 5, 5); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_derivingClasses___closed__6; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__8() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__7; -x_2 = l_Lean_Parser_Command_derivingClasses___closed__5; -x_3 = l_Lean_Parser_node(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses___closed__9() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; uint8_t x_4; lean_object* x_5; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__8; -x_2 = l_Lean_Parser_Command_declId___closed__9; -x_3 = l_Lean_Parser_Command_declId___closed__10; -x_4 = 0; -x_5 = l_Lean_Parser_sepBy1(x_1, x_2, x_3, x_4); -return x_5; -} -} static lean_object* _init_l_Lean_Parser_Command_derivingClasses() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__9; +x_1 = l_Lean_Parser_Command_optDefDeriving___closed__8; return x_1; } } @@ -10341,23 +10231,41 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__7() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__7; -x_2 = l_Lean_Parser_Command_classInductive___closed__6; -x_3 = l_Lean_Parser_node(x_1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("group", 5, 5); +return x_1; } } static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__8() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l_Lean_Parser_Command_classInductive___closed__7; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__9() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_classInductive___closed__8; +x_2 = l_Lean_Parser_Command_classInductive___closed__6; +x_3 = l_Lean_Parser_node(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__10() { +_start: +{ lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_classInductive___closed__7; +x_1 = l_Lean_Parser_Command_classInductive___closed__9; x_2 = l_Lean_Parser_atomic(x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__9() { +static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__11() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -10367,31 +10275,11 @@ x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__10() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_inductive___closed__7; -x_2 = l_Lean_Parser_Command_classInductive___closed__9; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__11() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_optDeclSig; -x_2 = l_Lean_Parser_Command_classInductive___closed__10; -x_3 = l_Lean_Parser_andthen(x_1, x_2); -return x_3; -} -} static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_definition___closed__6; +x_1 = l_Lean_Parser_Command_inductive___closed__7; x_2 = l_Lean_Parser_Command_classInductive___closed__11; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -10401,7 +10289,7 @@ static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_classInductive___closed__8; +x_1 = l_Lean_Parser_Command_optDeclSig; x_2 = l_Lean_Parser_Command_classInductive___closed__12; x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; @@ -10410,30 +10298,50 @@ return x_3; static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__14() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Lean_Parser_Command_classInductive___closed__2; -x_2 = lean_unsigned_to_nat(1024u); -x_3 = l_Lean_Parser_Command_classInductive___closed__13; -x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_definition___closed__6; +x_2 = l_Lean_Parser_Command_classInductive___closed__13; +x_3 = l_Lean_Parser_andthen(x_1, x_2); +return x_3; } } static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_classInductive___closed__3; +x_1 = l_Lean_Parser_Command_classInductive___closed__10; x_2 = l_Lean_Parser_Command_classInductive___closed__14; -x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); +x_3 = l_Lean_Parser_andthen(x_1, x_2); return x_3; } } static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__16() { _start: { +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Lean_Parser_Command_classInductive___closed__2; +x_2 = lean_unsigned_to_nat(1024u); +x_3 = l_Lean_Parser_Command_classInductive___closed__15; +x_4 = l_Lean_Parser_leadingNode(x_1, x_2, x_3); +return x_4; +} +} +static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__17() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_Parser_Command_classInductive___closed__3; +x_2 = l_Lean_Parser_Command_classInductive___closed__16; +x_3 = l_Lean_Parser_withAntiquot(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_Parser_Command_classInductive___closed__18() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Lean_Parser_Command_classInductive___closed__2; -x_2 = l_Lean_Parser_Command_classInductive___closed__15; +x_2 = l_Lean_Parser_Command_classInductive___closed__17; x_3 = l_Lean_Parser_withCache(x_1, x_2); return x_3; } @@ -10442,7 +10350,7 @@ static lean_object* _init_l_Lean_Parser_Command_classInductive() { _start: { lean_object* x_1; -x_1 = l_Lean_Parser_Command_classInductive___closed__16; +x_1 = l_Lean_Parser_Command_classInductive___closed__18; return x_1; } } @@ -15636,83 +15544,11 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_structInst_formatter), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses_formatter___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_ppIndent_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_derivingClasses_formatter___closed__1; -x_2 = l_Lean_Parser_Command_derivingClasses_formatter___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses_formatter___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_formatter___closed__3; -x_2 = l_Lean_Parser_Command_derivingClasses_formatter___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Formatter_andthen_formatter), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses_formatter___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_formatter), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_Parser_Command_derivingClasses_formatter(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; -x_6 = l_Lean_Parser_Command_derivingClasses_formatter___closed__7; +x_6 = l_Lean_Parser_Command_declId_formatter___closed__3; x_7 = l_Lean_Parser_Command_declId___closed__9; x_8 = l_Lean_Parser_Command_declId_formatter___closed__5; x_9 = 0; @@ -21388,83 +21224,11 @@ x_6 = l_Lean_KeyedDeclsAttribute_addBuiltin___rarg(x_2, x_3, x_4, x_5, x_1); return x_6; } } -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__1() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_symbol_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__2() { -_start: -{ -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Term_structInst_parenthesizer), 5, 0); -return x_1; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__3() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__2; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_ppIndent_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__1; -x_2 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__3; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_optional_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; -x_2 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Parenthesizer_andthen_parenthesizer), 7, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6; -x_2 = lean_alloc_closure((void*)(l_Lean_Parser_group_parenthesizer), 6, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; -} -} LEAN_EXPORT lean_object* l_Lean_Parser_Command_derivingClasses_parenthesizer(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5) { _start: { lean_object* x_6; lean_object* x_7; lean_object* x_8; uint8_t x_9; lean_object* x_10; -x_6 = l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7; +x_6 = l_Lean_Parser_Command_declId_parenthesizer___closed__3; x_7 = l_Lean_Parser_Command_declId___closed__9; x_8 = l_Lean_Parser_Command_declId_parenthesizer___closed__5; x_9 = 0; @@ -42374,7 +42138,7 @@ x_1 = l_Lean_Parser_Command_eoi___closed__5; return x_1; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3111_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3092_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; @@ -42435,7 +42199,7 @@ x_1 = l_Lean_Parser_Command_ctor___closed__8; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__1() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__1() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -42445,7 +42209,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__2() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__2() { _start: { lean_object* x_1; @@ -42453,19 +42217,19 @@ x_1 = lean_mk_string_unchecked("declModifiersF", 14, 14); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__3() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Parser_Term_quot___closed__1; x_2 = l_Lean_Parser_Term_quot___closed__2; x_3 = l_Lean_Parser_Command_quot___closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__2; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__2; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__4() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__4() { _start: { lean_object* x_1; lean_object* x_2; @@ -42475,7 +42239,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__5() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__5() { _start: { lean_object* x_1; lean_object* x_2; @@ -42485,7 +42249,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__6() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__6() { _start: { lean_object* x_1; lean_object* x_2; @@ -42495,12 +42259,12 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__7() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__7() { _start: { lean_object* x_1; lean_object* x_2; uint8_t x_3; lean_object* x_4; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__6; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__6; x_3 = 1; x_4 = lean_alloc_ctor(0, 2, 1); lean_ctor_set(x_4, 0, x_1); @@ -42509,7 +42273,7 @@ lean_ctor_set_uint8(x_4, sizeof(void*)*2, x_3); return x_4; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__8() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__8() { _start: { lean_object* x_1; @@ -42517,17 +42281,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersF_formatter) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__9() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__9() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__8; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__8; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__10() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__10() { _start: { lean_object* x_1; @@ -42535,7 +42299,7 @@ x_1 = l_Lean_PrettyPrinter_Formatter_formatterAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__11() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__11() { _start: { lean_object* x_1; @@ -42543,17 +42307,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersF_parenthesi return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__12() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__12() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__11; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__11; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__13() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__13() { _start: { lean_object* x_1; @@ -42561,7 +42325,7 @@ x_1 = l_Lean_PrettyPrinter_Parenthesizer_parenthesizerAliasesRef; return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__14() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__14() { _start: { lean_object* x_1; @@ -42569,17 +42333,17 @@ x_1 = lean_mk_string_unchecked("nestedDeclModifiers", 19, 19); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__15() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__14; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__16() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__16() { _start: { lean_object* x_1; @@ -42587,19 +42351,19 @@ x_1 = lean_mk_string_unchecked("declModifiersT", 14, 14); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__17() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__17() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Parser_Term_quot___closed__1; x_2 = l_Lean_Parser_Term_quot___closed__2; x_3 = l_Lean_Parser_Command_quot___closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__16; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__16; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__18() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__18() { _start: { lean_object* x_1; lean_object* x_2; @@ -42609,7 +42373,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__19() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__19() { _start: { lean_object* x_1; @@ -42617,17 +42381,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersT_formatter) return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__20() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__20() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__19; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__19; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__21() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__21() { _start: { lean_object* x_1; @@ -42635,17 +42399,17 @@ x_1 = lean_alloc_closure((void*)(l_Lean_Parser_Command_declModifiersT_parenthesi return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__22() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__22() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__21; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__21; x_2 = lean_alloc_ctor(0, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__23() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__23() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -42655,7 +42419,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__24() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__24() { _start: { lean_object* x_1; lean_object* x_2; @@ -42665,7 +42429,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__25() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__25() { _start: { lean_object* x_1; lean_object* x_2; @@ -42675,7 +42439,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__26() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__26() { _start: { lean_object* x_1; lean_object* x_2; @@ -42685,7 +42449,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__27() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__27() { _start: { lean_object* x_1; lean_object* x_2; @@ -42695,7 +42459,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__28() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__28() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -42705,7 +42469,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__29() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__29() { _start: { lean_object* x_1; lean_object* x_2; @@ -42715,7 +42479,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__30() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__30() { _start: { lean_object* x_1; lean_object* x_2; @@ -42725,7 +42489,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__31() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__31() { _start: { lean_object* x_1; lean_object* x_2; @@ -42735,7 +42499,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__32() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__32() { _start: { lean_object* x_1; lean_object* x_2; @@ -42745,7 +42509,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__33() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__33() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -42755,7 +42519,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__34() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__34() { _start: { lean_object* x_1; lean_object* x_2; @@ -42765,7 +42529,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__35() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__35() { _start: { lean_object* x_1; lean_object* x_2; @@ -42775,7 +42539,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__36() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__36() { _start: { lean_object* x_1; lean_object* x_2; @@ -42785,7 +42549,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__37() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__37() { _start: { lean_object* x_1; lean_object* x_2; @@ -42795,7 +42559,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__38() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__38() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -42805,7 +42569,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__39() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__39() { _start: { lean_object* x_1; lean_object* x_2; @@ -42815,7 +42579,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__40() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__40() { _start: { lean_object* x_1; lean_object* x_2; @@ -42825,7 +42589,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__41() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__41() { _start: { lean_object* x_1; lean_object* x_2; @@ -42835,7 +42599,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__42() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__42() { _start: { lean_object* x_1; lean_object* x_2; @@ -42845,7 +42609,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__43() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__43() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -42855,7 +42619,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__44() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__44() { _start: { lean_object* x_1; lean_object* x_2; @@ -42865,7 +42629,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__45() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__45() { _start: { lean_object* x_1; lean_object* x_2; @@ -42875,7 +42639,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__46() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__46() { _start: { lean_object* x_1; lean_object* x_2; @@ -42885,7 +42649,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__47() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__47() { _start: { lean_object* x_1; lean_object* x_2; @@ -42895,7 +42659,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48() { _start: { lean_object* x_1; @@ -42903,29 +42667,29 @@ x_1 = lean_mk_string_unchecked("docComment", 10, 10); return x_1; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__49() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__49() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Lean_Parser_Term_quot___closed__1; x_2 = l_Lean_Parser_Term_quot___closed__2; x_3 = l_Lean_Parser_Command_quot___closed__1; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__51() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__51() { _start: { lean_object* x_1; lean_object* x_2; @@ -42935,17 +42699,17 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__52() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__52() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50; +x_1 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50; x_2 = lean_alloc_ctor(1, 1, 0); lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__53() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__53() { _start: { lean_object* x_1; lean_object* x_2; @@ -42955,7 +42719,7 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__54() { +static lean_object* _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__54() { _start: { lean_object* x_1; lean_object* x_2; @@ -42965,15 +42729,15 @@ lean_ctor_set(x_2, 0, x_1); return x_2; } } -LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; lean_object* x_7; -x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__1; -x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__3; -x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__4; -x_5 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__5; -x_6 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__7; +x_2 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__1; +x_3 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__3; +x_4 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__4; +x_5 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__5; +x_6 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__7; x_7 = l_Lean_Parser_registerAlias(x_2, x_3, x_4, x_5, x_6, x_1); if (lean_obj_tag(x_7) == 0) { @@ -42981,8 +42745,8 @@ lean_object* x_8; lean_object* x_9; lean_object* x_10; lean_object* x_11; x_8 = lean_ctor_get(x_7, 1); lean_inc(x_8); lean_dec(x_7); -x_9 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__10; -x_10 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__9; +x_9 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__10; +x_10 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__9; x_11 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_2, x_10, x_8); if (lean_obj_tag(x_11) == 0) { @@ -42990,8 +42754,8 @@ lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; x_12 = lean_ctor_get(x_11, 1); lean_inc(x_12); lean_dec(x_11); -x_13 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__13; -x_14 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__12; +x_13 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__13; +x_14 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__12; x_15 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_2, x_14, x_12); if (lean_obj_tag(x_15) == 0) { @@ -42999,9 +42763,9 @@ lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean x_16 = lean_ctor_get(x_15, 1); lean_inc(x_16); lean_dec(x_15); -x_17 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__15; -x_18 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__17; -x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__18; +x_17 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__15; +x_18 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__17; +x_19 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__18; x_20 = l_Lean_Parser_registerAlias(x_17, x_18, x_19, x_5, x_6, x_16); if (lean_obj_tag(x_20) == 0) { @@ -43009,7 +42773,7 @@ lean_object* x_21; lean_object* x_22; lean_object* x_23; x_21 = lean_ctor_get(x_20, 1); lean_inc(x_21); lean_dec(x_20); -x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__20; +x_22 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__20; x_23 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_17, x_22, x_21); if (lean_obj_tag(x_23) == 0) { @@ -43017,7 +42781,7 @@ lean_object* x_24; lean_object* x_25; lean_object* x_26; x_24 = lean_ctor_get(x_23, 1); lean_inc(x_24); lean_dec(x_23); -x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__22; +x_25 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__22; x_26 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_17, x_25, x_24); if (lean_obj_tag(x_26) == 0) { @@ -43025,10 +42789,10 @@ lean_object* x_27; lean_object* x_28; lean_object* x_29; lean_object* x_30; lean x_27 = lean_ctor_get(x_26, 1); lean_inc(x_27); lean_dec(x_26); -x_28 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__23; +x_28 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__23; x_29 = l_Lean_Parser_Command_declId___closed__2; -x_30 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__24; -x_31 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__25; +x_30 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__24; +x_31 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__25; x_32 = l_Lean_Parser_registerAlias(x_28, x_29, x_30, x_31, x_6, x_27); if (lean_obj_tag(x_32) == 0) { @@ -43036,7 +42800,7 @@ lean_object* x_33; lean_object* x_34; lean_object* x_35; x_33 = lean_ctor_get(x_32, 1); lean_inc(x_33); lean_dec(x_32); -x_34 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__26; +x_34 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__26; x_35 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_28, x_34, x_33); if (lean_obj_tag(x_35) == 0) { @@ -43044,7 +42808,7 @@ lean_object* x_36; lean_object* x_37; lean_object* x_38; x_36 = lean_ctor_get(x_35, 1); lean_inc(x_36); lean_dec(x_35); -x_37 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__27; +x_37 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__27; x_38 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_28, x_37, x_36); if (lean_obj_tag(x_38) == 0) { @@ -43052,10 +42816,10 @@ lean_object* x_39; lean_object* x_40; lean_object* x_41; lean_object* x_42; lean x_39 = lean_ctor_get(x_38, 1); lean_inc(x_39); lean_dec(x_38); -x_40 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__28; +x_40 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__28; x_41 = l_Lean_Parser_Command_declSig___closed__2; -x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__29; -x_43 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__30; +x_42 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__29; +x_43 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__30; x_44 = l_Lean_Parser_registerAlias(x_40, x_41, x_42, x_43, x_6, x_39); if (lean_obj_tag(x_44) == 0) { @@ -43063,7 +42827,7 @@ lean_object* x_45; lean_object* x_46; lean_object* x_47; x_45 = lean_ctor_get(x_44, 1); lean_inc(x_45); lean_dec(x_44); -x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__31; +x_46 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__31; x_47 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_40, x_46, x_45); if (lean_obj_tag(x_47) == 0) { @@ -43071,7 +42835,7 @@ lean_object* x_48; lean_object* x_49; lean_object* x_50; x_48 = lean_ctor_get(x_47, 1); lean_inc(x_48); lean_dec(x_47); -x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__32; +x_49 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__32; x_50 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_40, x_49, x_48); if (lean_obj_tag(x_50) == 0) { @@ -43079,10 +42843,10 @@ lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean x_51 = lean_ctor_get(x_50, 1); lean_inc(x_51); lean_dec(x_50); -x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__33; +x_52 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__33; x_53 = l___regBuiltin_Lean_Parser_Command_declVal_docString__1___closed__2; -x_54 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__34; -x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__35; +x_54 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__34; +x_55 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__35; x_56 = l_Lean_Parser_registerAlias(x_52, x_53, x_54, x_55, x_6, x_51); if (lean_obj_tag(x_56) == 0) { @@ -43090,7 +42854,7 @@ lean_object* x_57; lean_object* x_58; lean_object* x_59; x_57 = lean_ctor_get(x_56, 1); lean_inc(x_57); lean_dec(x_56); -x_58 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__36; +x_58 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__36; x_59 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_52, x_58, x_57); if (lean_obj_tag(x_59) == 0) { @@ -43098,7 +42862,7 @@ lean_object* x_60; lean_object* x_61; lean_object* x_62; x_60 = lean_ctor_get(x_59, 1); lean_inc(x_60); lean_dec(x_59); -x_61 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__37; +x_61 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__37; x_62 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_52, x_61, x_60); if (lean_obj_tag(x_62) == 0) { @@ -43106,10 +42870,10 @@ lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean x_63 = lean_ctor_get(x_62, 1); lean_inc(x_63); lean_dec(x_62); -x_64 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__38; +x_64 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__38; x_65 = l_Lean_Parser_Command_optDeclSig___closed__2; -x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__39; -x_67 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__40; +x_66 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__39; +x_67 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__40; x_68 = l_Lean_Parser_registerAlias(x_64, x_65, x_66, x_67, x_6, x_63); if (lean_obj_tag(x_68) == 0) { @@ -43117,7 +42881,7 @@ lean_object* x_69; lean_object* x_70; lean_object* x_71; x_69 = lean_ctor_get(x_68, 1); lean_inc(x_69); lean_dec(x_68); -x_70 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__41; +x_70 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__41; x_71 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_64, x_70, x_69); if (lean_obj_tag(x_71) == 0) { @@ -43125,7 +42889,7 @@ lean_object* x_72; lean_object* x_73; lean_object* x_74; x_72 = lean_ctor_get(x_71, 1); lean_inc(x_72); lean_dec(x_71); -x_73 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__42; +x_73 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__42; x_74 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_64, x_73, x_72); if (lean_obj_tag(x_74) == 0) { @@ -43133,10 +42897,10 @@ lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean x_75 = lean_ctor_get(x_74, 1); lean_inc(x_75); lean_dec(x_74); -x_76 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__43; +x_76 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__43; x_77 = l___regBuiltin_Lean_Parser_Command_openDecl_docString__1___closed__2; -x_78 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__44; -x_79 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__45; +x_78 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__44; +x_79 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__45; x_80 = l_Lean_Parser_registerAlias(x_76, x_77, x_78, x_79, x_6, x_75); if (lean_obj_tag(x_80) == 0) { @@ -43144,7 +42908,7 @@ lean_object* x_81; lean_object* x_82; lean_object* x_83; x_81 = lean_ctor_get(x_80, 1); lean_inc(x_81); lean_dec(x_80); -x_82 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__46; +x_82 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__46; x_83 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_76, x_82, x_81); if (lean_obj_tag(x_83) == 0) { @@ -43152,7 +42916,7 @@ lean_object* x_84; lean_object* x_85; lean_object* x_86; x_84 = lean_ctor_get(x_83, 1); lean_inc(x_84); lean_dec(x_83); -x_85 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__47; +x_85 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__47; x_86 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_76, x_85, x_84); if (lean_obj_tag(x_86) == 0) { @@ -43160,10 +42924,10 @@ lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean x_87 = lean_ctor_get(x_86, 1); lean_inc(x_87); lean_dec(x_86); -x_88 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__49; -x_89 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50; -x_90 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__51; -x_91 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__52; +x_88 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__49; +x_89 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50; +x_90 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__51; +x_91 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__52; x_92 = l_Lean_Parser_registerAlias(x_88, x_89, x_90, x_91, x_6, x_87); if (lean_obj_tag(x_92) == 0) { @@ -43171,7 +42935,7 @@ lean_object* x_93; lean_object* x_94; lean_object* x_95; x_93 = lean_ctor_get(x_92, 1); lean_inc(x_93); lean_dec(x_92); -x_94 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__53; +x_94 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__53; x_95 = l_Lean_Parser_registerAliasCore___rarg(x_9, x_88, x_94, x_93); if (lean_obj_tag(x_95) == 0) { @@ -43179,7 +42943,7 @@ lean_object* x_96; lean_object* x_97; lean_object* x_98; x_96 = lean_ctor_get(x_95, 1); lean_inc(x_96); lean_dec(x_95); -x_97 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__54; +x_97 = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__54; x_98 = l_Lean_Parser_registerAliasCore___rarg(x_13, x_88, x_97, x_96); return x_98; } @@ -46782,24 +46546,6 @@ l_Lean_Parser_Command_ctor___closed__14 = _init_l_Lean_Parser_Command_ctor___clo lean_mark_persistent(l_Lean_Parser_Command_ctor___closed__14); l_Lean_Parser_Command_ctor = _init_l_Lean_Parser_Command_ctor(); lean_mark_persistent(l_Lean_Parser_Command_ctor); -l_Lean_Parser_Command_derivingClasses___closed__1 = _init_l_Lean_Parser_Command_derivingClasses___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__1); -l_Lean_Parser_Command_derivingClasses___closed__2 = _init_l_Lean_Parser_Command_derivingClasses___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__2); -l_Lean_Parser_Command_derivingClasses___closed__3 = _init_l_Lean_Parser_Command_derivingClasses___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__3); -l_Lean_Parser_Command_derivingClasses___closed__4 = _init_l_Lean_Parser_Command_derivingClasses___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__4); -l_Lean_Parser_Command_derivingClasses___closed__5 = _init_l_Lean_Parser_Command_derivingClasses___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__5); -l_Lean_Parser_Command_derivingClasses___closed__6 = _init_l_Lean_Parser_Command_derivingClasses___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__6); -l_Lean_Parser_Command_derivingClasses___closed__7 = _init_l_Lean_Parser_Command_derivingClasses___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__7); -l_Lean_Parser_Command_derivingClasses___closed__8 = _init_l_Lean_Parser_Command_derivingClasses___closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__8); -l_Lean_Parser_Command_derivingClasses___closed__9 = _init_l_Lean_Parser_Command_derivingClasses___closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses___closed__9); l_Lean_Parser_Command_derivingClasses = _init_l_Lean_Parser_Command_derivingClasses(); lean_mark_persistent(l_Lean_Parser_Command_derivingClasses); l_Lean_Parser_Command_optDeriving___closed__1 = _init_l_Lean_Parser_Command_optDeriving___closed__1(); @@ -46959,6 +46705,10 @@ l_Lean_Parser_Command_classInductive___closed__15 = _init_l_Lean_Parser_Command_ lean_mark_persistent(l_Lean_Parser_Command_classInductive___closed__15); l_Lean_Parser_Command_classInductive___closed__16 = _init_l_Lean_Parser_Command_classInductive___closed__16(); lean_mark_persistent(l_Lean_Parser_Command_classInductive___closed__16); +l_Lean_Parser_Command_classInductive___closed__17 = _init_l_Lean_Parser_Command_classInductive___closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_classInductive___closed__17); +l_Lean_Parser_Command_classInductive___closed__18 = _init_l_Lean_Parser_Command_classInductive___closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_classInductive___closed__18); l_Lean_Parser_Command_classInductive = _init_l_Lean_Parser_Command_classInductive(); lean_mark_persistent(l_Lean_Parser_Command_classInductive); l_Lean_Parser_Command_structExplicitBinder___closed__1 = _init_l_Lean_Parser_Command_structExplicitBinder___closed__1(); @@ -47863,21 +47613,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_computedFields_formatter if (builtin) {res = l___regBuiltin_Lean_Parser_Command_computedFields_formatter__1(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Parser_Command_derivingClasses_formatter___closed__1 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__1); -l_Lean_Parser_Command_derivingClasses_formatter___closed__2 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__2); -l_Lean_Parser_Command_derivingClasses_formatter___closed__3 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__3); -l_Lean_Parser_Command_derivingClasses_formatter___closed__4 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__4); -l_Lean_Parser_Command_derivingClasses_formatter___closed__5 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__5); -l_Lean_Parser_Command_derivingClasses_formatter___closed__6 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__6); -l_Lean_Parser_Command_derivingClasses_formatter___closed__7 = _init_l_Lean_Parser_Command_derivingClasses_formatter___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_formatter___closed__7); -l_Lean_Parser_Command_optDeriving_formatter___closed__1 = _init_l_Lean_Parser_Command_optDeriving_formatter___closed__1(); +}l_Lean_Parser_Command_optDeriving_formatter___closed__1 = _init_l_Lean_Parser_Command_optDeriving_formatter___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_optDeriving_formatter___closed__1); l_Lean_Parser_Command_optDeriving_formatter___closed__2 = _init_l_Lean_Parser_Command_optDeriving_formatter___closed__2(); lean_mark_persistent(l_Lean_Parser_Command_optDeriving_formatter___closed__2); @@ -48793,21 +48529,7 @@ lean_mark_persistent(l___regBuiltin_Lean_Parser_Command_computedFields_parenthes if (builtin) {res = l___regBuiltin_Lean_Parser_Command_computedFields_parenthesizer__1(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); -}l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__1); -l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__2); -l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__3 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__3); -l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__4); -l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__5); -l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__6); -l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7 = _init_l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_derivingClasses_parenthesizer___closed__7); -l_Lean_Parser_Command_optDeriving_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_optDeriving_parenthesizer___closed__1(); +}l_Lean_Parser_Command_optDeriving_parenthesizer___closed__1 = _init_l_Lean_Parser_Command_optDeriving_parenthesizer___closed__1(); lean_mark_persistent(l_Lean_Parser_Command_optDeriving_parenthesizer___closed__1); l_Lean_Parser_Command_optDeriving_parenthesizer___closed__2 = _init_l_Lean_Parser_Command_optDeriving_parenthesizer___closed__2(); lean_mark_persistent(l_Lean_Parser_Command_optDeriving_parenthesizer___closed__2); @@ -52436,122 +52158,122 @@ l_Lean_Parser_Command_eoi___closed__5 = _init_l_Lean_Parser_Command_eoi___closed lean_mark_persistent(l_Lean_Parser_Command_eoi___closed__5); l_Lean_Parser_Command_eoi = _init_l_Lean_Parser_Command_eoi(); lean_mark_persistent(l_Lean_Parser_Command_eoi); -if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3111_(lean_io_mk_world()); +if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3092_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Lean_Parser_Command_declModifiersF = _init_l_Lean_Parser_Command_declModifiersF(); lean_mark_persistent(l_Lean_Parser_Command_declModifiersF); l_Lean_Parser_Command_declModifiersT = _init_l_Lean_Parser_Command_declModifiersT(); lean_mark_persistent(l_Lean_Parser_Command_declModifiersT); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__1(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__1); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__2(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__2); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__3(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__3); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__4(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__4); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__5(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__5); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__6(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__6); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__7(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__7); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__8(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__8); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__9(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__9); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__10(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__10); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__11(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__11); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__12(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__12); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__13(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__13); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__14(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__14); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__15(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__15); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__16(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__16); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__17(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__17); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__18(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__18); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__19(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__19); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__20(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__20); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__21(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__21); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__22(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__22); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__23(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__23); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__24(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__24); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__25(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__25); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__26(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__26); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__27(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__27); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__28(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__28); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__29(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__29); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__30(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__30); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__31(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__31); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__32(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__32); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__33(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__33); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__34(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__34); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__35(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__35); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__36 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__36(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__36); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__37 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__37(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__37); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__38 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__38(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__38); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__39 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__39(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__39); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__40 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__40(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__40); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__41 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__41(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__41); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__42 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__42(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__42); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__43 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__43(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__43); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__44 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__44(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__44); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__45 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__45(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__45); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__46 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__46(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__46); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__47 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__47(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__47); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__48); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__49 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__49(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__49); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__50); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__51 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__51(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__51); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__52 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__52(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__52); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__53 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__53(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__53); -l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__54 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__54(); -lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135____closed__54); -if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3135_(lean_io_mk_world()); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__1 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__1(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__1); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__2 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__2(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__2); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__3 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__3(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__3); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__4 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__4(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__4); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__5 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__5(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__5); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__6 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__6(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__6); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__7 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__7(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__7); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__8 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__8(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__8); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__9 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__9(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__9); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__10 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__10(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__10); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__11 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__11(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__11); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__12 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__12(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__12); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__13 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__13(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__13); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__14 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__14(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__14); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__15 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__15(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__15); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__16 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__16(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__16); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__17 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__17(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__17); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__18 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__18(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__18); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__19 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__19(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__19); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__20 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__20(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__20); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__21 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__21(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__21); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__22 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__22(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__22); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__23 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__23(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__23); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__24 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__24(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__24); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__25 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__25(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__25); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__26 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__26(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__26); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__27 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__27(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__27); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__28 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__28(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__28); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__29 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__29(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__29); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__30 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__30(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__30); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__31 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__31(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__31); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__32 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__32(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__32); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__33 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__33(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__33); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__34 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__34(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__34); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__35 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__35(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__35); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__36 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__36(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__36); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__37 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__37(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__37); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__38 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__38(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__38); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__39 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__39(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__39); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__40 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__40(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__40); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__41 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__41(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__41); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__42 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__42(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__42); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__43 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__43(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__43); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__44 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__44(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__44); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__45 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__45(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__45); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__46 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__46(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__46); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__47 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__47(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__47); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__48); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__49 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__49(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__49); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__50); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__51 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__51(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__51); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__52 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__52(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__52); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__53 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__53(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__53); +l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__54 = _init_l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__54(); +lean_mark_persistent(l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116____closed__54); +if (builtin) {res = l_Lean_Parser_Command_initFn____x40_Lean_Parser_Command___hyg_3116_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); }l_Lean_Parser_Term_open___closed__1 = _init_l_Lean_Parser_Term_open___closed__1(); diff --git a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c index c8793c89eb..f4ad5fd0dd 100644 --- a/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c +++ b/stage0/stdlib/Lean/PrettyPrinter/Delaborator/Builtins.c @@ -158,6 +158,7 @@ lean_object* l_Lean_getPPFullNames___boxed(lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_declSigWithId_formatter___closed__1; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabHDiv__1(lean_object*); +static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1; lean_object* l_Lean_getPPFunBinderTypes___boxed(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_shouldGroupWithNext(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_delabMData___spec__8(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -394,6 +395,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabSort(lean_object* uint8_t l_Lean_Syntax_isOfKind(lean_object*, lean_object*); lean_object* l_Lean_Name_mkStr5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at_Lean_PrettyPrinter_Delaborator_delabLam___spec__2(lean_object*, size_t, size_t, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_unexpandStructureInstance___lambda__3___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLetE(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -587,7 +589,9 @@ LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_delabProj__ static lean_object* l_Array_foldrMUnsafe_fold___at_Lean_PrettyPrinter_Delaborator_delabForall___spec__1___closed__3; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabPSigma__1___closed__5; lean_object* lean_st_ref_take(lean_object*, lean_object*); +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Expr_getRevArg_x21(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabApp__1___closed__1; lean_object* l___private_Lean_Meta_Basic_0__Lean_Meta_withLetDeclImp___rarg(lean_object*, lean_object*, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDoElems___lambda__6___closed__1; @@ -771,6 +775,7 @@ static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabPSigma__1 LEAN_EXPORT lean_object* l_Lean_unresolveNameGlobal___at_Lean_PrettyPrinter_Delaborator_delabConst___spec__1(lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withAppArg___at_Lean_PrettyPrinter_Delaborator_delabDoElems___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_PrettyPrinter_Parenthesizer_leadingNode_parenthesizer(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); +static lean_object* l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__4; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabMData(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); extern lean_object* l_Lean_pp_universes; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3; @@ -809,7 +814,6 @@ LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabConst___closed__14; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabSigmaCore___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Name_append(lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__7; LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_withoutParentProjections___rarg(uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withBindingBody_x27___at___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_skippingBinders_loop_visitLambda___spec__8(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_withMDataOptions___spec__8(lean_object*); @@ -1260,7 +1264,6 @@ LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabLam___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_PrettyPrinter_Delaborator_Builtins_0__Lean_PrettyPrinter_Delaborator_delabBinders___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_delabNameMkStr___closed__1; -static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabConstWithSignature_delabTy___closed__3; static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabSeqLeft__1___closed__3; static lean_object* l_Lean_PrettyPrinter_Delaborator_delabDivRatCore___closed__9; @@ -1351,7 +1354,6 @@ lean_object* l_Lean_RBNode_insert___at_Lean_PrettyPrinter_Delaborator_OptionsPer lean_object* l_Lean_Expr_getAppFn(lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNameMkStr__8___closed__1; LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_useAppExplicit___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__4; uint8_t l_Lean_isStructure(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_panic___at_Lean_PrettyPrinter_Delaborator_delabProj___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Array_mkArray1___rarg(lean_object*); @@ -1459,7 +1461,6 @@ static lean_object* l_Lean_PrettyPrinter_Delaborator_coeDelaborator___lambda__1_ static lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppImplicitCore___closed__1; LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabSeqLeft__1(lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_SubExpr_withNaryArg___at_Lean_PrettyPrinter_Delaborator_delabAppImplicitCore___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabCond___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabSeq___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabDIte__1___closed__3; @@ -1590,7 +1591,6 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabAppMatch___lambda uint8_t lean_usize_dec_lt(size_t, size_t); lean_object* l_Array_mkArray2___rarg(lean_object*, lean_object*); static lean_object* l_Lean_PrettyPrinter_Delaborator_declSigWithId_formatter___closed__6; -static lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__5; lean_object* l_Lean_PrettyPrinter_Delaborator_whenNotPPOption(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNeg__1(lean_object*); uint8_t l___private_Lean_Expr_0__Lean_beqBinderInfo____x40_Lean_Expr___hyg_404_(uint8_t, uint8_t); @@ -38048,7 +38048,7 @@ x_10 = l_Lean_PrettyPrinter_Delaborator_delabDivRatCore(x_9, x_2, x_3, x_4, x_5, return x_10; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1() { +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1() { _start: { lean_object* x_1; @@ -38056,17 +38056,42 @@ x_1 = lean_alloc_closure((void*)(l_Lean_getPPNumericTypes___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2() { +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1(uint8_t x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1; -x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_getPPOption___rarg), 8, 1); -lean_closure_set(x_2, 0, x_1); -return x_2; +if (x_1 == 0) +{ +lean_object* x_9; lean_object* x_10; +x_9 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1; +x_10 = l_Lean_PrettyPrinter_Delaborator_getPPOption___rarg(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); +return x_10; +} +else +{ +lean_object* x_11; lean_object* x_12; +lean_dec(x_7); +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +x_11 = lean_box(x_1); +x_12 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_12, 0, x_11); +lean_ctor_set(x_12, 1, x_8); +return x_12; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3() { +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1() { +_start: +{ +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___boxed), 8, 0); +return x_1; +} +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2() { _start: { lean_object* x_1; @@ -38074,31 +38099,7 @@ x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabOfNatCore return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__4() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2; -x_2 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; -x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabMVarAux___spec__1___rarg), 9, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__5() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_unsigned_to_nat(3u); -x_2 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__4; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_withOverApp___boxed), 9, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6() { +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3() { _start: { lean_object* x_1; @@ -38106,25 +38107,85 @@ x_1 = lean_alloc_closure((void*)(l_Lean_getPPCoercions___boxed), 1, 0); return x_1; } } -static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__7() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6; -x_2 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__5; -x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_whenPPOption), 9, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; -} -} LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7) { _start: { -lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_PrettyPrinter_Delaborator_useAppExplicit___closed__1; -x_9 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__7; -x_10 = l_Lean_PrettyPrinter_Delaborator_whenNotPPOption(x_8, x_9, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +lean_object* x_8; lean_object* x_9; +x_8 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1; +lean_inc(x_6); +lean_inc(x_5); +lean_inc(x_4); +lean_inc(x_3); +lean_inc(x_2); +lean_inc(x_1); +x_9 = l_Lean_PrettyPrinter_Delaborator_getPPOption___rarg(x_8, x_1, x_2, x_3, x_4, x_5, x_6, x_7); +if (lean_obj_tag(x_9) == 0) +{ +lean_object* x_10; lean_object* x_11; lean_object* x_12; lean_object* x_13; lean_object* x_14; lean_object* x_15; lean_object* x_16; lean_object* x_17; lean_object* x_18; lean_object* x_19; lean_object* x_20; lean_object* x_21; lean_object* x_22; +x_10 = lean_ctor_get(x_9, 0); +lean_inc(x_10); +x_11 = lean_ctor_get(x_9, 1); +lean_inc(x_11); +lean_dec(x_9); +x_12 = lean_alloc_closure((void*)(l_ReaderT_pure___at_Lean_PrettyPrinter_Delaborator_instMonadQuotationDelabM___spec__1___rarg___boxed), 8, 1); +lean_closure_set(x_12, 0, x_10); +x_13 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1; +x_14 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabMVarAux___spec__1___rarg), 9, 2); +lean_closure_set(x_14, 0, x_12); +lean_closure_set(x_14, 1, x_13); +x_15 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2; +x_16 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabMVarAux___spec__1___rarg), 9, 2); +lean_closure_set(x_16, 0, x_14); +lean_closure_set(x_16, 1, x_15); +x_17 = lean_unsigned_to_nat(3u); +x_18 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_withOverApp___boxed), 9, 2); +lean_closure_set(x_18, 0, x_17); +lean_closure_set(x_18, 1, x_16); +x_19 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; +x_20 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_whenPPOption), 9, 2); +lean_closure_set(x_20, 0, x_19); +lean_closure_set(x_20, 1, x_18); +x_21 = l_Lean_PrettyPrinter_Delaborator_useAppExplicit___closed__1; +x_22 = l_Lean_PrettyPrinter_Delaborator_whenNotPPOption(x_21, x_20, x_1, x_2, x_3, x_4, x_5, x_6, x_11); +return x_22; +} +else +{ +uint8_t x_23; +lean_dec(x_6); +lean_dec(x_5); +lean_dec(x_4); +lean_dec(x_3); +lean_dec(x_2); +lean_dec(x_1); +x_23 = !lean_is_exclusive(x_9); +if (x_23 == 0) +{ +return x_9; +} +else +{ +lean_object* x_24; lean_object* x_25; lean_object* x_26; +x_24 = lean_ctor_get(x_9, 0); +x_25 = lean_ctor_get(x_9, 1); +lean_inc(x_25); +lean_inc(x_24); +lean_dec(x_9); +x_26 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_26, 0, x_24); +lean_ctor_set(x_26, 1, x_25); +return x_26; +} +} +} +} +LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___boxed(lean_object* x_1, lean_object* x_2, lean_object* x_3, lean_object* x_4, lean_object* x_5, lean_object* x_6, lean_object* x_7, lean_object* x_8) { +_start: +{ +uint8_t x_9; lean_object* x_10; +x_9 = lean_unbox(x_1); +lean_dec(x_1); +x_10 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1(x_9, x_2, x_3, x_4, x_5, x_6, x_7, x_8); return x_10; } } @@ -38182,29 +38243,39 @@ return x_6; static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__1() { _start: { -lean_object* x_1; -x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabNegIntCore___boxed), 8, 0); -return x_1; +lean_object* x_1; lean_object* x_2; +x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1; +x_2 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_getPPOption___rarg), 8, 1); +lean_closure_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__2() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2; -x_2 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__1; -x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabMVarAux___spec__1___rarg), 9, 2); -lean_closure_set(x_3, 0, x_1); -lean_closure_set(x_3, 1, x_2); -return x_3; +lean_object* x_1; +x_1 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_delabNegIntCore___boxed), 8, 0); +return x_1; } } static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6; +x_1 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__2; +x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabMVarAux___spec__1___rarg), 9, 2); +lean_closure_set(x_3, 0, x_1); +lean_closure_set(x_3, 1, x_2); +return x_3; +} +} +static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__4() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; +x_2 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_whenPPOption), 9, 2); lean_closure_set(x_3, 0, x_1); lean_closure_set(x_3, 1, x_2); @@ -38216,7 +38287,7 @@ _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; x_8 = l_Lean_PrettyPrinter_Delaborator_useAppExplicit___closed__1; -x_9 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3; +x_9 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__4; x_10 = l_Lean_PrettyPrinter_Delaborator_whenNotPPOption(x_8, x_9, x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_10; } @@ -38284,7 +38355,7 @@ static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabHDiv___closed__2 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2; +x_1 = l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabHDiv___closed__1; x_3 = lean_alloc_closure((void*)(l_ReaderT_bind___at_Lean_PrettyPrinter_Delaborator_delabMVarAux___spec__1___rarg), 9, 2); lean_closure_set(x_3, 0, x_1); @@ -38296,7 +38367,7 @@ static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabHDiv___closed__3 _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6; +x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; x_2 = l_Lean_PrettyPrinter_Delaborator_delabHDiv___closed__2; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_whenPPOption), 9, 2); lean_closure_set(x_3, 0, x_1); @@ -38898,7 +38969,7 @@ static lean_object* _init_l_Lean_PrettyPrinter_Delaborator_delabOfScientific___c _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6; +x_1 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; x_2 = l_Lean_PrettyPrinter_Delaborator_delabOfScientific___closed__3; x_3 = lean_alloc_closure((void*)(l_Lean_PrettyPrinter_Delaborator_whenPPOption), 9, 2); lean_closure_set(x_3, 0, x_1); @@ -39312,7 +39383,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabProj___closed__1; -x_3 = lean_unsigned_to_nat(1072u); +x_3 = lean_unsigned_to_nat(1074u); x_4 = lean_unsigned_to_nat(36u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -40038,7 +40109,7 @@ LEAN_EXPORT lean_object* l_Lean_PrettyPrinter_Delaborator_coeDelaborator(lean_ob _start: { lean_object* x_8; lean_object* x_9; lean_object* x_10; -x_8 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6; +x_8 = l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3; x_9 = l_Lean_PrettyPrinter_Delaborator_coeDelaborator___closed__2; x_10 = l_Lean_PrettyPrinter_Delaborator_whenPPOption(x_8, x_9, x_1, x_2, x_3, x_4, x_5, x_6, x_7); return x_10; @@ -44235,7 +44306,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabDoElems___closed__4; -x_3 = lean_unsigned_to_nat(1197u); +x_3 = lean_unsigned_to_nat(1199u); x_4 = lean_unsigned_to_nat(40u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -48320,7 +48391,7 @@ lean_closure_set(x_17, 4, x_15); lean_closure_set(x_17, 5, x_10); lean_closure_set(x_17, 6, x_16); x_18 = 0; -x_19 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_9, x_12, x_10, x_17, x_18, x_3, x_4, x_5, x_6, x_7); +x_19 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_9, x_12, x_10, x_17, x_18, x_3, x_4, x_5, x_6, x_7); return x_19; } else @@ -52499,7 +52570,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; lean_object* x_6; x_1 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__1; x_2 = l_Lean_PrettyPrinter_Delaborator_delabConstWithSignature_delabParamsAux___closed__1; -x_3 = lean_unsigned_to_nat(1322u); +x_3 = lean_unsigned_to_nat(1324u); x_4 = lean_unsigned_to_nat(42u); x_5 = l_Lean_PrettyPrinter_Delaborator_delabFVar___closed__3; x_6 = l___private_Init_Util_0__mkPanicMessageWithDecl(x_1, x_2, x_3, x_4, x_5); @@ -54292,20 +54363,14 @@ l_Lean_PrettyPrinter_Delaborator_delabDivRatCore___closed__8 = _init_l_Lean_Pret lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabDivRatCore___closed__8); l_Lean_PrettyPrinter_Delaborator_delabDivRatCore___closed__9 = _init_l_Lean_PrettyPrinter_Delaborator_delabDivRatCore___closed__9(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabDivRatCore___closed__9); +l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___lambda__1___closed__1); l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__1); l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__2); l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__3); -l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__4 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__4(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__4); -l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__5 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__5(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__5); -l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__6); -l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__7 = _init_l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__7(); -lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabOfNat___closed__7); l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfNat__1___closed__1 = _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfNat__1___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfNat__1___closed__1); l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfNat__1___closed__2 = _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabOfNat__1___closed__2(); @@ -54323,6 +54388,8 @@ l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__2 = _init_l_Lean_PrettyPrint lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__2); l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3 = _init_l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3(); lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__3); +l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__4 = _init_l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__4(); +lean_mark_persistent(l_Lean_PrettyPrinter_Delaborator_delabNeg___closed__4); l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNeg__1___closed__1 = _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNeg__1___closed__1(); lean_mark_persistent(l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNeg__1___closed__1); l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNeg__1___closed__2 = _init_l___regBuiltin_Lean_PrettyPrinter_Delaborator_delabNeg__1___closed__2(); diff --git a/stage0/stdlib/Lean/Server/Completion.c b/stage0/stdlib/Lean/Server/Completion.c index eeece36699..463ba2792f 100644 --- a/stage0/stdlib/Lean/Server/Completion.c +++ b/stage0/stdlib/Lean/Server/Completion.c @@ -289,6 +289,7 @@ lean_object* lean_local_ctx_find(lean_object*, lean_object*); LEAN_EXPORT uint8_t l_Array_qsort_sort___at___private_Lean_Server_Completion_0__Lean_Server_Completion_sortCompletionItems___spec__2___lambda__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Completion_0__Lean_Lsp_fromJsonCompletionIdentifier____x40_Lean_Server_Completion___hyg_136____lambda__3___closed__2; lean_object* lean_st_ref_take(lean_object*, lean_object*); +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_isSyntheticTacticCompletion___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_string_utf8_next(lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_forEligibleDeclsM(lean_object*); @@ -699,7 +700,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Compl static lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_truncate_go___closed__2; lean_object* l_List_dropWhile___rarg(lean_object*, lean_object*); static lean_object* l___private_Lean_Structure_0__Lean_setStructureResolutionOrder___at___private_Lean_Server_Completion_0__Lean_Server_Completion_getDotCompletionTypeNames_visit___spec__25___closed__4; -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_getIndentationAmount___boxed(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Completion_0__Lean_Server_Completion_optionCompletion___closed__4; LEAN_EXPORT lean_object* l_Lean_computeStructureResolutionOrder___at___private_Lean_Server_Completion_0__Lean_Server_Completion_getDotCompletionTypeNames_visit___spec__5___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -894,7 +894,7 @@ x_15 = lean_alloc_closure((void*)(l___private_Lean_Server_Completion_0__Lean_Ser lean_closure_set(x_15, 0, x_10); lean_closure_set(x_15, 1, x_2); x_16 = 0; -x_17 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_8, x_11, x_9, x_15, x_16, x_3, x_4, x_5, x_6, x_7); +x_17 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_8, x_11, x_9, x_15, x_16, x_3, x_4, x_5, x_6, x_7); return x_17; } } diff --git a/stage0/stdlib/Lean/Server/FileWorker.c b/stage0/stdlib/Lean/Server/FileWorker.c index df72f77160..312eea7ac0 100644 --- a/stage0/stdlib/Lean/Server/FileWorker.c +++ b/stage0/stdlib/Lean/Server/FileWorker.c @@ -298,6 +298,7 @@ lean_object* l_Lean_RBNode_find___at_Lean_Server_wrapRpcProcedure___elambda__1__ lean_object* lean_io_map_task(lean_object*, lean_object*, lean_object*, uint8_t, lean_object*); static lean_object* l_Lean_Server_FileWorker_mainLoop___closed__2; lean_object* lean_get_stdin(lean_object*); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_RBNode_insert___at_Lean_Server_FileWorker_queueRequest___spec__1(lean_object*, lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readRequestAs___at_Lean_Server_FileWorker_initAndRunWorker___spec__2___closed__32; static lean_object* l_Lean_Widget_instRpcEncodableDiagnosticWith_enc____x40_Lean_Widget_InteractiveDiagnostic___hyg_1850____at_Lean_Server_FileWorker_handleRequest___spec__4___closed__2; @@ -546,7 +547,6 @@ LEAN_EXPORT lean_object* l___private_Lean_Server_FileWorker_0__Lean_Server_FileW static lean_object* l_Lean_RBNode_foldM___at_Lean_Server_FileWorker_mainLoop___spec__1___closed__1; lean_object* lean_array_uset(lean_object*, size_t, lean_object*); static lean_object* l_IO_FS_Stream_readRequestAs___at_Lean_Server_FileWorker_initAndRunWorker___spec__2___closed__54; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_FileWorker_handleRequest___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_FileWorker_sendServerRequest___at_Lean_Server_FileWorker_runRefreshTask___spec__1(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Widget_TaggedText_stripTags___rarg(lean_object*); @@ -20468,7 +20468,7 @@ lean_inc(x_23); x_27 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__2(x_23, x_26); x_28 = l_IO_FS_Stream_readRequestAs___at_Lean_Server_FileWorker_initAndRunWorker___spec__2___closed__5; lean_inc(x_23); -x_29 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_23, x_28); +x_29 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_23, x_28); x_30 = l_IO_FS_Stream_readRequestAs___at_Lean_Server_FileWorker_initAndRunWorker___spec__2___closed__6; lean_inc(x_23); x_31 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__3(x_23, x_30); diff --git a/stage0/stdlib/Lean/Server/Rpc/Deriving.c b/stage0/stdlib/Lean/Server/Rpc/Deriving.c index 0e9f2fd16a..ecfda4d433 100644 --- a/stage0/stdlib/Lean/Server/Rpc/Deriving.c +++ b/stage0/stdlib/Lean/Server/Rpc/Deriving.c @@ -44,6 +44,8 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__4; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__8(size_t, size_t, lean_object*); +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__16; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__12; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6___boxed(lean_object*, lean_object*, lean_object*); @@ -82,6 +84,7 @@ lean_object* l_Lean_Elab_Command_elabCommand(lean_object*, lean_object*, lean_ob lean_object* lean_array_fget(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__14___lambda__1___closed__5; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__6; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__5; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; @@ -94,7 +97,6 @@ lean_object* lean_environment_find(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__55; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__7; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__9; @@ -102,11 +104,11 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__108; lean_object* l_Lean_Syntax_node5(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__2; LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___boxed(lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_stringToMessageData(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__11(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__9; LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___lambda__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__34; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__6; @@ -144,12 +146,10 @@ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Derivi LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__13___rarg(lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); size_t lean_usize_of_nat(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__20; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__13; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__4___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__11___closed__1; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__4; lean_object* l_Lean_Elab_registerDerivingHandler(lean_object*, lean_object*, lean_object*); uint8_t l_instDecidableNot___rarg(uint8_t); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; @@ -165,9 +165,9 @@ lean_object* l_Lean_SourceInfo_fromRef(lean_object*, uint8_t); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__25; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__1; lean_object* l_Lean_Meta_isType(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__1; static lean_object* l_Lean_getConstInfo___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__2___closed__1; lean_object* l_Lean_Syntax_node6(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_getConstInfo___at_Lean_Elab_Term_mkConst___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -205,7 +205,6 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_D static lean_object* l_Lean_getConstInfo___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__2___closed__2; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__59; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__29; -static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; lean_object* l_Lean_Elab_Command_liftTermElabM___rarg(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; @@ -229,7 +228,6 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__11; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__6; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__2; @@ -256,8 +254,10 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__7; LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___lambda__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__7; LEAN_EXPORT lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1(lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__49; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__14; lean_object* l_Lean_Syntax_node2(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__50; @@ -291,8 +291,8 @@ LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_D static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__38; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18___boxed(lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, size_t, size_t, lean_object*); -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__3; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__81; +LEAN_EXPORT lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819_(lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__3(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__29; @@ -305,21 +305,21 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__15; static lean_object* l_Lean_getConstInfoInduct___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__1___closed__1; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__6(size_t, size_t, lean_object*); +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__8; lean_object* l_Lean_LocalDecl_userName(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; lean_object* l_Lean_Syntax_node4(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__14(lean_object*, size_t, size_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__14___lambda__1___closed__1; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__10; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; LEAN_EXPORT lean_object* l_Lean_Meta_forallTelescopeReducing___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__13___rarg___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__12; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__2; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; @@ -331,6 +331,7 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_ lean_object* lean_string_length(lean_object*); lean_object* l_Lean_isTracingEnabledFor___at_Lean_Elab_Term_traceAtCmdPos___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_nat_dec_eq(lean_object*, lean_object*); +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__11; lean_object* l_Lean_Meta_getFVarLocalDecl(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; lean_object* l_Lean_Syntax_SepArray_ofElems(lean_object*, lean_object*); @@ -338,16 +339,18 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod uint8_t lean_nat_dec_lt(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; lean_object* lean_environment_main_module(lean_object*); +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__4; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; LEAN_EXPORT uint8_t l_Lean_Server_RpcEncodable_isOptField(lean_object*); LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(lean_object*, lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__13; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__37; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); -static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__123; lean_object* l_Lean_Name_mkStr2(lean_object*, lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__5___closed__4; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__9; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -356,6 +359,7 @@ static lean_object* l_Lean_Server_RpcEncodable_isOptField___closed__2; lean_object* l_Lean_Syntax_node7(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* l_Lean_Syntax_node1(lean_object*, lean_object*, lean_object*); lean_object* l_Lean_mkSepArray(lean_object*, lean_object*); +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__3; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__49; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__11; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__52; @@ -373,6 +377,7 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; lean_object* lean_nat_sub(lean_object*, lean_object*); +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__15; uint8_t l_Lean_isStructure(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; LEAN_EXPORT lean_object* l_Lean_throwError___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__4(lean_object*, lean_object*, lean_object*, lean_object*); @@ -385,7 +390,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_ static lean_object* l_Lean_getConstInfoCtor___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__1___closed__2; LEAN_EXPORT lean_object* l_Lean_getConstInfoInduct___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__106; -LEAN_EXPORT lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847_(lean_object*); static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__48; lean_object* lean_array_mk(lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; @@ -393,7 +397,6 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; uint8_t l_Substring_beq(lean_object*, lean_object*); size_t lean_usize_add(size_t, size_t); -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__16; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; LEAN_EXPORT lean_object* l_Lean_getConstInfo___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__2(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__6; @@ -403,11 +406,10 @@ static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Derivi lean_object* lean_array_uget(lean_object*, size_t); size_t lean_array_size(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__14___lambda__1___closed__2; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__2; +static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__5; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__13; LEAN_EXPORT lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__8; lean_object* l_Lean_Name_mkStr4(lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; lean_object* l_Lean_Elab_addMacroStack___at_Lean_Elab_Command_instAddErrorMessageContextCommandElabM___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -417,8 +419,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_ LEAN_EXPORT lean_object* l_Lean_Server_RpcEncodable_isOptField___boxed(lean_object*); static lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__14___lambda__1___closed__4; LEAN_EXPORT lean_object* l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(size_t, size_t, lean_object*); -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__5; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__10; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; lean_object* l_Lean_Parser_Term_matchAlt(lean_object*); @@ -433,7 +433,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__11; uint8_t lean_nat_dec_le(lean_object*, lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; uint8_t lean_usize_dec_lt(size_t, size_t); @@ -482,7 +481,6 @@ static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncod LEAN_EXPORT lean_object* l_Lean_Server_RpcEncodable_instCoeTSyntaxConsSyntaxNodeKindStrNumAnonymousOfNatNatNilMkStr4(lean_object*); static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__87; lean_object* l_Lean_Parser_termParser(lean_object*); -static lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__14; static lean_object* l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; static lean_object* l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; LEAN_EXPORT uint8_t l_Lean_Server_RpcEncodable_isOptField___lambda__1(lean_object* x_1) { @@ -3078,13 +3076,22 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("group", 5, 5); +x_1 = lean_mk_string_unchecked("FromJson", 8, 8); return x_1; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25() { _start: { +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__24; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26() { +_start: +{ lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__24; @@ -3092,21 +3099,14 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26() { -_start: -{ -lean_object* x_1; -x_1 = lean_mk_string_unchecked("FromJson", 8, 8); -return x_1; -} -} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__24; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28() { @@ -3114,19 +3114,21 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__29() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__30() { @@ -3144,38 +3146,16 @@ return x_3; static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__29; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__30; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__30; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32() { _start: { lean_object* x_1; @@ -3183,7 +3163,7 @@ x_1 = lean_mk_string_unchecked(",", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33() { _start: { lean_object* x_1; @@ -3191,33 +3171,55 @@ x_1 = lean_mk_string_unchecked("ToJson", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +x_3 = l_Lean_Name_mkStr2(x_1, x_2); +return x_3; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__38() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; -x_3 = l_Lean_Name_mkStr2(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__39() { @@ -3235,38 +3237,16 @@ return x_3; static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__38; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__39; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__39; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41() { _start: { lean_object* x_1; @@ -3274,6 +3254,26 @@ x_1 = lean_mk_string_unchecked("in", 2, 2); return x_1; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; +x_3 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__1; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("variable", 8, 8); +return x_1; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44() { _start: { @@ -3290,7 +3290,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("variable", 8, 8); +x_1 = lean_mk_string_unchecked("instance", 8, 8); return x_1; } } @@ -3310,7 +3310,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("instance", 8, 8); +x_1 = lean_mk_string_unchecked("attrKind", 8, 8); return x_1; } } @@ -3320,7 +3320,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__1; +x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -3330,7 +3330,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("attrKind", 8, 8); +x_1 = lean_mk_string_unchecked("declSig", 7, 7); return x_1; } } @@ -3340,7 +3340,7 @@ _start: lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; +x_3 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__1; x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__49; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -3349,33 +3349,13 @@ return x_5; static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("declSig", 7, 7); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__1; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53() { -_start: -{ lean_object* x_1; lean_object* x_2; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__29; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -3385,7 +3365,7 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__55() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; @@ -3396,6 +3376,28 @@ x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); return x_4; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__55() { +_start: +{ +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; +x_2 = lean_alloc_ctor(0, 1, 0); +lean_ctor_set(x_2, 0, x_1); +return x_2; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__56() { _start: { @@ -3411,38 +3413,16 @@ return x_3; static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__55; -x_2 = lean_alloc_ctor(0, 1, 0); -lean_ctor_set(x_2, 0, x_1); -return x_2; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__58() { -_start: -{ lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__56; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__58; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__56; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__58() { _start: { lean_object* x_1; @@ -3450,19 +3430,19 @@ x_1 = lean_mk_string_unchecked("explicit", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__58; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60() { _start: { lean_object* x_1; @@ -3470,7 +3450,7 @@ x_1 = lean_mk_string_unchecked("@", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61() { _start: { lean_object* x_1; @@ -3478,29 +3458,29 @@ x_1 = lean_mk_string_unchecked("term", 4, 4); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__64() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__64; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__66() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__64() { _start: { lean_object* x_1; @@ -3508,13 +3488,33 @@ x_1 = lean_mk_string_unchecked("declValSimple", 13, 13); return x_1; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; +x_3 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__1; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__64; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__66() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("structInst", 10, 10); +return x_1; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__1; +x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__66; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -3524,31 +3524,11 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("structInst", 10, 10); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70() { -_start: -{ -lean_object* x_1; x_1 = lean_mk_string_unchecked("{", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69() { _start: { lean_object* x_1; @@ -3556,26 +3536,26 @@ x_1 = lean_mk_string_unchecked("enc", 3, 3); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72() { _start: { lean_object* x_1; @@ -3583,26 +3563,26 @@ x_1 = lean_mk_string_unchecked("dec", 3, 3); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75() { _start: { lean_object* x_1; @@ -3610,19 +3590,19 @@ x_1 = lean_mk_string_unchecked("optEllipsis", 11, 11); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77() { _start: { lean_object* x_1; @@ -3630,7 +3610,7 @@ x_1 = lean_mk_string_unchecked("}", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78() { _start: { lean_object* x_1; @@ -3638,7 +3618,7 @@ x_1 = lean_mk_string_unchecked("Termination", 11, 11); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__81() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79() { _start: { lean_object* x_1; @@ -3646,13 +3626,33 @@ x_1 = lean_mk_string_unchecked("suffix", 6, 6); return x_1; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; +x_3 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__81() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("whereDecls", 10, 10); +return x_1; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__81; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; @@ -3662,7 +3662,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("whereDecls", 10, 10); +x_1 = lean_mk_string_unchecked("letRecDecl", 10, 10); return x_1; } } @@ -3682,7 +3682,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("letRecDecl", 10, 10); +x_1 = lean_mk_string_unchecked("letDecl", 7, 7); return x_1; } } @@ -3702,7 +3702,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("letDecl", 7, 7); +x_1 = lean_mk_string_unchecked("letIdDecl", 9, 9); return x_1; } } @@ -3722,7 +3722,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("letIdDecl", 9, 9); +x_1 = lean_mk_string_unchecked("termReturn", 10, 10); return x_1; } } @@ -3742,31 +3742,11 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("termReturn", 10, 10); -return x_1; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93() { -_start: -{ -lean_object* x_1; x_1 = lean_mk_string_unchecked("return", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92() { _start: { lean_object* x_1; @@ -3774,73 +3754,73 @@ x_1 = lean_mk_string_unchecked("toJson", 6, 6); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +x_3 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; -x_3 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(2); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; x_3 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); return x_3; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99() { _start: { lean_object* x_1; @@ -3848,30 +3828,50 @@ x_1 = lean_mk_string_unchecked("j", 1, 1); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100() { _start: { lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; x_2 = l_String_toSubstring_x27(x_1); return x_2; } } +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101() { +_start: +{ +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; +} +} +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102() { +_start: +{ +lean_object* x_1; +x_1 = lean_mk_string_unchecked("do", 2, 2); +return x_1; +} +} static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; -x_3 = l_Lean_Name_str___override(x_1, x_2); -return x_3; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; +x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("do", 2, 2); +x_1 = lean_mk_string_unchecked("doSeqIndent", 11, 11); return x_1; } } @@ -3891,7 +3891,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("doSeqIndent", 11, 11); +x_1 = lean_mk_string_unchecked("doSeqItem", 9, 9); return x_1; } } @@ -3911,7 +3911,7 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("doSeqItem", 9, 9); +x_1 = lean_mk_string_unchecked("doLetArrow", 10, 10); return x_1; } } @@ -3931,35 +3931,35 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("doLetArrow", 10, 10); +x_1 = lean_mk_string_unchecked("let", 3, 3); return x_1; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; +x_1 = lean_mk_string_unchecked("doIdDecl", 8, 8); +return x_1; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("let", 3, 3); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; +x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; +x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); +return x_5; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__113() { _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("doIdDecl", 8, 8); +x_1 = lean_mk_string_unchecked("doExpr", 6, 6); return x_1; } } @@ -3979,37 +3979,38 @@ static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_Rp _start: { lean_object* x_1; -x_1 = lean_mk_string_unchecked("doExpr", 6, 6); +x_1 = lean_mk_string_unchecked("fromJson\?", 9, 9); return x_1; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; -x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__115; -x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); -return x_5; +lean_object* x_1; lean_object* x_2; +x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__115; +x_2 = l_String_toSubstring_x27(x_1); +return x_2; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117() { _start: { -lean_object* x_1; -x_1 = lean_mk_string_unchecked("fromJson\?", 9, 9); -return x_1; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__115; +x_3 = l_Lean_Name_str___override(x_1, x_2); +return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118() { _start: { -lean_object* x_1; lean_object* x_2; -x_1 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; -x_2 = l_String_toSubstring_x27(x_1); -return x_2; +lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; +x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__24; +x_3 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__115; +x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); +return x_4; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119() { @@ -4017,62 +4018,41 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; -x_3 = l_Lean_Name_str___override(x_1, x_2); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; -x_3 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; -x_4 = l_Lean_Name_mkStr3(x_1, x_2, x_3); -return x_4; +lean_object* x_1; lean_object* x_2; lean_object* x_3; +x_1 = lean_box(0); +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; +x_3 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_3, 0, x_2); +lean_ctor_set(x_3, 1, x_1); +return x_3; } } static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__121() { _start: { -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122() { -_start: -{ -lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__121; -x_3 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_3, 0, x_2); -lean_ctor_set(x_3, 1, x_1); -return x_3; -} -} -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__123() { -_start: -{ lean_object* x_1; x_1 = lean_mk_string_unchecked("doReturn", 8, 8); return x_1; } } -static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124() { +static lean_object* _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; lean_object* x_4; lean_object* x_5; x_1 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__10; x_3 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__11; -x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__123; +x_4 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__121; x_5 = l_Lean_Name_mkStr4(x_1, x_2, x_3, x_4); return x_5; } @@ -4143,7 +4123,7 @@ x_42 = lean_st_ref_get(x_11, x_37); x_43 = !lean_is_exclusive(x_42); if (x_43 == 0) { -lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; size_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; size_t x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; size_t x_186; lean_object* x_187; size_t x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; +lean_object* x_44; lean_object* x_45; lean_object* x_46; lean_object* x_47; lean_object* x_48; lean_object* x_49; lean_object* x_50; lean_object* x_51; lean_object* x_52; lean_object* x_53; lean_object* x_54; lean_object* x_55; lean_object* x_56; lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; size_t x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; lean_object* x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; size_t x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; size_t x_183; lean_object* x_184; size_t x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; lean_object* x_257; lean_object* x_258; x_44 = lean_ctor_get(x_42, 0); x_45 = lean_ctor_get(x_44, 0); lean_inc(x_45); @@ -4216,967 +4196,953 @@ lean_inc(x_40); lean_ctor_set_tag(x_19, 2); lean_ctor_set(x_19, 1, x_70); lean_ctor_set(x_19, 0, x_40); -x_71 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +x_71 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; lean_inc(x_41); lean_inc(x_46); x_72 = l_Lean_addMacroScope(x_46, x_71, x_41); -x_73 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_74 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +x_73 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_74 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; lean_inc(x_40); x_75 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_75, 0, x_40); lean_ctor_set(x_75, 1, x_73); lean_ctor_set(x_75, 2, x_72); lean_ctor_set(x_75, 3, x_74); -x_76 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_49); -lean_inc(x_40); -x_77 = l_Lean_Syntax_node2(x_40, x_76, x_75, x_49); -x_78 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_76 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; lean_inc(x_40); lean_ctor_set_tag(x_18, 2); -lean_ctor_set(x_18, 1, x_78); +lean_ctor_set(x_18, 1, x_76); lean_ctor_set(x_18, 0, x_40); -x_79 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; +x_77 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; lean_inc(x_41); lean_inc(x_46); -x_80 = l_Lean_addMacroScope(x_46, x_79, x_41); -x_81 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_82 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +x_78 = l_Lean_addMacroScope(x_46, x_77, x_41); +x_79 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_80 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; lean_inc(x_40); -x_83 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_83, 0, x_40); -lean_ctor_set(x_83, 1, x_81); -lean_ctor_set(x_83, 2, x_80); -lean_ctor_set(x_83, 3, x_82); -lean_inc(x_49); -lean_inc(x_40); -x_84 = l_Lean_Syntax_node2(x_40, x_76, x_83, x_49); +x_81 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_81, 0, x_40); +lean_ctor_set(x_81, 1, x_79); +lean_ctor_set(x_81, 2, x_78); +lean_ctor_set(x_81, 3, x_80); lean_inc(x_18); lean_inc(x_40); -x_85 = l_Lean_Syntax_node3(x_40, x_47, x_77, x_18, x_84); +x_82 = l_Lean_Syntax_node3(x_40, x_47, x_75, x_18, x_81); lean_inc(x_40); -x_86 = l_Lean_Syntax_node2(x_40, x_47, x_19, x_85); -x_87 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +x_83 = l_Lean_Syntax_node2(x_40, x_47, x_19, x_82); +x_84 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; lean_inc(x_40); -x_88 = l_Lean_Syntax_node1(x_40, x_87, x_86); -x_89 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; +x_85 = l_Lean_Syntax_node1(x_40, x_84, x_83); +x_86 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; lean_inc_n(x_49, 3); lean_inc(x_40); -x_90 = l_Lean_Syntax_node7(x_40, x_89, x_54, x_60, x_49, x_49, x_49, x_69, x_88); -x_91 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +x_87 = l_Lean_Syntax_node7(x_40, x_86, x_54, x_60, x_49, x_49, x_49, x_69, x_85); +x_88 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; lean_inc(x_51); lean_inc(x_40); -x_92 = l_Lean_Syntax_node2(x_40, x_91, x_51, x_90); -x_93 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +x_89 = l_Lean_Syntax_node2(x_40, x_88, x_51, x_87); +x_90 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; lean_inc(x_40); -x_94 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_94, 0, x_40); -lean_ctor_set(x_94, 1, x_93); -x_95 = l_Array_append___rarg(x_48, x_3); +x_91 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_91, 0, x_40); +lean_ctor_set(x_91, 1, x_90); +x_92 = l_Array_append___rarg(x_48, x_3); lean_inc(x_40); -x_96 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_96, 0, x_40); -lean_ctor_set(x_96, 1, x_47); -lean_ctor_set(x_96, 2, x_95); -x_97 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +x_93 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_93, 0, x_40); +lean_ctor_set(x_93, 1, x_47); +lean_ctor_set(x_93, 2, x_92); +x_94 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; lean_inc(x_40); -x_98 = l_Lean_Syntax_node2(x_40, x_97, x_94, x_96); -x_99 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +x_95 = l_Lean_Syntax_node2(x_40, x_94, x_91, x_93); +x_96 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; lean_inc(x_40); -x_100 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_100, 0, x_40); -lean_ctor_set(x_100, 1, x_99); -x_101 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +x_97 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_97, 0, x_40); +lean_ctor_set(x_97, 1, x_96); +x_98 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; lean_inc(x_49); lean_inc(x_40); -x_102 = l_Lean_Syntax_node1(x_40, x_101, x_49); -x_103 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; +x_99 = l_Lean_Syntax_node1(x_40, x_98, x_49); +x_100 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; lean_inc(x_40); -x_104 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_104, 0, x_40); -lean_ctor_set(x_104, 1, x_103); -x_105 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +x_101 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_101, 0, x_40); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; lean_inc(x_40); -x_106 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_106, 0, x_40); -lean_ctor_set(x_106, 1, x_105); -x_107 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_103 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_103, 0, x_40); +lean_ctor_set(x_103, 1, x_102); +x_104 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; lean_inc(x_41); lean_inc(x_46); -x_108 = l_Lean_addMacroScope(x_46, x_107, x_41); -x_109 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_110 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +x_105 = l_Lean_addMacroScope(x_46, x_104, x_41); +x_106 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_107 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; lean_inc(x_40); -x_111 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_111, 0, x_40); -lean_ctor_set(x_111, 1, x_109); -lean_ctor_set(x_111, 2, x_108); -lean_ctor_set(x_111, 3, x_110); -x_112 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +x_108 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_108, 0, x_40); +lean_ctor_set(x_108, 1, x_106); +lean_ctor_set(x_108, 2, x_105); +lean_ctor_set(x_108, 3, x_107); +x_109 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; lean_inc(x_40); -x_113 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_113, 0, x_40); -lean_ctor_set(x_113, 1, x_112); -x_114 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; +x_110 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_110, 0, x_40); +lean_ctor_set(x_110, 1, x_109); +x_111 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; lean_inc(x_40); -x_115 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_115, 0, x_40); -lean_ctor_set(x_115, 1, x_114); -x_116 = lean_box(0); -x_117 = l_Lean_mkCIdentFrom(x_116, x_4, x_39); -x_118 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; +x_112 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_112, 0, x_40); +lean_ctor_set(x_112, 1, x_111); +x_113 = lean_box(0); +x_114 = l_Lean_mkCIdentFrom(x_113, x_4, x_39); +x_115 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; lean_inc(x_40); -x_119 = l_Lean_Syntax_node2(x_40, x_118, x_115, x_117); -x_120 = lean_array_size(x_36); -x_121 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; -x_122 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_121, x_120, x_16, x_36); -x_123 = l_Array_append___rarg(x_48, x_122); -lean_dec(x_122); +x_116 = l_Lean_Syntax_node2(x_40, x_115, x_112, x_114); +x_117 = lean_array_size(x_36); +x_118 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_119 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_118, x_117, x_16, x_36); +x_120 = l_Array_append___rarg(x_48, x_119); +lean_dec(x_119); lean_inc(x_40); -x_124 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_124, 0, x_40); -lean_ctor_set(x_124, 1, x_47); -lean_ctor_set(x_124, 2, x_123); -x_125 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +x_121 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_121, 0, x_40); +lean_ctor_set(x_121, 1, x_47); +lean_ctor_set(x_121, 2, x_120); +x_122 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; lean_inc(x_40); -x_126 = l_Lean_Syntax_node2(x_40, x_125, x_119, x_124); -x_127 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; +x_123 = l_Lean_Syntax_node2(x_40, x_122, x_116, x_121); +x_124 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; lean_inc(x_40); -x_128 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_128, 0, x_40); -lean_ctor_set(x_128, 1, x_127); -x_129 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; +x_125 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_125, 0, x_40); +lean_ctor_set(x_125, 1, x_124); +x_126 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; lean_inc(x_40); -x_130 = l_Lean_Syntax_node3(x_40, x_129, x_113, x_126, x_128); +x_127 = l_Lean_Syntax_node3(x_40, x_126, x_110, x_123, x_125); lean_inc(x_40); -x_131 = l_Lean_Syntax_node1(x_40, x_47, x_130); +x_128 = l_Lean_Syntax_node1(x_40, x_47, x_127); lean_inc(x_40); -x_132 = l_Lean_Syntax_node2(x_40, x_125, x_111, x_131); -x_133 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_106); +x_129 = l_Lean_Syntax_node2(x_40, x_122, x_108, x_128); +x_130 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_103); lean_inc(x_40); -x_134 = l_Lean_Syntax_node2(x_40, x_133, x_106, x_132); -x_135 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +x_131 = l_Lean_Syntax_node2(x_40, x_130, x_103, x_129); +x_132 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; lean_inc(x_49); lean_inc(x_40); -x_136 = l_Lean_Syntax_node2(x_40, x_135, x_49, x_134); -x_137 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +x_133 = l_Lean_Syntax_node2(x_40, x_132, x_49, x_131); +x_134 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; lean_inc(x_40); -x_138 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_138, 0, x_40); -lean_ctor_set(x_138, 1, x_137); -x_139 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +x_135 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_135, 0, x_40); +lean_ctor_set(x_135, 1, x_134); +x_136 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; lean_inc(x_40); -x_140 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_140, 0, x_40); -lean_ctor_set(x_140, 1, x_139); -x_141 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_137 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_137, 0, x_40); +lean_ctor_set(x_137, 1, x_136); +x_138 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; lean_inc(x_41); lean_inc(x_46); -x_142 = l_Lean_addMacroScope(x_46, x_141, x_41); -x_143 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_144 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +x_139 = l_Lean_addMacroScope(x_46, x_138, x_41); +x_140 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_141 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; lean_inc(x_40); -x_145 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_145, 0, x_40); -lean_ctor_set(x_145, 1, x_143); -lean_ctor_set(x_145, 2, x_142); -lean_ctor_set(x_145, 3, x_144); -x_146 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +x_142 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_142, 0, x_40); +lean_ctor_set(x_142, 1, x_140); +lean_ctor_set(x_142, 2, x_139); +lean_ctor_set(x_142, 3, x_141); +x_143 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; lean_inc(x_49); lean_inc(x_40); -x_147 = l_Lean_Syntax_node2(x_40, x_146, x_145, x_49); -x_148 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +x_144 = l_Lean_Syntax_node2(x_40, x_143, x_142, x_49); +x_145 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; lean_inc(x_41); lean_inc(x_46); -x_149 = l_Lean_addMacroScope(x_46, x_148, x_41); -x_150 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; +x_146 = l_Lean_addMacroScope(x_46, x_145, x_41); +x_147 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; lean_inc(x_40); -x_151 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_151, 0, x_40); -lean_ctor_set(x_151, 1, x_150); -lean_ctor_set(x_151, 2, x_149); -lean_ctor_set(x_151, 3, x_13); -x_152 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_151); -lean_inc(x_138); +x_148 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_148, 0, x_40); +lean_ctor_set(x_148, 1, x_147); +lean_ctor_set(x_148, 2, x_146); +lean_ctor_set(x_148, 3, x_13); +x_149 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_148); +lean_inc(x_135); lean_inc(x_40); -x_153 = l_Lean_Syntax_node3(x_40, x_152, x_147, x_138, x_151); -x_154 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +x_150 = l_Lean_Syntax_node3(x_40, x_149, x_144, x_135, x_148); +x_151 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; lean_inc(x_41); lean_inc(x_46); -x_155 = l_Lean_addMacroScope(x_46, x_154, x_41); -x_156 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_157 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +x_152 = l_Lean_addMacroScope(x_46, x_151, x_41); +x_153 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_154 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; lean_inc(x_40); -x_158 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_158, 0, x_40); -lean_ctor_set(x_158, 1, x_156); -lean_ctor_set(x_158, 2, x_155); -lean_ctor_set(x_158, 3, x_157); +x_155 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_155, 0, x_40); +lean_ctor_set(x_155, 1, x_153); +lean_ctor_set(x_155, 2, x_152); +lean_ctor_set(x_155, 3, x_154); lean_inc(x_49); lean_inc(x_40); -x_159 = l_Lean_Syntax_node2(x_40, x_146, x_158, x_49); -x_160 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +x_156 = l_Lean_Syntax_node2(x_40, x_143, x_155, x_49); +x_157 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; lean_inc(x_41); lean_inc(x_46); -x_161 = l_Lean_addMacroScope(x_46, x_160, x_41); -x_162 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; +x_158 = l_Lean_addMacroScope(x_46, x_157, x_41); +x_159 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; lean_inc(x_40); -x_163 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_163, 0, x_40); -lean_ctor_set(x_163, 1, x_162); -lean_ctor_set(x_163, 2, x_161); -lean_ctor_set(x_163, 3, x_13); -lean_inc(x_163); -lean_inc(x_138); +x_160 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_160, 0, x_40); +lean_ctor_set(x_160, 1, x_159); +lean_ctor_set(x_160, 2, x_158); +lean_ctor_set(x_160, 3, x_13); +lean_inc(x_160); +lean_inc(x_135); lean_inc(x_40); -x_164 = l_Lean_Syntax_node3(x_40, x_152, x_159, x_138, x_163); +x_161 = l_Lean_Syntax_node3(x_40, x_149, x_156, x_135, x_160); lean_inc(x_40); -x_165 = l_Lean_Syntax_node3(x_40, x_47, x_153, x_18, x_164); -x_166 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; +x_162 = l_Lean_Syntax_node3(x_40, x_47, x_150, x_18, x_161); +x_163 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; lean_inc(x_49); lean_inc(x_40); -x_167 = l_Lean_Syntax_node1(x_40, x_166, x_49); -x_168 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; +x_164 = l_Lean_Syntax_node1(x_40, x_163, x_49); +x_165 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; lean_inc(x_40); -x_169 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_169, 0, x_40); -lean_ctor_set(x_169, 1, x_168); -x_170 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc(x_169); -lean_inc(x_167); +x_166 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_166, 0, x_40); +lean_ctor_set(x_166, 1, x_165); +x_167 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc(x_166); +lean_inc(x_164); lean_inc_n(x_49, 2); -lean_inc(x_140); +lean_inc(x_137); lean_inc(x_40); -x_171 = l_Lean_Syntax_node6(x_40, x_170, x_140, x_49, x_165, x_167, x_49, x_169); -x_172 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +x_168 = l_Lean_Syntax_node6(x_40, x_167, x_137, x_49, x_162, x_164, x_49, x_166); +x_169 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; lean_inc_n(x_49, 2); lean_inc(x_40); -x_173 = l_Lean_Syntax_node2(x_40, x_172, x_49, x_49); -x_174 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +x_170 = l_Lean_Syntax_node2(x_40, x_169, x_49, x_49); +x_171 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; lean_inc(x_41); lean_inc(x_46); -x_175 = l_Lean_addMacroScope(x_46, x_174, x_41); -x_176 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; +x_172 = l_Lean_addMacroScope(x_46, x_171, x_41); +x_173 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; lean_inc(x_40); -x_177 = lean_alloc_ctor(3, 4, 0); +x_174 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_174, 0, x_40); +lean_ctor_set(x_174, 1, x_173); +lean_ctor_set(x_174, 2, x_172); +lean_ctor_set(x_174, 3, x_13); +lean_inc(x_174); +lean_inc(x_40); +x_175 = l_Lean_Syntax_node1(x_40, x_47, x_174); +x_176 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; +lean_inc(x_40); +x_177 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_177, 0, x_40); lean_ctor_set(x_177, 1, x_176); -lean_ctor_set(x_177, 2, x_175); -lean_ctor_set(x_177, 3, x_13); +x_178 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +lean_inc(x_41); +lean_inc(x_46); +x_179 = l_Lean_addMacroScope(x_46, x_178, x_41); +x_180 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_181 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +lean_inc(x_40); +x_182 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_182, 0, x_40); +lean_ctor_set(x_182, 1, x_180); +lean_ctor_set(x_182, 2, x_179); +lean_ctor_set(x_182, 3, x_181); +x_183 = lean_array_size(x_29); +x_184 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_149, x_183, x_16, x_29); +x_185 = lean_array_size(x_184); +x_186 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_185, x_16, x_184); +x_187 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; +x_188 = l_Lean_mkSepArray(x_186, x_187); +lean_dec(x_186); +x_189 = l_Array_append___rarg(x_48, x_188); +lean_dec(x_188); +lean_inc(x_40); +x_190 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_190, 0, x_40); +lean_ctor_set(x_190, 1, x_47); +lean_ctor_set(x_190, 2, x_189); +lean_inc(x_58); +lean_inc(x_103); +lean_inc(x_40); +x_191 = l_Lean_Syntax_node2(x_40, x_47, x_103, x_58); +lean_inc(x_166); +lean_inc(x_164); +lean_inc(x_49); +lean_inc(x_137); +lean_inc(x_40); +x_192 = l_Lean_Syntax_node6(x_40, x_167, x_137, x_49, x_190, x_164, x_191, x_166); +lean_inc(x_40); +x_193 = l_Lean_Syntax_node1(x_40, x_47, x_192); +lean_inc(x_40); +x_194 = l_Lean_Syntax_node2(x_40, x_122, x_182, x_193); +lean_inc(x_40); +x_195 = l_Lean_Syntax_node1(x_40, x_47, x_194); +x_196 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; lean_inc(x_177); lean_inc(x_40); -x_178 = l_Lean_Syntax_node1(x_40, x_47, x_177); -x_179 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; -lean_inc(x_40); -x_180 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_180, 0, x_40); -lean_ctor_set(x_180, 1, x_179); -x_181 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; -lean_inc(x_41); -lean_inc(x_46); -x_182 = l_Lean_addMacroScope(x_46, x_181, x_41); -x_183 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_184 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; -lean_inc(x_40); -x_185 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_185, 0, x_40); -lean_ctor_set(x_185, 1, x_183); -lean_ctor_set(x_185, 2, x_182); -lean_ctor_set(x_185, 3, x_184); -x_186 = lean_array_size(x_29); -x_187 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_152, x_186, x_16, x_29); -x_188 = lean_array_size(x_187); -x_189 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_188, x_16, x_187); -x_190 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; -x_191 = l_Lean_mkSepArray(x_189, x_190); -lean_dec(x_189); -x_192 = l_Array_append___rarg(x_48, x_191); -lean_dec(x_191); -lean_inc(x_40); -x_193 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_193, 0, x_40); -lean_ctor_set(x_193, 1, x_47); -lean_ctor_set(x_193, 2, x_192); -lean_inc(x_58); -lean_inc(x_106); -lean_inc(x_40); -x_194 = l_Lean_Syntax_node2(x_40, x_47, x_106, x_58); -lean_inc(x_169); -lean_inc(x_167); -lean_inc(x_49); -lean_inc(x_140); -lean_inc(x_40); -x_195 = l_Lean_Syntax_node6(x_40, x_170, x_140, x_49, x_193, x_167, x_194, x_169); -lean_inc(x_40); -x_196 = l_Lean_Syntax_node1(x_40, x_47, x_195); -lean_inc(x_40); -x_197 = l_Lean_Syntax_node2(x_40, x_125, x_185, x_196); -lean_inc(x_40); -x_198 = l_Lean_Syntax_node1(x_40, x_47, x_197); -x_199 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; -lean_inc(x_180); -lean_inc(x_40); -x_200 = l_Lean_Syntax_node2(x_40, x_199, x_180, x_198); -x_201 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_138); +x_197 = l_Lean_Syntax_node2(x_40, x_196, x_177, x_195); +x_198 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_135); lean_inc(x_49); lean_inc(x_40); -x_202 = l_Lean_Syntax_node5(x_40, x_201, x_151, x_178, x_49, x_138, x_200); -x_203 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +x_199 = l_Lean_Syntax_node5(x_40, x_198, x_148, x_175, x_49, x_135, x_197); +x_200 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; lean_inc(x_40); -x_204 = l_Lean_Syntax_node1(x_40, x_203, x_202); -x_205 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_173); +x_201 = l_Lean_Syntax_node1(x_40, x_200, x_199); +x_202 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_170); lean_inc_n(x_49, 2); lean_inc(x_40); -x_206 = l_Lean_Syntax_node4(x_40, x_205, x_49, x_49, x_204, x_173); -x_207 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +x_203 = l_Lean_Syntax_node4(x_40, x_202, x_49, x_49, x_201, x_170); +x_204 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; lean_inc(x_41); lean_inc(x_46); -x_208 = l_Lean_addMacroScope(x_46, x_207, x_41); +x_205 = l_Lean_addMacroScope(x_46, x_204, x_41); +x_206 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_40); +x_207 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_207, 0, x_40); +lean_ctor_set(x_207, 1, x_206); +lean_ctor_set(x_207, 2, x_205); +lean_ctor_set(x_207, 3, x_13); +lean_inc(x_40); +x_208 = l_Lean_Syntax_node1(x_40, x_47, x_207); x_209 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; lean_inc(x_40); -x_210 = lean_alloc_ctor(3, 4, 0); +x_210 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_210, 0, x_40); lean_ctor_set(x_210, 1, x_209); -lean_ctor_set(x_210, 2, x_208); -lean_ctor_set(x_210, 3, x_13); +x_211 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; lean_inc(x_40); -x_211 = l_Lean_Syntax_node1(x_40, x_47, x_210); -x_212 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; +x_212 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_212, 0, x_40); +lean_ctor_set(x_212, 1, x_211); lean_inc(x_40); -x_213 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_213, 0, x_40); -lean_ctor_set(x_213, 1, x_212); -x_214 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +x_213 = l_Lean_Syntax_node2(x_40, x_130, x_103, x_58); lean_inc(x_40); -x_215 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_215, 0, x_40); -lean_ctor_set(x_215, 1, x_214); +x_214 = l_Lean_Syntax_node1(x_40, x_47, x_213); +x_215 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; lean_inc(x_40); -x_216 = l_Lean_Syntax_node2(x_40, x_133, x_106, x_58); +x_216 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_216, 0, x_40); +lean_ctor_set(x_216, 1, x_215); +x_217 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +x_218 = l_Lean_addMacroScope(x_46, x_217, x_41); +x_219 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_220 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; lean_inc(x_40); -x_217 = l_Lean_Syntax_node1(x_40, x_47, x_216); -x_218 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +x_221 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_221, 0, x_40); +lean_ctor_set(x_221, 1, x_219); +lean_ctor_set(x_221, 2, x_218); +lean_ctor_set(x_221, 3, x_220); +lean_inc(x_208); lean_inc(x_40); -x_219 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_219, 0, x_40); -lean_ctor_set(x_219, 1, x_218); -x_220 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -x_221 = l_Lean_addMacroScope(x_46, x_220, x_41); -x_222 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_223 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +x_222 = l_Lean_Syntax_node2(x_40, x_122, x_221, x_208); +x_223 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; lean_inc(x_40); -x_224 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_224, 0, x_40); -lean_ctor_set(x_224, 1, x_222); -lean_ctor_set(x_224, 2, x_221); -lean_ctor_set(x_224, 3, x_223); -lean_inc(x_211); +x_224 = l_Lean_Syntax_node1(x_40, x_223, x_222); +x_225 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; lean_inc(x_40); -x_225 = l_Lean_Syntax_node2(x_40, x_125, x_224, x_211); -x_226 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_40); -x_227 = l_Lean_Syntax_node1(x_40, x_226, x_225); -x_228 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_40); -x_229 = l_Lean_Syntax_node4(x_40, x_228, x_177, x_217, x_219, x_227); -x_230 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; +x_226 = l_Lean_Syntax_node4(x_40, x_225, x_174, x_214, x_216, x_224); +x_227 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; lean_inc(x_49); lean_inc(x_40); -x_231 = l_Lean_Syntax_node3(x_40, x_230, x_215, x_49, x_229); -x_232 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +x_228 = l_Lean_Syntax_node3(x_40, x_227, x_212, x_49, x_226); +x_229 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; lean_inc(x_49); lean_inc(x_40); -x_233 = l_Lean_Syntax_node2(x_40, x_232, x_231, x_49); -x_234 = l_Lean_Syntax_SepArray_ofElems(x_78, x_26); +x_230 = l_Lean_Syntax_node2(x_40, x_229, x_228, x_49); +x_231 = l_Lean_Syntax_SepArray_ofElems(x_76, x_26); lean_dec(x_26); -x_235 = l_Array_append___rarg(x_48, x_234); -lean_dec(x_234); +x_232 = l_Array_append___rarg(x_48, x_231); +lean_dec(x_231); lean_inc(x_40); -x_236 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_236, 0, x_40); -lean_ctor_set(x_236, 1, x_47); -lean_ctor_set(x_236, 2, x_235); +x_233 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_233, 0, x_40); +lean_ctor_set(x_233, 1, x_47); +lean_ctor_set(x_233, 2, x_232); lean_inc_n(x_49, 2); lean_inc(x_40); -x_237 = l_Lean_Syntax_node6(x_40, x_170, x_140, x_49, x_236, x_167, x_49, x_169); +x_234 = l_Lean_Syntax_node6(x_40, x_167, x_137, x_49, x_233, x_164, x_49, x_166); lean_inc(x_40); -x_238 = l_Lean_Syntax_node1(x_40, x_47, x_237); -x_239 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; +x_235 = l_Lean_Syntax_node1(x_40, x_47, x_234); +x_236 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; lean_inc(x_40); -x_240 = l_Lean_Syntax_node2(x_40, x_239, x_180, x_238); +x_237 = l_Lean_Syntax_node2(x_40, x_236, x_177, x_235); lean_inc(x_49); lean_inc(x_40); -x_241 = l_Lean_Syntax_node2(x_40, x_232, x_240, x_49); +x_238 = l_Lean_Syntax_node2(x_40, x_229, x_237, x_49); lean_inc(x_40); -x_242 = l_Lean_Syntax_node2(x_40, x_47, x_233, x_241); -x_243 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +x_239 = l_Lean_Syntax_node2(x_40, x_47, x_230, x_238); +x_240 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; lean_inc(x_40); -x_244 = l_Lean_Syntax_node1(x_40, x_243, x_242); -x_245 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +x_241 = l_Lean_Syntax_node1(x_40, x_240, x_239); +x_242 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; lean_inc(x_40); -x_246 = l_Lean_Syntax_node2(x_40, x_245, x_213, x_244); -lean_inc(x_138); +x_243 = l_Lean_Syntax_node2(x_40, x_242, x_210, x_241); +lean_inc(x_135); lean_inc(x_49); lean_inc(x_40); -x_247 = l_Lean_Syntax_node5(x_40, x_201, x_163, x_211, x_49, x_138, x_246); +x_244 = l_Lean_Syntax_node5(x_40, x_198, x_160, x_208, x_49, x_135, x_243); lean_inc(x_40); -x_248 = l_Lean_Syntax_node1(x_40, x_203, x_247); -lean_inc(x_173); +x_245 = l_Lean_Syntax_node1(x_40, x_200, x_244); +lean_inc(x_170); lean_inc_n(x_49, 2); lean_inc(x_40); -x_249 = l_Lean_Syntax_node4(x_40, x_205, x_49, x_49, x_248, x_173); +x_246 = l_Lean_Syntax_node4(x_40, x_202, x_49, x_49, x_245, x_170); lean_inc(x_49); lean_inc(x_40); -x_250 = l_Lean_Syntax_node3(x_40, x_47, x_206, x_49, x_249); -x_251 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +x_247 = l_Lean_Syntax_node3(x_40, x_47, x_203, x_49, x_246); +x_248 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; lean_inc(x_40); -x_252 = l_Lean_Syntax_node2(x_40, x_251, x_20, x_250); +x_249 = l_Lean_Syntax_node2(x_40, x_248, x_20, x_247); lean_inc(x_40); -x_253 = l_Lean_Syntax_node1(x_40, x_47, x_252); -x_254 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +x_250 = l_Lean_Syntax_node1(x_40, x_47, x_249); +x_251 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; lean_inc(x_40); -x_255 = l_Lean_Syntax_node4(x_40, x_254, x_138, x_171, x_173, x_253); -x_256 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +x_252 = l_Lean_Syntax_node4(x_40, x_251, x_135, x_168, x_170, x_250); +x_253 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; lean_inc(x_49); lean_inc(x_40); -x_257 = l_Lean_Syntax_node6(x_40, x_256, x_102, x_104, x_49, x_49, x_136, x_255); +x_254 = l_Lean_Syntax_node6(x_40, x_253, x_99, x_101, x_49, x_49, x_133, x_252); lean_inc(x_40); -x_258 = l_Lean_Syntax_node2(x_40, x_91, x_51, x_257); -x_259 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +x_255 = l_Lean_Syntax_node2(x_40, x_88, x_51, x_254); +x_256 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; lean_inc(x_40); -x_260 = l_Lean_Syntax_node3(x_40, x_259, x_98, x_100, x_258); -x_261 = l_Lean_Syntax_node2(x_40, x_47, x_92, x_260); -lean_ctor_set(x_42, 0, x_261); +x_257 = l_Lean_Syntax_node3(x_40, x_256, x_95, x_97, x_255); +x_258 = l_Lean_Syntax_node2(x_40, x_47, x_89, x_257); +lean_ctor_set(x_42, 0, x_258); return x_42; } else { -lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; size_t x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; size_t x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; size_t x_405; lean_object* x_406; size_t x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; -x_262 = lean_ctor_get(x_42, 0); -x_263 = lean_ctor_get(x_42, 1); -lean_inc(x_263); -lean_inc(x_262); +lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; size_t x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; size_t x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; size_t x_399; lean_object* x_400; size_t x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; +x_259 = lean_ctor_get(x_42, 0); +x_260 = lean_ctor_get(x_42, 1); +lean_inc(x_260); +lean_inc(x_259); lean_dec(x_42); -x_264 = lean_ctor_get(x_262, 0); -lean_inc(x_264); -lean_dec(x_262); -x_265 = lean_environment_main_module(x_264); -x_266 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -x_267 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +x_261 = lean_ctor_get(x_259, 0); +lean_inc(x_261); +lean_dec(x_259); +x_262 = lean_environment_main_module(x_261); +x_263 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +x_264 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; lean_inc(x_40); -x_268 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_268, 0, x_40); -lean_ctor_set(x_268, 1, x_266); -lean_ctor_set(x_268, 2, x_267); -x_269 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_268, 6); +x_265 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_265, 0, x_40); +lean_ctor_set(x_265, 1, x_263); +lean_ctor_set(x_265, 2, x_264); +x_266 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_265, 6); lean_inc(x_40); -x_270 = l_Lean_Syntax_node6(x_40, x_269, x_268, x_268, x_268, x_268, x_268, x_268); -x_271 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; +x_267 = l_Lean_Syntax_node6(x_40, x_266, x_265, x_265, x_265, x_265, x_265, x_265); +x_268 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; lean_inc(x_40); lean_ctor_set_tag(x_21, 2); -lean_ctor_set(x_21, 1, x_271); +lean_ctor_set(x_21, 1, x_268); lean_ctor_set(x_21, 0, x_40); -x_272 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; +x_269 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; lean_inc(x_40); -x_273 = l_Lean_Syntax_node1(x_40, x_272, x_21); -x_274 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +x_270 = l_Lean_Syntax_node1(x_40, x_269, x_21); +x_271 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; lean_inc(x_41); +lean_inc(x_262); +x_272 = l_Lean_addMacroScope(x_262, x_271, x_41); +x_273 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_40); +x_274 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_274, 0, x_40); +lean_ctor_set(x_274, 1, x_273); +lean_ctor_set(x_274, 2, x_272); +lean_ctor_set(x_274, 3, x_13); +x_275 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; lean_inc(x_265); -x_275 = l_Lean_addMacroScope(x_265, x_274, x_41); -x_276 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_274); lean_inc(x_40); -x_277 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_277, 0, x_40); -lean_ctor_set(x_277, 1, x_276); -lean_ctor_set(x_277, 2, x_275); -lean_ctor_set(x_277, 3, x_13); -x_278 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_268); -lean_inc(x_277); -lean_inc(x_40); -x_279 = l_Lean_Syntax_node2(x_40, x_278, x_277, x_268); -x_280 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +x_276 = l_Lean_Syntax_node2(x_40, x_275, x_274, x_265); +x_277 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; lean_inc(x_40); lean_ctor_set_tag(x_20, 2); -lean_ctor_set(x_20, 1, x_280); +lean_ctor_set(x_20, 1, x_277); lean_ctor_set(x_20, 0, x_40); -x_281 = l_Array_zip___rarg(x_32, x_33); +x_278 = l_Array_zip___rarg(x_32, x_33); lean_dec(x_33); lean_dec(x_32); -x_282 = lean_array_size(x_281); -lean_inc(x_270); -lean_inc(x_268); +x_279 = lean_array_size(x_278); +lean_inc(x_267); +lean_inc(x_265); lean_inc(x_40); -x_283 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_40, x_266, x_268, x_270, x_282, x_16, x_281); -x_284 = l_Array_append___rarg(x_267, x_283); -lean_dec(x_283); +x_280 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_40, x_263, x_265, x_267, x_279, x_16, x_278); +x_281 = l_Array_append___rarg(x_264, x_280); +lean_dec(x_280); lean_inc(x_40); -x_285 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_285, 0, x_40); -lean_ctor_set(x_285, 1, x_266); -lean_ctor_set(x_285, 2, x_284); -x_286 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; +x_282 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_282, 0, x_40); +lean_ctor_set(x_282, 1, x_263); +lean_ctor_set(x_282, 2, x_281); +x_283 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; lean_inc(x_40); -x_287 = l_Lean_Syntax_node1(x_40, x_286, x_285); -lean_inc(x_268); +x_284 = l_Lean_Syntax_node1(x_40, x_283, x_282); +lean_inc(x_265); lean_inc(x_20); lean_inc(x_40); -x_288 = l_Lean_Syntax_node3(x_40, x_266, x_20, x_268, x_287); -x_289 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +x_285 = l_Lean_Syntax_node3(x_40, x_263, x_20, x_265, x_284); +x_286 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; lean_inc(x_40); lean_ctor_set_tag(x_19, 2); -lean_ctor_set(x_19, 1, x_289); +lean_ctor_set(x_19, 1, x_286); lean_ctor_set(x_19, 0, x_40); -x_290 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +x_287 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; lean_inc(x_41); -lean_inc(x_265); -x_291 = l_Lean_addMacroScope(x_265, x_290, x_41); -x_292 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_293 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +lean_inc(x_262); +x_288 = l_Lean_addMacroScope(x_262, x_287, x_41); +x_289 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_290 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; lean_inc(x_40); -x_294 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_294, 0, x_40); -lean_ctor_set(x_294, 1, x_292); -lean_ctor_set(x_294, 2, x_291); -lean_ctor_set(x_294, 3, x_293); -x_295 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_268); -lean_inc(x_40); -x_296 = l_Lean_Syntax_node2(x_40, x_295, x_294, x_268); -x_297 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_291 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_291, 0, x_40); +lean_ctor_set(x_291, 1, x_289); +lean_ctor_set(x_291, 2, x_288); +lean_ctor_set(x_291, 3, x_290); +x_292 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; lean_inc(x_40); lean_ctor_set_tag(x_18, 2); -lean_ctor_set(x_18, 1, x_297); +lean_ctor_set(x_18, 1, x_292); lean_ctor_set(x_18, 0, x_40); -x_298 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; +x_293 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; lean_inc(x_41); -lean_inc(x_265); -x_299 = l_Lean_addMacroScope(x_265, x_298, x_41); -x_300 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_301 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_262); +x_294 = l_Lean_addMacroScope(x_262, x_293, x_41); +x_295 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_296 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; lean_inc(x_40); -x_302 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_302, 0, x_40); -lean_ctor_set(x_302, 1, x_300); -lean_ctor_set(x_302, 2, x_299); -lean_ctor_set(x_302, 3, x_301); -lean_inc(x_268); -lean_inc(x_40); -x_303 = l_Lean_Syntax_node2(x_40, x_295, x_302, x_268); +x_297 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_297, 0, x_40); +lean_ctor_set(x_297, 1, x_295); +lean_ctor_set(x_297, 2, x_294); +lean_ctor_set(x_297, 3, x_296); lean_inc(x_18); lean_inc(x_40); -x_304 = l_Lean_Syntax_node3(x_40, x_266, x_296, x_18, x_303); +x_298 = l_Lean_Syntax_node3(x_40, x_263, x_291, x_18, x_297); lean_inc(x_40); -x_305 = l_Lean_Syntax_node2(x_40, x_266, x_19, x_304); -x_306 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +x_299 = l_Lean_Syntax_node2(x_40, x_263, x_19, x_298); +x_300 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; lean_inc(x_40); -x_307 = l_Lean_Syntax_node1(x_40, x_306, x_305); -x_308 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; -lean_inc_n(x_268, 3); +x_301 = l_Lean_Syntax_node1(x_40, x_300, x_299); +x_302 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; +lean_inc_n(x_265, 3); lean_inc(x_40); -x_309 = l_Lean_Syntax_node7(x_40, x_308, x_273, x_279, x_268, x_268, x_268, x_288, x_307); -x_310 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_270); +x_303 = l_Lean_Syntax_node7(x_40, x_302, x_270, x_276, x_265, x_265, x_265, x_285, x_301); +x_304 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_267); lean_inc(x_40); -x_311 = l_Lean_Syntax_node2(x_40, x_310, x_270, x_309); -x_312 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +x_305 = l_Lean_Syntax_node2(x_40, x_304, x_267, x_303); +x_306 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_40); +x_307 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_307, 0, x_40); +lean_ctor_set(x_307, 1, x_306); +x_308 = l_Array_append___rarg(x_264, x_3); +lean_inc(x_40); +x_309 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_309, 0, x_40); +lean_ctor_set(x_309, 1, x_263); +lean_ctor_set(x_309, 2, x_308); +x_310 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_40); +x_311 = l_Lean_Syntax_node2(x_40, x_310, x_307, x_309); +x_312 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; lean_inc(x_40); x_313 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_313, 0, x_40); lean_ctor_set(x_313, 1, x_312); -x_314 = l_Array_append___rarg(x_267, x_3); +x_314 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_265); lean_inc(x_40); -x_315 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_315, 0, x_40); -lean_ctor_set(x_315, 1, x_266); -lean_ctor_set(x_315, 2, x_314); -x_316 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +x_315 = l_Lean_Syntax_node1(x_40, x_314, x_265); +x_316 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; lean_inc(x_40); -x_317 = l_Lean_Syntax_node2(x_40, x_316, x_313, x_315); -x_318 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +x_317 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_317, 0, x_40); +lean_ctor_set(x_317, 1, x_316); +x_318 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; lean_inc(x_40); x_319 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_319, 0, x_40); lean_ctor_set(x_319, 1, x_318); -x_320 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_268); -lean_inc(x_40); -x_321 = l_Lean_Syntax_node1(x_40, x_320, x_268); -x_322 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_40); -x_323 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_323, 0, x_40); -lean_ctor_set(x_323, 1, x_322); -x_324 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_40); -x_325 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_325, 0, x_40); -lean_ctor_set(x_325, 1, x_324); -x_326 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_320 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; lean_inc(x_41); +lean_inc(x_262); +x_321 = l_Lean_addMacroScope(x_262, x_320, x_41); +x_322 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_323 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_40); +x_324 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_324, 0, x_40); +lean_ctor_set(x_324, 1, x_322); +lean_ctor_set(x_324, 2, x_321); +lean_ctor_set(x_324, 3, x_323); +x_325 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +lean_inc(x_40); +x_326 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_326, 0, x_40); +lean_ctor_set(x_326, 1, x_325); +x_327 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_40); +x_328 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_328, 0, x_40); +lean_ctor_set(x_328, 1, x_327); +x_329 = lean_box(0); +x_330 = l_Lean_mkCIdentFrom(x_329, x_4, x_39); +x_331 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_40); +x_332 = l_Lean_Syntax_node2(x_40, x_331, x_328, x_330); +x_333 = lean_array_size(x_36); +x_334 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_335 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_334, x_333, x_16, x_36); +x_336 = l_Array_append___rarg(x_264, x_335); +lean_dec(x_335); +lean_inc(x_40); +x_337 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_337, 0, x_40); +lean_ctor_set(x_337, 1, x_263); +lean_ctor_set(x_337, 2, x_336); +x_338 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_40); +x_339 = l_Lean_Syntax_node2(x_40, x_338, x_332, x_337); +x_340 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; +lean_inc(x_40); +x_341 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_341, 0, x_40); +lean_ctor_set(x_341, 1, x_340); +x_342 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; +lean_inc(x_40); +x_343 = l_Lean_Syntax_node3(x_40, x_342, x_326, x_339, x_341); +lean_inc(x_40); +x_344 = l_Lean_Syntax_node1(x_40, x_263, x_343); +lean_inc(x_40); +x_345 = l_Lean_Syntax_node2(x_40, x_338, x_324, x_344); +x_346 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_319); +lean_inc(x_40); +x_347 = l_Lean_Syntax_node2(x_40, x_346, x_319, x_345); +x_348 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; lean_inc(x_265); -x_327 = l_Lean_addMacroScope(x_265, x_326, x_41); -x_328 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_329 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; lean_inc(x_40); -x_330 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_330, 0, x_40); -lean_ctor_set(x_330, 1, x_328); -lean_ctor_set(x_330, 2, x_327); -lean_ctor_set(x_330, 3, x_329); -x_331 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +x_349 = l_Lean_Syntax_node2(x_40, x_348, x_265, x_347); +x_350 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; lean_inc(x_40); -x_332 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_332, 0, x_40); -lean_ctor_set(x_332, 1, x_331); -x_333 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; +x_351 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_351, 0, x_40); +lean_ctor_set(x_351, 1, x_350); +x_352 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; lean_inc(x_40); -x_334 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_334, 0, x_40); -lean_ctor_set(x_334, 1, x_333); -x_335 = lean_box(0); -x_336 = l_Lean_mkCIdentFrom(x_335, x_4, x_39); -x_337 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_40); -x_338 = l_Lean_Syntax_node2(x_40, x_337, x_334, x_336); -x_339 = lean_array_size(x_36); -x_340 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; -x_341 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_340, x_339, x_16, x_36); -x_342 = l_Array_append___rarg(x_267, x_341); -lean_dec(x_341); -lean_inc(x_40); -x_343 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_343, 0, x_40); -lean_ctor_set(x_343, 1, x_266); -lean_ctor_set(x_343, 2, x_342); -x_344 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_40); -x_345 = l_Lean_Syntax_node2(x_40, x_344, x_338, x_343); -x_346 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; -lean_inc(x_40); -x_347 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_347, 0, x_40); -lean_ctor_set(x_347, 1, x_346); -x_348 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; -lean_inc(x_40); -x_349 = l_Lean_Syntax_node3(x_40, x_348, x_332, x_345, x_347); -lean_inc(x_40); -x_350 = l_Lean_Syntax_node1(x_40, x_266, x_349); -lean_inc(x_40); -x_351 = l_Lean_Syntax_node2(x_40, x_344, x_330, x_350); -x_352 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_325); -lean_inc(x_40); -x_353 = l_Lean_Syntax_node2(x_40, x_352, x_325, x_351); -x_354 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_268); -lean_inc(x_40); -x_355 = l_Lean_Syntax_node2(x_40, x_354, x_268, x_353); -x_356 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_40); -x_357 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_357, 0, x_40); -lean_ctor_set(x_357, 1, x_356); -x_358 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_40); -x_359 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_359, 0, x_40); -lean_ctor_set(x_359, 1, x_358); -x_360 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_353 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_353, 0, x_40); +lean_ctor_set(x_353, 1, x_352); +x_354 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; lean_inc(x_41); +lean_inc(x_262); +x_355 = l_Lean_addMacroScope(x_262, x_354, x_41); +x_356 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_357 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_40); +x_358 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_358, 0, x_40); +lean_ctor_set(x_358, 1, x_356); +lean_ctor_set(x_358, 2, x_355); +lean_ctor_set(x_358, 3, x_357); +x_359 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; lean_inc(x_265); -x_361 = l_Lean_addMacroScope(x_265, x_360, x_41); -x_362 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_363 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_40); +x_360 = l_Lean_Syntax_node2(x_40, x_359, x_358, x_265); +x_361 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_41); +lean_inc(x_262); +x_362 = l_Lean_addMacroScope(x_262, x_361, x_41); +x_363 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; lean_inc(x_40); x_364 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_364, 0, x_40); -lean_ctor_set(x_364, 1, x_362); -lean_ctor_set(x_364, 2, x_361); -lean_ctor_set(x_364, 3, x_363); -x_365 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_268); +lean_ctor_set(x_364, 1, x_363); +lean_ctor_set(x_364, 2, x_362); +lean_ctor_set(x_364, 3, x_13); +x_365 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_364); +lean_inc(x_351); lean_inc(x_40); -x_366 = l_Lean_Syntax_node2(x_40, x_365, x_364, x_268); -x_367 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +x_366 = l_Lean_Syntax_node3(x_40, x_365, x_360, x_351, x_364); +x_367 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; lean_inc(x_41); +lean_inc(x_262); +x_368 = l_Lean_addMacroScope(x_262, x_367, x_41); +x_369 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_370 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_40); +x_371 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_371, 0, x_40); +lean_ctor_set(x_371, 1, x_369); +lean_ctor_set(x_371, 2, x_368); +lean_ctor_set(x_371, 3, x_370); lean_inc(x_265); -x_368 = l_Lean_addMacroScope(x_265, x_367, x_41); -x_369 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; lean_inc(x_40); -x_370 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_370, 0, x_40); -lean_ctor_set(x_370, 1, x_369); -lean_ctor_set(x_370, 2, x_368); -lean_ctor_set(x_370, 3, x_13); -x_371 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_370); -lean_inc(x_357); -lean_inc(x_40); -x_372 = l_Lean_Syntax_node3(x_40, x_371, x_366, x_357, x_370); -x_373 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +x_372 = l_Lean_Syntax_node2(x_40, x_359, x_371, x_265); +x_373 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; lean_inc(x_41); -lean_inc(x_265); -x_374 = l_Lean_addMacroScope(x_265, x_373, x_41); -x_375 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_376 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_262); +x_374 = l_Lean_addMacroScope(x_262, x_373, x_41); +x_375 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; lean_inc(x_40); -x_377 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_377, 0, x_40); -lean_ctor_set(x_377, 1, x_375); -lean_ctor_set(x_377, 2, x_374); -lean_ctor_set(x_377, 3, x_376); -lean_inc(x_268); +x_376 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_376, 0, x_40); +lean_ctor_set(x_376, 1, x_375); +lean_ctor_set(x_376, 2, x_374); +lean_ctor_set(x_376, 3, x_13); +lean_inc(x_376); +lean_inc(x_351); lean_inc(x_40); -x_378 = l_Lean_Syntax_node2(x_40, x_365, x_377, x_268); +x_377 = l_Lean_Syntax_node3(x_40, x_365, x_372, x_351, x_376); +lean_inc(x_40); +x_378 = l_Lean_Syntax_node3(x_40, x_263, x_366, x_18, x_377); x_379 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; -lean_inc(x_41); lean_inc(x_265); -x_380 = l_Lean_addMacroScope(x_265, x_379, x_41); -x_381 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; lean_inc(x_40); -x_382 = lean_alloc_ctor(3, 4, 0); +x_380 = l_Lean_Syntax_node1(x_40, x_379, x_265); +x_381 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_40); +x_382 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_382, 0, x_40); lean_ctor_set(x_382, 1, x_381); -lean_ctor_set(x_382, 2, x_380); -lean_ctor_set(x_382, 3, x_13); +x_383 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; lean_inc(x_382); -lean_inc(x_357); +lean_inc(x_380); +lean_inc_n(x_265, 2); +lean_inc(x_353); lean_inc(x_40); -x_383 = l_Lean_Syntax_node3(x_40, x_371, x_378, x_357, x_382); +x_384 = l_Lean_Syntax_node6(x_40, x_383, x_353, x_265, x_378, x_380, x_265, x_382); +x_385 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_265, 2); lean_inc(x_40); -x_384 = l_Lean_Syntax_node3(x_40, x_266, x_372, x_18, x_383); -x_385 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_268); +x_386 = l_Lean_Syntax_node2(x_40, x_385, x_265, x_265); +x_387 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +lean_inc(x_41); +lean_inc(x_262); +x_388 = l_Lean_addMacroScope(x_262, x_387, x_41); +x_389 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; lean_inc(x_40); -x_386 = l_Lean_Syntax_node1(x_40, x_385, x_268); -x_387 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; +x_390 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_390, 0, x_40); +lean_ctor_set(x_390, 1, x_389); +lean_ctor_set(x_390, 2, x_388); +lean_ctor_set(x_390, 3, x_13); +lean_inc(x_390); lean_inc(x_40); -x_388 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_388, 0, x_40); -lean_ctor_set(x_388, 1, x_387); -x_389 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc(x_388); +x_391 = l_Lean_Syntax_node1(x_40, x_263, x_390); +x_392 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; +lean_inc(x_40); +x_393 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_393, 0, x_40); +lean_ctor_set(x_393, 1, x_392); +x_394 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +lean_inc(x_41); +lean_inc(x_262); +x_395 = l_Lean_addMacroScope(x_262, x_394, x_41); +x_396 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_397 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +lean_inc(x_40); +x_398 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_398, 0, x_40); +lean_ctor_set(x_398, 1, x_396); +lean_ctor_set(x_398, 2, x_395); +lean_ctor_set(x_398, 3, x_397); +x_399 = lean_array_size(x_29); +x_400 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_365, x_399, x_16, x_29); +x_401 = lean_array_size(x_400); +x_402 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_401, x_16, x_400); +x_403 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; +x_404 = l_Lean_mkSepArray(x_402, x_403); +lean_dec(x_402); +x_405 = l_Array_append___rarg(x_264, x_404); +lean_dec(x_404); +lean_inc(x_40); +x_406 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_406, 0, x_40); +lean_ctor_set(x_406, 1, x_263); +lean_ctor_set(x_406, 2, x_405); +lean_inc(x_274); +lean_inc(x_319); +lean_inc(x_40); +x_407 = l_Lean_Syntax_node2(x_40, x_263, x_319, x_274); +lean_inc(x_382); +lean_inc(x_380); +lean_inc(x_265); +lean_inc(x_353); +lean_inc(x_40); +x_408 = l_Lean_Syntax_node6(x_40, x_383, x_353, x_265, x_406, x_380, x_407, x_382); +lean_inc(x_40); +x_409 = l_Lean_Syntax_node1(x_40, x_263, x_408); +lean_inc(x_40); +x_410 = l_Lean_Syntax_node2(x_40, x_338, x_398, x_409); +lean_inc(x_40); +x_411 = l_Lean_Syntax_node1(x_40, x_263, x_410); +x_412 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; +lean_inc(x_393); +lean_inc(x_40); +x_413 = l_Lean_Syntax_node2(x_40, x_412, x_393, x_411); +x_414 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_351); +lean_inc(x_265); +lean_inc(x_40); +x_415 = l_Lean_Syntax_node5(x_40, x_414, x_364, x_391, x_265, x_351, x_413); +x_416 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_40); +x_417 = l_Lean_Syntax_node1(x_40, x_416, x_415); +x_418 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; lean_inc(x_386); -lean_inc_n(x_268, 2); -lean_inc(x_359); +lean_inc_n(x_265, 2); lean_inc(x_40); -x_390 = l_Lean_Syntax_node6(x_40, x_389, x_359, x_268, x_384, x_386, x_268, x_388); -x_391 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_268, 2); -lean_inc(x_40); -x_392 = l_Lean_Syntax_node2(x_40, x_391, x_268, x_268); -x_393 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +x_419 = l_Lean_Syntax_node4(x_40, x_418, x_265, x_265, x_417, x_386); +x_420 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; lean_inc(x_41); -lean_inc(x_265); -x_394 = l_Lean_addMacroScope(x_265, x_393, x_41); -x_395 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; +lean_inc(x_262); +x_421 = l_Lean_addMacroScope(x_262, x_420, x_41); +x_422 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; lean_inc(x_40); -x_396 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_396, 0, x_40); -lean_ctor_set(x_396, 1, x_395); -lean_ctor_set(x_396, 2, x_394); -lean_ctor_set(x_396, 3, x_13); -lean_inc(x_396); +x_423 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_423, 0, x_40); +lean_ctor_set(x_423, 1, x_422); +lean_ctor_set(x_423, 2, x_421); +lean_ctor_set(x_423, 3, x_13); lean_inc(x_40); -x_397 = l_Lean_Syntax_node1(x_40, x_266, x_396); -x_398 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_424 = l_Lean_Syntax_node1(x_40, x_263, x_423); +x_425 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; lean_inc(x_40); -x_399 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_399, 0, x_40); -lean_ctor_set(x_399, 1, x_398); -x_400 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; -lean_inc(x_41); -lean_inc(x_265); -x_401 = l_Lean_addMacroScope(x_265, x_400, x_41); -x_402 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_403 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; +x_426 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_426, 0, x_40); +lean_ctor_set(x_426, 1, x_425); +x_427 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; lean_inc(x_40); -x_404 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_404, 0, x_40); -lean_ctor_set(x_404, 1, x_402); -lean_ctor_set(x_404, 2, x_401); -lean_ctor_set(x_404, 3, x_403); -x_405 = lean_array_size(x_29); -x_406 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_371, x_405, x_16, x_29); -x_407 = lean_array_size(x_406); -x_408 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_407, x_16, x_406); -x_409 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; -x_410 = l_Lean_mkSepArray(x_408, x_409); -lean_dec(x_408); -x_411 = l_Array_append___rarg(x_267, x_410); -lean_dec(x_410); +x_428 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_428, 0, x_40); +lean_ctor_set(x_428, 1, x_427); lean_inc(x_40); -x_412 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_412, 0, x_40); -lean_ctor_set(x_412, 1, x_266); -lean_ctor_set(x_412, 2, x_411); -lean_inc(x_277); -lean_inc(x_325); +x_429 = l_Lean_Syntax_node2(x_40, x_346, x_319, x_274); lean_inc(x_40); -x_413 = l_Lean_Syntax_node2(x_40, x_266, x_325, x_277); -lean_inc(x_388); -lean_inc(x_386); -lean_inc(x_268); -lean_inc(x_359); -lean_inc(x_40); -x_414 = l_Lean_Syntax_node6(x_40, x_389, x_359, x_268, x_412, x_386, x_413, x_388); -lean_inc(x_40); -x_415 = l_Lean_Syntax_node1(x_40, x_266, x_414); -lean_inc(x_40); -x_416 = l_Lean_Syntax_node2(x_40, x_344, x_404, x_415); -lean_inc(x_40); -x_417 = l_Lean_Syntax_node1(x_40, x_266, x_416); -x_418 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; -lean_inc(x_399); -lean_inc(x_40); -x_419 = l_Lean_Syntax_node2(x_40, x_418, x_399, x_417); -x_420 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_357); -lean_inc(x_268); -lean_inc(x_40); -x_421 = l_Lean_Syntax_node5(x_40, x_420, x_370, x_397, x_268, x_357, x_419); -x_422 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_40); -x_423 = l_Lean_Syntax_node1(x_40, x_422, x_421); -x_424 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_392); -lean_inc_n(x_268, 2); -lean_inc(x_40); -x_425 = l_Lean_Syntax_node4(x_40, x_424, x_268, x_268, x_423, x_392); -x_426 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; -lean_inc(x_41); -lean_inc(x_265); -x_427 = l_Lean_addMacroScope(x_265, x_426, x_41); -x_428 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_40); -x_429 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_429, 0, x_40); -lean_ctor_set(x_429, 1, x_428); -lean_ctor_set(x_429, 2, x_427); -lean_ctor_set(x_429, 3, x_13); -lean_inc(x_40); -x_430 = l_Lean_Syntax_node1(x_40, x_266, x_429); -x_431 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; +x_430 = l_Lean_Syntax_node1(x_40, x_263, x_429); +x_431 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; lean_inc(x_40); x_432 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_432, 0, x_40); lean_ctor_set(x_432, 1, x_431); -x_433 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +x_433 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +x_434 = l_Lean_addMacroScope(x_262, x_433, x_41); +x_435 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_436 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; lean_inc(x_40); -x_434 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_434, 0, x_40); -lean_ctor_set(x_434, 1, x_433); +x_437 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_437, 0, x_40); +lean_ctor_set(x_437, 1, x_435); +lean_ctor_set(x_437, 2, x_434); +lean_ctor_set(x_437, 3, x_436); +lean_inc(x_424); lean_inc(x_40); -x_435 = l_Lean_Syntax_node2(x_40, x_352, x_325, x_277); +x_438 = l_Lean_Syntax_node2(x_40, x_338, x_437, x_424); +x_439 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; lean_inc(x_40); -x_436 = l_Lean_Syntax_node1(x_40, x_266, x_435); -x_437 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +x_440 = l_Lean_Syntax_node1(x_40, x_439, x_438); +x_441 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; lean_inc(x_40); -x_438 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_438, 0, x_40); -lean_ctor_set(x_438, 1, x_437); -x_439 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -x_440 = l_Lean_addMacroScope(x_265, x_439, x_41); -x_441 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_442 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +x_442 = l_Lean_Syntax_node4(x_40, x_441, x_390, x_430, x_432, x_440); +x_443 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_265); lean_inc(x_40); -x_443 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_443, 0, x_40); -lean_ctor_set(x_443, 1, x_441); -lean_ctor_set(x_443, 2, x_440); -lean_ctor_set(x_443, 3, x_442); -lean_inc(x_430); +x_444 = l_Lean_Syntax_node3(x_40, x_443, x_428, x_265, x_442); +x_445 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_265); lean_inc(x_40); -x_444 = l_Lean_Syntax_node2(x_40, x_344, x_443, x_430); -x_445 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_40); -x_446 = l_Lean_Syntax_node1(x_40, x_445, x_444); -x_447 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_40); -x_448 = l_Lean_Syntax_node4(x_40, x_447, x_396, x_436, x_438, x_446); -x_449 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_268); -lean_inc(x_40); -x_450 = l_Lean_Syntax_node3(x_40, x_449, x_434, x_268, x_448); -x_451 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_268); -lean_inc(x_40); -x_452 = l_Lean_Syntax_node2(x_40, x_451, x_450, x_268); -x_453 = l_Lean_Syntax_SepArray_ofElems(x_297, x_26); +x_446 = l_Lean_Syntax_node2(x_40, x_445, x_444, x_265); +x_447 = l_Lean_Syntax_SepArray_ofElems(x_292, x_26); lean_dec(x_26); -x_454 = l_Array_append___rarg(x_267, x_453); -lean_dec(x_453); +x_448 = l_Array_append___rarg(x_264, x_447); +lean_dec(x_447); lean_inc(x_40); -x_455 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_455, 0, x_40); -lean_ctor_set(x_455, 1, x_266); -lean_ctor_set(x_455, 2, x_454); -lean_inc_n(x_268, 2); +x_449 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_449, 0, x_40); +lean_ctor_set(x_449, 1, x_263); +lean_ctor_set(x_449, 2, x_448); +lean_inc_n(x_265, 2); lean_inc(x_40); -x_456 = l_Lean_Syntax_node6(x_40, x_389, x_359, x_268, x_455, x_386, x_268, x_388); +x_450 = l_Lean_Syntax_node6(x_40, x_383, x_353, x_265, x_449, x_380, x_265, x_382); lean_inc(x_40); -x_457 = l_Lean_Syntax_node1(x_40, x_266, x_456); -x_458 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; +x_451 = l_Lean_Syntax_node1(x_40, x_263, x_450); +x_452 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; lean_inc(x_40); -x_459 = l_Lean_Syntax_node2(x_40, x_458, x_399, x_457); -lean_inc(x_268); +x_453 = l_Lean_Syntax_node2(x_40, x_452, x_393, x_451); +lean_inc(x_265); lean_inc(x_40); -x_460 = l_Lean_Syntax_node2(x_40, x_451, x_459, x_268); +x_454 = l_Lean_Syntax_node2(x_40, x_445, x_453, x_265); lean_inc(x_40); -x_461 = l_Lean_Syntax_node2(x_40, x_266, x_452, x_460); -x_462 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +x_455 = l_Lean_Syntax_node2(x_40, x_263, x_446, x_454); +x_456 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; lean_inc(x_40); -x_463 = l_Lean_Syntax_node1(x_40, x_462, x_461); -x_464 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +x_457 = l_Lean_Syntax_node1(x_40, x_456, x_455); +x_458 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; lean_inc(x_40); -x_465 = l_Lean_Syntax_node2(x_40, x_464, x_432, x_463); -lean_inc(x_357); -lean_inc(x_268); +x_459 = l_Lean_Syntax_node2(x_40, x_458, x_426, x_457); +lean_inc(x_351); +lean_inc(x_265); lean_inc(x_40); -x_466 = l_Lean_Syntax_node5(x_40, x_420, x_382, x_430, x_268, x_357, x_465); +x_460 = l_Lean_Syntax_node5(x_40, x_414, x_376, x_424, x_265, x_351, x_459); lean_inc(x_40); -x_467 = l_Lean_Syntax_node1(x_40, x_422, x_466); -lean_inc(x_392); -lean_inc_n(x_268, 2); +x_461 = l_Lean_Syntax_node1(x_40, x_416, x_460); +lean_inc(x_386); +lean_inc_n(x_265, 2); lean_inc(x_40); -x_468 = l_Lean_Syntax_node4(x_40, x_424, x_268, x_268, x_467, x_392); -lean_inc(x_268); +x_462 = l_Lean_Syntax_node4(x_40, x_418, x_265, x_265, x_461, x_386); +lean_inc(x_265); lean_inc(x_40); -x_469 = l_Lean_Syntax_node3(x_40, x_266, x_425, x_268, x_468); -x_470 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +x_463 = l_Lean_Syntax_node3(x_40, x_263, x_419, x_265, x_462); +x_464 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; lean_inc(x_40); -x_471 = l_Lean_Syntax_node2(x_40, x_470, x_20, x_469); +x_465 = l_Lean_Syntax_node2(x_40, x_464, x_20, x_463); lean_inc(x_40); -x_472 = l_Lean_Syntax_node1(x_40, x_266, x_471); -x_473 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +x_466 = l_Lean_Syntax_node1(x_40, x_263, x_465); +x_467 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; lean_inc(x_40); -x_474 = l_Lean_Syntax_node4(x_40, x_473, x_357, x_390, x_392, x_472); -x_475 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_268); +x_468 = l_Lean_Syntax_node4(x_40, x_467, x_351, x_384, x_386, x_466); +x_469 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_265); lean_inc(x_40); -x_476 = l_Lean_Syntax_node6(x_40, x_475, x_321, x_323, x_268, x_268, x_355, x_474); +x_470 = l_Lean_Syntax_node6(x_40, x_469, x_315, x_317, x_265, x_265, x_349, x_468); lean_inc(x_40); -x_477 = l_Lean_Syntax_node2(x_40, x_310, x_270, x_476); -x_478 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +x_471 = l_Lean_Syntax_node2(x_40, x_304, x_267, x_470); +x_472 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; lean_inc(x_40); -x_479 = l_Lean_Syntax_node3(x_40, x_478, x_317, x_319, x_477); -x_480 = l_Lean_Syntax_node2(x_40, x_266, x_311, x_479); -x_481 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_481, 0, x_480); -lean_ctor_set(x_481, 1, x_263); -return x_481; +x_473 = l_Lean_Syntax_node3(x_40, x_472, x_311, x_313, x_471); +x_474 = l_Lean_Syntax_node2(x_40, x_263, x_305, x_473); +x_475 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_475, 0, x_474); +lean_ctor_set(x_475, 1, x_260); +return x_475; } } else { -uint8_t x_482; +uint8_t x_476; lean_free_object(x_21); lean_dec(x_33); lean_dec(x_32); @@ -5187,585 +5153,578 @@ lean_dec(x_26); lean_free_object(x_18); lean_dec(x_10); lean_dec(x_4); -x_482 = !lean_is_exclusive(x_35); -if (x_482 == 0) +x_476 = !lean_is_exclusive(x_35); +if (x_476 == 0) { return x_35; } else { -lean_object* x_483; lean_object* x_484; lean_object* x_485; -x_483 = lean_ctor_get(x_35, 0); -x_484 = lean_ctor_get(x_35, 1); -lean_inc(x_484); -lean_inc(x_483); +lean_object* x_477; lean_object* x_478; lean_object* x_479; +x_477 = lean_ctor_get(x_35, 0); +x_478 = lean_ctor_get(x_35, 1); +lean_inc(x_478); +lean_inc(x_477); lean_dec(x_35); -x_485 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_485, 0, x_483); -lean_ctor_set(x_485, 1, x_484); -return x_485; +x_479 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_479, 0, x_477); +lean_ctor_set(x_479, 1, x_478); +return x_479; } } } else { -lean_object* x_486; lean_object* x_487; size_t x_488; lean_object* x_489; -x_486 = lean_ctor_get(x_21, 0); -x_487 = lean_ctor_get(x_21, 1); -lean_inc(x_487); -lean_inc(x_486); +lean_object* x_480; lean_object* x_481; size_t x_482; lean_object* x_483; +x_480 = lean_ctor_get(x_21, 0); +x_481 = lean_ctor_get(x_21, 1); +lean_inc(x_481); +lean_inc(x_480); lean_dec(x_21); -x_488 = lean_array_size(x_2); -x_489 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_488, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_23); -if (lean_obj_tag(x_489) == 0) +x_482 = lean_array_size(x_2); +x_483 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_482, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_483) == 0) { -lean_object* x_490; lean_object* x_491; lean_object* x_492; uint8_t x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; size_t x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; size_t x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; size_t x_642; lean_object* x_643; size_t x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; -x_490 = lean_ctor_get(x_489, 0); -lean_inc(x_490); -x_491 = lean_ctor_get(x_489, 1); -lean_inc(x_491); -lean_dec(x_489); -x_492 = lean_ctor_get(x_10, 5); -lean_inc(x_492); -x_493 = 0; -x_494 = l_Lean_SourceInfo_fromRef(x_492, x_493); -lean_dec(x_492); -x_495 = lean_ctor_get(x_10, 10); -lean_inc(x_495); -lean_dec(x_10); -x_496 = lean_st_ref_get(x_11, x_491); -x_497 = lean_ctor_get(x_496, 0); -lean_inc(x_497); -x_498 = lean_ctor_get(x_496, 1); -lean_inc(x_498); -if (lean_is_exclusive(x_496)) { - lean_ctor_release(x_496, 0); - lean_ctor_release(x_496, 1); - x_499 = x_496; -} else { - lean_dec_ref(x_496); - x_499 = lean_box(0); -} -x_500 = lean_ctor_get(x_497, 0); -lean_inc(x_500); -lean_dec(x_497); -x_501 = lean_environment_main_module(x_500); -x_502 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -x_503 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -lean_inc(x_494); -x_504 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_504, 0, x_494); -lean_ctor_set(x_504, 1, x_502); -lean_ctor_set(x_504, 2, x_503); -x_505 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_504, 6); -lean_inc(x_494); -x_506 = l_Lean_Syntax_node6(x_494, x_505, x_504, x_504, x_504, x_504, x_504, x_504); -x_507 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; -lean_inc(x_494); -x_508 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_508, 0, x_494); -lean_ctor_set(x_508, 1, x_507); -x_509 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; -lean_inc(x_494); -x_510 = l_Lean_Syntax_node1(x_494, x_509, x_508); -x_511 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; -lean_inc(x_495); -lean_inc(x_501); -x_512 = l_Lean_addMacroScope(x_501, x_511, x_495); -x_513 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; -lean_inc(x_494); -x_514 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_514, 0, x_494); -lean_ctor_set(x_514, 1, x_513); -lean_ctor_set(x_514, 2, x_512); -lean_ctor_set(x_514, 3, x_13); -x_515 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_504); -lean_inc(x_514); -lean_inc(x_494); -x_516 = l_Lean_Syntax_node2(x_494, x_515, x_514, x_504); -x_517 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; -lean_inc(x_494); -lean_ctor_set_tag(x_20, 2); -lean_ctor_set(x_20, 1, x_517); -lean_ctor_set(x_20, 0, x_494); -x_518 = l_Array_zip___rarg(x_486, x_487); -lean_dec(x_487); +lean_object* x_484; lean_object* x_485; lean_object* x_486; uint8_t x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; size_t x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; size_t x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; size_t x_633; lean_object* x_634; size_t x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; +x_484 = lean_ctor_get(x_483, 0); +lean_inc(x_484); +x_485 = lean_ctor_get(x_483, 1); +lean_inc(x_485); +lean_dec(x_483); +x_486 = lean_ctor_get(x_10, 5); +lean_inc(x_486); +x_487 = 0; +x_488 = l_Lean_SourceInfo_fromRef(x_486, x_487); lean_dec(x_486); -x_519 = lean_array_size(x_518); -lean_inc(x_506); -lean_inc(x_504); +x_489 = lean_ctor_get(x_10, 10); +lean_inc(x_489); +lean_dec(x_10); +x_490 = lean_st_ref_get(x_11, x_485); +x_491 = lean_ctor_get(x_490, 0); +lean_inc(x_491); +x_492 = lean_ctor_get(x_490, 1); +lean_inc(x_492); +if (lean_is_exclusive(x_490)) { + lean_ctor_release(x_490, 0); + lean_ctor_release(x_490, 1); + x_493 = x_490; +} else { + lean_dec_ref(x_490); + x_493 = lean_box(0); +} +x_494 = lean_ctor_get(x_491, 0); lean_inc(x_494); -x_520 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_494, x_502, x_504, x_506, x_519, x_16, x_518); -x_521 = l_Array_append___rarg(x_503, x_520); -lean_dec(x_520); -lean_inc(x_494); -x_522 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_522, 0, x_494); -lean_ctor_set(x_522, 1, x_502); -lean_ctor_set(x_522, 2, x_521); -x_523 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; -lean_inc(x_494); -x_524 = l_Lean_Syntax_node1(x_494, x_523, x_522); -lean_inc(x_504); -lean_inc(x_20); -lean_inc(x_494); -x_525 = l_Lean_Syntax_node3(x_494, x_502, x_20, x_504, x_524); -x_526 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; -lean_inc(x_494); -lean_ctor_set_tag(x_19, 2); -lean_ctor_set(x_19, 1, x_526); -lean_ctor_set(x_19, 0, x_494); -x_527 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +lean_dec(x_491); +x_495 = lean_environment_main_module(x_494); +x_496 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +x_497 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +lean_inc(x_488); +x_498 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_498, 0, x_488); +lean_ctor_set(x_498, 1, x_496); +lean_ctor_set(x_498, 2, x_497); +x_499 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_498, 6); +lean_inc(x_488); +x_500 = l_Lean_Syntax_node6(x_488, x_499, x_498, x_498, x_498, x_498, x_498, x_498); +x_501 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; +lean_inc(x_488); +x_502 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_502, 0, x_488); +lean_ctor_set(x_502, 1, x_501); +x_503 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; +lean_inc(x_488); +x_504 = l_Lean_Syntax_node1(x_488, x_503, x_502); +x_505 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_528 = l_Lean_addMacroScope(x_501, x_527, x_495); -x_529 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_530 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; -lean_inc(x_494); +x_506 = l_Lean_addMacroScope(x_495, x_505, x_489); +x_507 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_488); +x_508 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_508, 0, x_488); +lean_ctor_set(x_508, 1, x_507); +lean_ctor_set(x_508, 2, x_506); +lean_ctor_set(x_508, 3, x_13); +x_509 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_498); +lean_inc(x_508); +lean_inc(x_488); +x_510 = l_Lean_Syntax_node2(x_488, x_509, x_508, x_498); +x_511 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +lean_inc(x_488); +lean_ctor_set_tag(x_20, 2); +lean_ctor_set(x_20, 1, x_511); +lean_ctor_set(x_20, 0, x_488); +x_512 = l_Array_zip___rarg(x_480, x_481); +lean_dec(x_481); +lean_dec(x_480); +x_513 = lean_array_size(x_512); +lean_inc(x_500); +lean_inc(x_498); +lean_inc(x_488); +x_514 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_488, x_496, x_498, x_500, x_513, x_16, x_512); +x_515 = l_Array_append___rarg(x_497, x_514); +lean_dec(x_514); +lean_inc(x_488); +x_516 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_516, 0, x_488); +lean_ctor_set(x_516, 1, x_496); +lean_ctor_set(x_516, 2, x_515); +x_517 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; +lean_inc(x_488); +x_518 = l_Lean_Syntax_node1(x_488, x_517, x_516); +lean_inc(x_498); +lean_inc(x_20); +lean_inc(x_488); +x_519 = l_Lean_Syntax_node3(x_488, x_496, x_20, x_498, x_518); +x_520 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +lean_inc(x_488); +lean_ctor_set_tag(x_19, 2); +lean_ctor_set(x_19, 1, x_520); +lean_ctor_set(x_19, 0, x_488); +x_521 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_489); +lean_inc(x_495); +x_522 = l_Lean_addMacroScope(x_495, x_521, x_489); +x_523 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_524 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; +lean_inc(x_488); +x_525 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_525, 0, x_488); +lean_ctor_set(x_525, 1, x_523); +lean_ctor_set(x_525, 2, x_522); +lean_ctor_set(x_525, 3, x_524); +x_526 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +lean_inc(x_488); +lean_ctor_set_tag(x_18, 2); +lean_ctor_set(x_18, 1, x_526); +lean_ctor_set(x_18, 0, x_488); +x_527 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_489); +lean_inc(x_495); +x_528 = l_Lean_addMacroScope(x_495, x_527, x_489); +x_529 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_530 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; +lean_inc(x_488); x_531 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_531, 0, x_494); +lean_ctor_set(x_531, 0, x_488); lean_ctor_set(x_531, 1, x_529); lean_ctor_set(x_531, 2, x_528); lean_ctor_set(x_531, 3, x_530); -x_532 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_504); -lean_inc(x_494); -x_533 = l_Lean_Syntax_node2(x_494, x_532, x_531, x_504); -x_534 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_494); -lean_ctor_set_tag(x_18, 2); -lean_ctor_set(x_18, 1, x_534); -lean_ctor_set(x_18, 0, x_494); -x_535 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_495); -lean_inc(x_501); -x_536 = l_Lean_addMacroScope(x_501, x_535, x_495); -x_537 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_538 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; -lean_inc(x_494); -x_539 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_539, 0, x_494); -lean_ctor_set(x_539, 1, x_537); -lean_ctor_set(x_539, 2, x_536); -lean_ctor_set(x_539, 3, x_538); -lean_inc(x_504); -lean_inc(x_494); -x_540 = l_Lean_Syntax_node2(x_494, x_532, x_539, x_504); lean_inc(x_18); -lean_inc(x_494); -x_541 = l_Lean_Syntax_node3(x_494, x_502, x_533, x_18, x_540); -lean_inc(x_494); -x_542 = l_Lean_Syntax_node2(x_494, x_502, x_19, x_541); -x_543 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; -lean_inc(x_494); -x_544 = l_Lean_Syntax_node1(x_494, x_543, x_542); -x_545 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; -lean_inc_n(x_504, 3); -lean_inc(x_494); -x_546 = l_Lean_Syntax_node7(x_494, x_545, x_510, x_516, x_504, x_504, x_504, x_525, x_544); -x_547 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_506); -lean_inc(x_494); -x_548 = l_Lean_Syntax_node2(x_494, x_547, x_506, x_546); -x_549 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; -lean_inc(x_494); -x_550 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_550, 0, x_494); -lean_ctor_set(x_550, 1, x_549); -x_551 = l_Array_append___rarg(x_503, x_3); -lean_inc(x_494); -x_552 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_552, 0, x_494); -lean_ctor_set(x_552, 1, x_502); -lean_ctor_set(x_552, 2, x_551); -x_553 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -lean_inc(x_494); -x_554 = l_Lean_Syntax_node2(x_494, x_553, x_550, x_552); -x_555 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_494); -x_556 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_556, 0, x_494); -lean_ctor_set(x_556, 1, x_555); -x_557 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_504); -lean_inc(x_494); -x_558 = l_Lean_Syntax_node1(x_494, x_557, x_504); -x_559 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_494); +lean_inc(x_488); +x_532 = l_Lean_Syntax_node3(x_488, x_496, x_525, x_18, x_531); +lean_inc(x_488); +x_533 = l_Lean_Syntax_node2(x_488, x_496, x_19, x_532); +x_534 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_488); +x_535 = l_Lean_Syntax_node1(x_488, x_534, x_533); +x_536 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; +lean_inc_n(x_498, 3); +lean_inc(x_488); +x_537 = l_Lean_Syntax_node7(x_488, x_536, x_504, x_510, x_498, x_498, x_498, x_519, x_535); +x_538 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_500); +lean_inc(x_488); +x_539 = l_Lean_Syntax_node2(x_488, x_538, x_500, x_537); +x_540 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_488); +x_541 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_541, 0, x_488); +lean_ctor_set(x_541, 1, x_540); +x_542 = l_Array_append___rarg(x_497, x_3); +lean_inc(x_488); +x_543 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_543, 0, x_488); +lean_ctor_set(x_543, 1, x_496); +lean_ctor_set(x_543, 2, x_542); +x_544 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_488); +x_545 = l_Lean_Syntax_node2(x_488, x_544, x_541, x_543); +x_546 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +lean_inc(x_488); +x_547 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_547, 0, x_488); +lean_ctor_set(x_547, 1, x_546); +x_548 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_498); +lean_inc(x_488); +x_549 = l_Lean_Syntax_node1(x_488, x_548, x_498); +x_550 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +lean_inc(x_488); +x_551 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_551, 0, x_488); +lean_ctor_set(x_551, 1, x_550); +x_552 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +lean_inc(x_488); +x_553 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_553, 0, x_488); +lean_ctor_set(x_553, 1, x_552); +x_554 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_489); +lean_inc(x_495); +x_555 = l_Lean_addMacroScope(x_495, x_554, x_489); +x_556 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_557 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_488); +x_558 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_558, 0, x_488); +lean_ctor_set(x_558, 1, x_556); +lean_ctor_set(x_558, 2, x_555); +lean_ctor_set(x_558, 3, x_557); +x_559 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +lean_inc(x_488); x_560 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_560, 0, x_494); +lean_ctor_set(x_560, 0, x_488); lean_ctor_set(x_560, 1, x_559); -x_561 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_494); +x_561 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_488); x_562 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_562, 0, x_494); +lean_ctor_set(x_562, 0, x_488); lean_ctor_set(x_562, 1, x_561); -x_563 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_563 = lean_box(0); +x_564 = l_Lean_mkCIdentFrom(x_563, x_4, x_487); +x_565 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_488); +x_566 = l_Lean_Syntax_node2(x_488, x_565, x_562, x_564); +x_567 = lean_array_size(x_484); +x_568 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_569 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_568, x_567, x_16, x_484); +x_570 = l_Array_append___rarg(x_497, x_569); +lean_dec(x_569); +lean_inc(x_488); +x_571 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_571, 0, x_488); +lean_ctor_set(x_571, 1, x_496); +lean_ctor_set(x_571, 2, x_570); +x_572 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_488); +x_573 = l_Lean_Syntax_node2(x_488, x_572, x_566, x_571); +x_574 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; +lean_inc(x_488); +x_575 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_575, 0, x_488); +lean_ctor_set(x_575, 1, x_574); +x_576 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; +lean_inc(x_488); +x_577 = l_Lean_Syntax_node3(x_488, x_576, x_560, x_573, x_575); +lean_inc(x_488); +x_578 = l_Lean_Syntax_node1(x_488, x_496, x_577); +lean_inc(x_488); +x_579 = l_Lean_Syntax_node2(x_488, x_572, x_558, x_578); +x_580 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_553); +lean_inc(x_488); +x_581 = l_Lean_Syntax_node2(x_488, x_580, x_553, x_579); +x_582 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +lean_inc(x_498); +lean_inc(x_488); +x_583 = l_Lean_Syntax_node2(x_488, x_582, x_498, x_581); +x_584 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +lean_inc(x_488); +x_585 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_585, 0, x_488); +lean_ctor_set(x_585, 1, x_584); +x_586 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; +lean_inc(x_488); +x_587 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_587, 0, x_488); +lean_ctor_set(x_587, 1, x_586); +x_588 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_564 = l_Lean_addMacroScope(x_501, x_563, x_495); -x_565 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_566 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; -lean_inc(x_494); -x_567 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_567, 0, x_494); -lean_ctor_set(x_567, 1, x_565); -lean_ctor_set(x_567, 2, x_564); -lean_ctor_set(x_567, 3, x_566); -x_568 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; -lean_inc(x_494); -x_569 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_569, 0, x_494); -lean_ctor_set(x_569, 1, x_568); -x_570 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; -lean_inc(x_494); -x_571 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_571, 0, x_494); -lean_ctor_set(x_571, 1, x_570); -x_572 = lean_box(0); -x_573 = l_Lean_mkCIdentFrom(x_572, x_4, x_493); -x_574 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_494); -x_575 = l_Lean_Syntax_node2(x_494, x_574, x_571, x_573); -x_576 = lean_array_size(x_490); -x_577 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; -x_578 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_577, x_576, x_16, x_490); -x_579 = l_Array_append___rarg(x_503, x_578); -lean_dec(x_578); -lean_inc(x_494); -x_580 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_580, 0, x_494); -lean_ctor_set(x_580, 1, x_502); -lean_ctor_set(x_580, 2, x_579); -x_581 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_494); -x_582 = l_Lean_Syntax_node2(x_494, x_581, x_575, x_580); -x_583 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; -lean_inc(x_494); -x_584 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_584, 0, x_494); -lean_ctor_set(x_584, 1, x_583); -x_585 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; -lean_inc(x_494); -x_586 = l_Lean_Syntax_node3(x_494, x_585, x_569, x_582, x_584); -lean_inc(x_494); -x_587 = l_Lean_Syntax_node1(x_494, x_502, x_586); -lean_inc(x_494); -x_588 = l_Lean_Syntax_node2(x_494, x_581, x_567, x_587); -x_589 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_562); -lean_inc(x_494); -x_590 = l_Lean_Syntax_node2(x_494, x_589, x_562, x_588); -x_591 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_504); -lean_inc(x_494); -x_592 = l_Lean_Syntax_node2(x_494, x_591, x_504, x_590); -x_593 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_494); -x_594 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_594, 0, x_494); -lean_ctor_set(x_594, 1, x_593); -x_595 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_494); -x_596 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_596, 0, x_494); -lean_ctor_set(x_596, 1, x_595); -x_597 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_589 = l_Lean_addMacroScope(x_495, x_588, x_489); +x_590 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_591 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_488); +x_592 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_592, 0, x_488); +lean_ctor_set(x_592, 1, x_590); +lean_ctor_set(x_592, 2, x_589); +lean_ctor_set(x_592, 3, x_591); +x_593 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_498); +lean_inc(x_488); +x_594 = l_Lean_Syntax_node2(x_488, x_593, x_592, x_498); +x_595 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_598 = l_Lean_addMacroScope(x_501, x_597, x_495); -x_599 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_600 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; -lean_inc(x_494); -x_601 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_601, 0, x_494); -lean_ctor_set(x_601, 1, x_599); -lean_ctor_set(x_601, 2, x_598); -lean_ctor_set(x_601, 3, x_600); -x_602 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_504); -lean_inc(x_494); -x_603 = l_Lean_Syntax_node2(x_494, x_602, x_601, x_504); -x_604 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +x_596 = l_Lean_addMacroScope(x_495, x_595, x_489); +x_597 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +lean_inc(x_488); +x_598 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_598, 0, x_488); +lean_ctor_set(x_598, 1, x_597); +lean_ctor_set(x_598, 2, x_596); +lean_ctor_set(x_598, 3, x_13); +x_599 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_598); +lean_inc(x_585); +lean_inc(x_488); +x_600 = l_Lean_Syntax_node3(x_488, x_599, x_594, x_585, x_598); +x_601 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_605 = l_Lean_addMacroScope(x_501, x_604, x_495); -x_606 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; -lean_inc(x_494); -x_607 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_607, 0, x_494); -lean_ctor_set(x_607, 1, x_606); -lean_ctor_set(x_607, 2, x_605); -lean_ctor_set(x_607, 3, x_13); -x_608 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_607); -lean_inc(x_594); -lean_inc(x_494); -x_609 = l_Lean_Syntax_node3(x_494, x_608, x_603, x_594, x_607); -x_610 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +x_602 = l_Lean_addMacroScope(x_495, x_601, x_489); +x_603 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_604 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_488); +x_605 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_605, 0, x_488); +lean_ctor_set(x_605, 1, x_603); +lean_ctor_set(x_605, 2, x_602); +lean_ctor_set(x_605, 3, x_604); +lean_inc(x_498); +lean_inc(x_488); +x_606 = l_Lean_Syntax_node2(x_488, x_593, x_605, x_498); +x_607 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_611 = l_Lean_addMacroScope(x_501, x_610, x_495); -x_612 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_613 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; -lean_inc(x_494); -x_614 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_614, 0, x_494); -lean_ctor_set(x_614, 1, x_612); -lean_ctor_set(x_614, 2, x_611); -lean_ctor_set(x_614, 3, x_613); -lean_inc(x_504); -lean_inc(x_494); -x_615 = l_Lean_Syntax_node2(x_494, x_602, x_614, x_504); -x_616 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +x_608 = l_Lean_addMacroScope(x_495, x_607, x_489); +x_609 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_488); +x_610 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_610, 0, x_488); +lean_ctor_set(x_610, 1, x_609); +lean_ctor_set(x_610, 2, x_608); +lean_ctor_set(x_610, 3, x_13); +lean_inc(x_610); +lean_inc(x_585); +lean_inc(x_488); +x_611 = l_Lean_Syntax_node3(x_488, x_599, x_606, x_585, x_610); +lean_inc(x_488); +x_612 = l_Lean_Syntax_node3(x_488, x_496, x_600, x_18, x_611); +x_613 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_498); +lean_inc(x_488); +x_614 = l_Lean_Syntax_node1(x_488, x_613, x_498); +x_615 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_488); +x_616 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_616, 0, x_488); +lean_ctor_set(x_616, 1, x_615); +x_617 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc(x_616); +lean_inc(x_614); +lean_inc_n(x_498, 2); +lean_inc(x_587); +lean_inc(x_488); +x_618 = l_Lean_Syntax_node6(x_488, x_617, x_587, x_498, x_612, x_614, x_498, x_616); +x_619 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_498, 2); +lean_inc(x_488); +x_620 = l_Lean_Syntax_node2(x_488, x_619, x_498, x_498); +x_621 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_617 = l_Lean_addMacroScope(x_501, x_616, x_495); -x_618 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; -lean_inc(x_494); -x_619 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_619, 0, x_494); -lean_ctor_set(x_619, 1, x_618); -lean_ctor_set(x_619, 2, x_617); -lean_ctor_set(x_619, 3, x_13); -lean_inc(x_619); -lean_inc(x_594); -lean_inc(x_494); -x_620 = l_Lean_Syntax_node3(x_494, x_608, x_615, x_594, x_619); -lean_inc(x_494); -x_621 = l_Lean_Syntax_node3(x_494, x_502, x_609, x_18, x_620); -x_622 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_504); -lean_inc(x_494); -x_623 = l_Lean_Syntax_node1(x_494, x_622, x_504); -x_624 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_494); -x_625 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_625, 0, x_494); -lean_ctor_set(x_625, 1, x_624); -x_626 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc(x_625); -lean_inc(x_623); -lean_inc_n(x_504, 2); -lean_inc(x_596); -lean_inc(x_494); -x_627 = l_Lean_Syntax_node6(x_494, x_626, x_596, x_504, x_621, x_623, x_504, x_625); -x_628 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_504, 2); -lean_inc(x_494); -x_629 = l_Lean_Syntax_node2(x_494, x_628, x_504, x_504); -x_630 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +x_622 = l_Lean_addMacroScope(x_495, x_621, x_489); +x_623 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; +lean_inc(x_488); +x_624 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_624, 0, x_488); +lean_ctor_set(x_624, 1, x_623); +lean_ctor_set(x_624, 2, x_622); +lean_ctor_set(x_624, 3, x_13); +lean_inc(x_624); +lean_inc(x_488); +x_625 = l_Lean_Syntax_node1(x_488, x_496, x_624); +x_626 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; +lean_inc(x_488); +x_627 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_627, 0, x_488); +lean_ctor_set(x_627, 1, x_626); +x_628 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_631 = l_Lean_addMacroScope(x_501, x_630, x_495); -x_632 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; -lean_inc(x_494); -x_633 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_633, 0, x_494); -lean_ctor_set(x_633, 1, x_632); -lean_ctor_set(x_633, 2, x_631); -lean_ctor_set(x_633, 3, x_13); -lean_inc(x_633); -lean_inc(x_494); -x_634 = l_Lean_Syntax_node1(x_494, x_502, x_633); -x_635 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; -lean_inc(x_494); -x_636 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_636, 0, x_494); -lean_ctor_set(x_636, 1, x_635); -x_637 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +x_629 = l_Lean_addMacroScope(x_495, x_628, x_489); +x_630 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_631 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +lean_inc(x_488); +x_632 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_632, 0, x_488); +lean_ctor_set(x_632, 1, x_630); +lean_ctor_set(x_632, 2, x_629); +lean_ctor_set(x_632, 3, x_631); +x_633 = lean_array_size(x_29); +x_634 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_599, x_633, x_16, x_29); +x_635 = lean_array_size(x_634); +x_636 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_635, x_16, x_634); +x_637 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; +x_638 = l_Lean_mkSepArray(x_636, x_637); +lean_dec(x_636); +x_639 = l_Array_append___rarg(x_497, x_638); +lean_dec(x_638); +lean_inc(x_488); +x_640 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_640, 0, x_488); +lean_ctor_set(x_640, 1, x_496); +lean_ctor_set(x_640, 2, x_639); +lean_inc(x_508); +lean_inc(x_553); +lean_inc(x_488); +x_641 = l_Lean_Syntax_node2(x_488, x_496, x_553, x_508); +lean_inc(x_616); +lean_inc(x_614); +lean_inc(x_498); +lean_inc(x_587); +lean_inc(x_488); +x_642 = l_Lean_Syntax_node6(x_488, x_617, x_587, x_498, x_640, x_614, x_641, x_616); +lean_inc(x_488); +x_643 = l_Lean_Syntax_node1(x_488, x_496, x_642); +lean_inc(x_488); +x_644 = l_Lean_Syntax_node2(x_488, x_572, x_632, x_643); +lean_inc(x_488); +x_645 = l_Lean_Syntax_node1(x_488, x_496, x_644); +x_646 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; +lean_inc(x_627); +lean_inc(x_488); +x_647 = l_Lean_Syntax_node2(x_488, x_646, x_627, x_645); +x_648 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_585); +lean_inc(x_498); +lean_inc(x_488); +x_649 = l_Lean_Syntax_node5(x_488, x_648, x_598, x_625, x_498, x_585, x_647); +x_650 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_488); +x_651 = l_Lean_Syntax_node1(x_488, x_650, x_649); +x_652 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_620); +lean_inc_n(x_498, 2); +lean_inc(x_488); +x_653 = l_Lean_Syntax_node4(x_488, x_652, x_498, x_498, x_651, x_620); +x_654 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_489); lean_inc(x_495); -lean_inc(x_501); -x_638 = l_Lean_addMacroScope(x_501, x_637, x_495); -x_639 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_640 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; -lean_inc(x_494); -x_641 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_641, 0, x_494); -lean_ctor_set(x_641, 1, x_639); -lean_ctor_set(x_641, 2, x_638); -lean_ctor_set(x_641, 3, x_640); -x_642 = lean_array_size(x_29); -x_643 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_608, x_642, x_16, x_29); -x_644 = lean_array_size(x_643); -x_645 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_644, x_16, x_643); -x_646 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; -x_647 = l_Lean_mkSepArray(x_645, x_646); -lean_dec(x_645); -x_648 = l_Array_append___rarg(x_503, x_647); -lean_dec(x_647); -lean_inc(x_494); -x_649 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_649, 0, x_494); -lean_ctor_set(x_649, 1, x_502); -lean_ctor_set(x_649, 2, x_648); -lean_inc(x_514); -lean_inc(x_562); -lean_inc(x_494); -x_650 = l_Lean_Syntax_node2(x_494, x_502, x_562, x_514); -lean_inc(x_625); -lean_inc(x_623); -lean_inc(x_504); -lean_inc(x_596); -lean_inc(x_494); -x_651 = l_Lean_Syntax_node6(x_494, x_626, x_596, x_504, x_649, x_623, x_650, x_625); -lean_inc(x_494); -x_652 = l_Lean_Syntax_node1(x_494, x_502, x_651); -lean_inc(x_494); -x_653 = l_Lean_Syntax_node2(x_494, x_581, x_641, x_652); -lean_inc(x_494); -x_654 = l_Lean_Syntax_node1(x_494, x_502, x_653); -x_655 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; -lean_inc(x_636); -lean_inc(x_494); -x_656 = l_Lean_Syntax_node2(x_494, x_655, x_636, x_654); -x_657 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_594); -lean_inc(x_504); -lean_inc(x_494); -x_658 = l_Lean_Syntax_node5(x_494, x_657, x_607, x_634, x_504, x_594, x_656); -x_659 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_494); -x_660 = l_Lean_Syntax_node1(x_494, x_659, x_658); -x_661 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_629); -lean_inc_n(x_504, 2); -lean_inc(x_494); -x_662 = l_Lean_Syntax_node4(x_494, x_661, x_504, x_504, x_660, x_629); -x_663 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; -lean_inc(x_495); -lean_inc(x_501); -x_664 = l_Lean_addMacroScope(x_501, x_663, x_495); -x_665 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_494); -x_666 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_666, 0, x_494); +x_655 = l_Lean_addMacroScope(x_495, x_654, x_489); +x_656 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_488); +x_657 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_657, 0, x_488); +lean_ctor_set(x_657, 1, x_656); +lean_ctor_set(x_657, 2, x_655); +lean_ctor_set(x_657, 3, x_13); +lean_inc(x_488); +x_658 = l_Lean_Syntax_node1(x_488, x_496, x_657); +x_659 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_488); +x_660 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_660, 0, x_488); +lean_ctor_set(x_660, 1, x_659); +x_661 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_488); +x_662 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_662, 0, x_488); +lean_ctor_set(x_662, 1, x_661); +lean_inc(x_488); +x_663 = l_Lean_Syntax_node2(x_488, x_580, x_553, x_508); +lean_inc(x_488); +x_664 = l_Lean_Syntax_node1(x_488, x_496, x_663); +x_665 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_488); +x_666 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_666, 0, x_488); lean_ctor_set(x_666, 1, x_665); -lean_ctor_set(x_666, 2, x_664); -lean_ctor_set(x_666, 3, x_13); -lean_inc(x_494); -x_667 = l_Lean_Syntax_node1(x_494, x_502, x_666); -x_668 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_494); -x_669 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_669, 0, x_494); -lean_ctor_set(x_669, 1, x_668); -x_670 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_494); -x_671 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_671, 0, x_494); -lean_ctor_set(x_671, 1, x_670); -lean_inc(x_494); -x_672 = l_Lean_Syntax_node2(x_494, x_589, x_562, x_514); -lean_inc(x_494); -x_673 = l_Lean_Syntax_node1(x_494, x_502, x_672); -x_674 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; -lean_inc(x_494); -x_675 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_675, 0, x_494); -lean_ctor_set(x_675, 1, x_674); -x_676 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -x_677 = l_Lean_addMacroScope(x_501, x_676, x_495); -x_678 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_679 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; -lean_inc(x_494); -x_680 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_680, 0, x_494); -lean_ctor_set(x_680, 1, x_678); -lean_ctor_set(x_680, 2, x_677); -lean_ctor_set(x_680, 3, x_679); -lean_inc(x_667); -lean_inc(x_494); -x_681 = l_Lean_Syntax_node2(x_494, x_581, x_680, x_667); -x_682 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_494); -x_683 = l_Lean_Syntax_node1(x_494, x_682, x_681); -x_684 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_494); -x_685 = l_Lean_Syntax_node4(x_494, x_684, x_633, x_673, x_675, x_683); -x_686 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_504); -lean_inc(x_494); -x_687 = l_Lean_Syntax_node3(x_494, x_686, x_671, x_504, x_685); -x_688 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_504); -lean_inc(x_494); -x_689 = l_Lean_Syntax_node2(x_494, x_688, x_687, x_504); -x_690 = l_Lean_Syntax_SepArray_ofElems(x_534, x_26); +x_667 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +x_668 = l_Lean_addMacroScope(x_495, x_667, x_489); +x_669 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_670 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; +lean_inc(x_488); +x_671 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_671, 0, x_488); +lean_ctor_set(x_671, 1, x_669); +lean_ctor_set(x_671, 2, x_668); +lean_ctor_set(x_671, 3, x_670); +lean_inc(x_658); +lean_inc(x_488); +x_672 = l_Lean_Syntax_node2(x_488, x_572, x_671, x_658); +x_673 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; +lean_inc(x_488); +x_674 = l_Lean_Syntax_node1(x_488, x_673, x_672); +x_675 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_488); +x_676 = l_Lean_Syntax_node4(x_488, x_675, x_624, x_664, x_666, x_674); +x_677 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_498); +lean_inc(x_488); +x_678 = l_Lean_Syntax_node3(x_488, x_677, x_662, x_498, x_676); +x_679 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_498); +lean_inc(x_488); +x_680 = l_Lean_Syntax_node2(x_488, x_679, x_678, x_498); +x_681 = l_Lean_Syntax_SepArray_ofElems(x_526, x_26); lean_dec(x_26); -x_691 = l_Array_append___rarg(x_503, x_690); -lean_dec(x_690); -lean_inc(x_494); -x_692 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_692, 0, x_494); -lean_ctor_set(x_692, 1, x_502); -lean_ctor_set(x_692, 2, x_691); -lean_inc_n(x_504, 2); -lean_inc(x_494); -x_693 = l_Lean_Syntax_node6(x_494, x_626, x_596, x_504, x_692, x_623, x_504, x_625); -lean_inc(x_494); -x_694 = l_Lean_Syntax_node1(x_494, x_502, x_693); -x_695 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; -lean_inc(x_494); -x_696 = l_Lean_Syntax_node2(x_494, x_695, x_636, x_694); -lean_inc(x_504); -lean_inc(x_494); -x_697 = l_Lean_Syntax_node2(x_494, x_688, x_696, x_504); -lean_inc(x_494); -x_698 = l_Lean_Syntax_node2(x_494, x_502, x_689, x_697); -x_699 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; -lean_inc(x_494); -x_700 = l_Lean_Syntax_node1(x_494, x_699, x_698); -x_701 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; -lean_inc(x_494); -x_702 = l_Lean_Syntax_node2(x_494, x_701, x_669, x_700); -lean_inc(x_594); -lean_inc(x_504); -lean_inc(x_494); -x_703 = l_Lean_Syntax_node5(x_494, x_657, x_619, x_667, x_504, x_594, x_702); -lean_inc(x_494); -x_704 = l_Lean_Syntax_node1(x_494, x_659, x_703); -lean_inc(x_629); -lean_inc_n(x_504, 2); -lean_inc(x_494); -x_705 = l_Lean_Syntax_node4(x_494, x_661, x_504, x_504, x_704, x_629); -lean_inc(x_504); -lean_inc(x_494); -x_706 = l_Lean_Syntax_node3(x_494, x_502, x_662, x_504, x_705); -x_707 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; -lean_inc(x_494); -x_708 = l_Lean_Syntax_node2(x_494, x_707, x_20, x_706); -lean_inc(x_494); -x_709 = l_Lean_Syntax_node1(x_494, x_502, x_708); -x_710 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_494); -x_711 = l_Lean_Syntax_node4(x_494, x_710, x_594, x_627, x_629, x_709); -x_712 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_504); -lean_inc(x_494); -x_713 = l_Lean_Syntax_node6(x_494, x_712, x_558, x_560, x_504, x_504, x_592, x_711); -lean_inc(x_494); -x_714 = l_Lean_Syntax_node2(x_494, x_547, x_506, x_713); -x_715 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_494); -x_716 = l_Lean_Syntax_node3(x_494, x_715, x_554, x_556, x_714); -x_717 = l_Lean_Syntax_node2(x_494, x_502, x_548, x_716); -if (lean_is_scalar(x_499)) { - x_718 = lean_alloc_ctor(0, 2, 0); +x_682 = l_Array_append___rarg(x_497, x_681); +lean_dec(x_681); +lean_inc(x_488); +x_683 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_683, 0, x_488); +lean_ctor_set(x_683, 1, x_496); +lean_ctor_set(x_683, 2, x_682); +lean_inc_n(x_498, 2); +lean_inc(x_488); +x_684 = l_Lean_Syntax_node6(x_488, x_617, x_587, x_498, x_683, x_614, x_498, x_616); +lean_inc(x_488); +x_685 = l_Lean_Syntax_node1(x_488, x_496, x_684); +x_686 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +lean_inc(x_488); +x_687 = l_Lean_Syntax_node2(x_488, x_686, x_627, x_685); +lean_inc(x_498); +lean_inc(x_488); +x_688 = l_Lean_Syntax_node2(x_488, x_679, x_687, x_498); +lean_inc(x_488); +x_689 = l_Lean_Syntax_node2(x_488, x_496, x_680, x_688); +x_690 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +lean_inc(x_488); +x_691 = l_Lean_Syntax_node1(x_488, x_690, x_689); +x_692 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_488); +x_693 = l_Lean_Syntax_node2(x_488, x_692, x_660, x_691); +lean_inc(x_585); +lean_inc(x_498); +lean_inc(x_488); +x_694 = l_Lean_Syntax_node5(x_488, x_648, x_610, x_658, x_498, x_585, x_693); +lean_inc(x_488); +x_695 = l_Lean_Syntax_node1(x_488, x_650, x_694); +lean_inc(x_620); +lean_inc_n(x_498, 2); +lean_inc(x_488); +x_696 = l_Lean_Syntax_node4(x_488, x_652, x_498, x_498, x_695, x_620); +lean_inc(x_498); +lean_inc(x_488); +x_697 = l_Lean_Syntax_node3(x_488, x_496, x_653, x_498, x_696); +x_698 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +lean_inc(x_488); +x_699 = l_Lean_Syntax_node2(x_488, x_698, x_20, x_697); +lean_inc(x_488); +x_700 = l_Lean_Syntax_node1(x_488, x_496, x_699); +x_701 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; +lean_inc(x_488); +x_702 = l_Lean_Syntax_node4(x_488, x_701, x_585, x_618, x_620, x_700); +x_703 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_498); +lean_inc(x_488); +x_704 = l_Lean_Syntax_node6(x_488, x_703, x_549, x_551, x_498, x_498, x_583, x_702); +lean_inc(x_488); +x_705 = l_Lean_Syntax_node2(x_488, x_538, x_500, x_704); +x_706 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_488); +x_707 = l_Lean_Syntax_node3(x_488, x_706, x_545, x_547, x_705); +x_708 = l_Lean_Syntax_node2(x_488, x_496, x_539, x_707); +if (lean_is_scalar(x_493)) { + x_709 = lean_alloc_ctor(0, 2, 0); } else { - x_718 = x_499; + x_709 = x_493; } -lean_ctor_set(x_718, 0, x_717); -lean_ctor_set(x_718, 1, x_498); -return x_718; +lean_ctor_set(x_709, 0, x_708); +lean_ctor_set(x_709, 1, x_492); +return x_709; } else { -lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; -lean_dec(x_487); -lean_dec(x_486); +lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; +lean_dec(x_481); +lean_dec(x_480); lean_free_object(x_20); lean_dec(x_29); lean_free_object(x_19); @@ -5773,1883 +5732,1862 @@ lean_dec(x_26); lean_free_object(x_18); lean_dec(x_10); lean_dec(x_4); -x_719 = lean_ctor_get(x_489, 0); -lean_inc(x_719); -x_720 = lean_ctor_get(x_489, 1); -lean_inc(x_720); -if (lean_is_exclusive(x_489)) { - lean_ctor_release(x_489, 0); - lean_ctor_release(x_489, 1); - x_721 = x_489; +x_710 = lean_ctor_get(x_483, 0); +lean_inc(x_710); +x_711 = lean_ctor_get(x_483, 1); +lean_inc(x_711); +if (lean_is_exclusive(x_483)) { + lean_ctor_release(x_483, 0); + lean_ctor_release(x_483, 1); + x_712 = x_483; } else { - lean_dec_ref(x_489); - x_721 = lean_box(0); + lean_dec_ref(x_483); + x_712 = lean_box(0); } -if (lean_is_scalar(x_721)) { - x_722 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_712)) { + x_713 = lean_alloc_ctor(1, 2, 0); } else { - x_722 = x_721; + x_713 = x_712; } -lean_ctor_set(x_722, 0, x_719); -lean_ctor_set(x_722, 1, x_720); -return x_722; +lean_ctor_set(x_713, 0, x_710); +lean_ctor_set(x_713, 1, x_711); +return x_713; } } } else { -lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; size_t x_727; lean_object* x_728; -x_723 = lean_ctor_get(x_20, 0); -lean_inc(x_723); +lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; size_t x_718; lean_object* x_719; +x_714 = lean_ctor_get(x_20, 0); +lean_inc(x_714); lean_dec(x_20); -x_724 = lean_ctor_get(x_21, 0); -lean_inc(x_724); -x_725 = lean_ctor_get(x_21, 1); -lean_inc(x_725); +x_715 = lean_ctor_get(x_21, 0); +lean_inc(x_715); +x_716 = lean_ctor_get(x_21, 1); +lean_inc(x_716); if (lean_is_exclusive(x_21)) { lean_ctor_release(x_21, 0); lean_ctor_release(x_21, 1); - x_726 = x_21; + x_717 = x_21; } else { lean_dec_ref(x_21); - x_726 = lean_box(0); + x_717 = lean_box(0); } -x_727 = lean_array_size(x_2); -x_728 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_727, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_23); -if (lean_obj_tag(x_728) == 0) +x_718 = lean_array_size(x_2); +x_719 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_718, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_719) == 0) { -lean_object* x_729; lean_object* x_730; lean_object* x_731; uint8_t x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; size_t x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; size_t x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; size_t x_882; lean_object* x_883; size_t x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; -x_729 = lean_ctor_get(x_728, 0); -lean_inc(x_729); -x_730 = lean_ctor_get(x_728, 1); -lean_inc(x_730); -lean_dec(x_728); -x_731 = lean_ctor_get(x_10, 5); -lean_inc(x_731); -x_732 = 0; -x_733 = l_Lean_SourceInfo_fromRef(x_731, x_732); -lean_dec(x_731); -x_734 = lean_ctor_get(x_10, 10); -lean_inc(x_734); +lean_object* x_720; lean_object* x_721; lean_object* x_722; uint8_t x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; size_t x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; lean_object* x_778; lean_object* x_779; lean_object* x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; size_t x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; size_t x_870; lean_object* x_871; size_t x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; +x_720 = lean_ctor_get(x_719, 0); +lean_inc(x_720); +x_721 = lean_ctor_get(x_719, 1); +lean_inc(x_721); +lean_dec(x_719); +x_722 = lean_ctor_get(x_10, 5); +lean_inc(x_722); +x_723 = 0; +x_724 = l_Lean_SourceInfo_fromRef(x_722, x_723); +lean_dec(x_722); +x_725 = lean_ctor_get(x_10, 10); +lean_inc(x_725); lean_dec(x_10); -x_735 = lean_st_ref_get(x_11, x_730); -x_736 = lean_ctor_get(x_735, 0); +x_726 = lean_st_ref_get(x_11, x_721); +x_727 = lean_ctor_get(x_726, 0); +lean_inc(x_727); +x_728 = lean_ctor_get(x_726, 1); +lean_inc(x_728); +if (lean_is_exclusive(x_726)) { + lean_ctor_release(x_726, 0); + lean_ctor_release(x_726, 1); + x_729 = x_726; +} else { + lean_dec_ref(x_726); + x_729 = lean_box(0); +} +x_730 = lean_ctor_get(x_727, 0); +lean_inc(x_730); +lean_dec(x_727); +x_731 = lean_environment_main_module(x_730); +x_732 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +x_733 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +lean_inc(x_724); +x_734 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_734, 0, x_724); +lean_ctor_set(x_734, 1, x_732); +lean_ctor_set(x_734, 2, x_733); +x_735 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_734, 6); +lean_inc(x_724); +x_736 = l_Lean_Syntax_node6(x_724, x_735, x_734, x_734, x_734, x_734, x_734, x_734); +x_737 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; +lean_inc(x_724); +if (lean_is_scalar(x_717)) { + x_738 = lean_alloc_ctor(2, 2, 0); +} else { + x_738 = x_717; + lean_ctor_set_tag(x_738, 2); +} +lean_ctor_set(x_738, 0, x_724); +lean_ctor_set(x_738, 1, x_737); +x_739 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; +lean_inc(x_724); +x_740 = l_Lean_Syntax_node1(x_724, x_739, x_738); +x_741 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_725); +lean_inc(x_731); +x_742 = l_Lean_addMacroScope(x_731, x_741, x_725); +x_743 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_724); +x_744 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_744, 0, x_724); +lean_ctor_set(x_744, 1, x_743); +lean_ctor_set(x_744, 2, x_742); +lean_ctor_set(x_744, 3, x_13); +x_745 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_734); +lean_inc(x_744); +lean_inc(x_724); +x_746 = l_Lean_Syntax_node2(x_724, x_745, x_744, x_734); +x_747 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +lean_inc(x_724); +x_748 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_748, 0, x_724); +lean_ctor_set(x_748, 1, x_747); +x_749 = l_Array_zip___rarg(x_715, x_716); +lean_dec(x_716); +lean_dec(x_715); +x_750 = lean_array_size(x_749); lean_inc(x_736); -x_737 = lean_ctor_get(x_735, 1); -lean_inc(x_737); -if (lean_is_exclusive(x_735)) { - lean_ctor_release(x_735, 0); - lean_ctor_release(x_735, 1); - x_738 = x_735; -} else { - lean_dec_ref(x_735); - x_738 = lean_box(0); -} -x_739 = lean_ctor_get(x_736, 0); -lean_inc(x_739); -lean_dec(x_736); -x_740 = lean_environment_main_module(x_739); -x_741 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -x_742 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -lean_inc(x_733); -x_743 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_743, 0, x_733); -lean_ctor_set(x_743, 1, x_741); -lean_ctor_set(x_743, 2, x_742); -x_744 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_743, 6); -lean_inc(x_733); -x_745 = l_Lean_Syntax_node6(x_733, x_744, x_743, x_743, x_743, x_743, x_743, x_743); -x_746 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; -lean_inc(x_733); -if (lean_is_scalar(x_726)) { - x_747 = lean_alloc_ctor(2, 2, 0); -} else { - x_747 = x_726; - lean_ctor_set_tag(x_747, 2); -} -lean_ctor_set(x_747, 0, x_733); -lean_ctor_set(x_747, 1, x_746); -x_748 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; -lean_inc(x_733); -x_749 = l_Lean_Syntax_node1(x_733, x_748, x_747); -x_750 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; lean_inc(x_734); -lean_inc(x_740); -x_751 = l_Lean_addMacroScope(x_740, x_750, x_734); -x_752 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; -lean_inc(x_733); -x_753 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_753, 0, x_733); -lean_ctor_set(x_753, 1, x_752); -lean_ctor_set(x_753, 2, x_751); -lean_ctor_set(x_753, 3, x_13); -x_754 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_743); -lean_inc(x_753); -lean_inc(x_733); -x_755 = l_Lean_Syntax_node2(x_733, x_754, x_753, x_743); -x_756 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; -lean_inc(x_733); -x_757 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_757, 0, x_733); -lean_ctor_set(x_757, 1, x_756); -x_758 = l_Array_zip___rarg(x_724, x_725); -lean_dec(x_725); -lean_dec(x_724); -x_759 = lean_array_size(x_758); -lean_inc(x_745); -lean_inc(x_743); -lean_inc(x_733); -x_760 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_733, x_741, x_743, x_745, x_759, x_16, x_758); -x_761 = l_Array_append___rarg(x_742, x_760); -lean_dec(x_760); -lean_inc(x_733); -x_762 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_762, 0, x_733); -lean_ctor_set(x_762, 1, x_741); -lean_ctor_set(x_762, 2, x_761); -x_763 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; -lean_inc(x_733); -x_764 = l_Lean_Syntax_node1(x_733, x_763, x_762); -lean_inc(x_743); -lean_inc(x_757); -lean_inc(x_733); -x_765 = l_Lean_Syntax_node3(x_733, x_741, x_757, x_743, x_764); -x_766 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; -lean_inc(x_733); +lean_inc(x_724); +x_751 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_724, x_732, x_734, x_736, x_750, x_16, x_749); +x_752 = l_Array_append___rarg(x_733, x_751); +lean_dec(x_751); +lean_inc(x_724); +x_753 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_753, 0, x_724); +lean_ctor_set(x_753, 1, x_732); +lean_ctor_set(x_753, 2, x_752); +x_754 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; +lean_inc(x_724); +x_755 = l_Lean_Syntax_node1(x_724, x_754, x_753); +lean_inc(x_734); +lean_inc(x_748); +lean_inc(x_724); +x_756 = l_Lean_Syntax_node3(x_724, x_732, x_748, x_734, x_755); +x_757 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +lean_inc(x_724); lean_ctor_set_tag(x_19, 2); -lean_ctor_set(x_19, 1, x_766); -lean_ctor_set(x_19, 0, x_733); -x_767 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; -lean_inc(x_734); -lean_inc(x_740); -x_768 = l_Lean_addMacroScope(x_740, x_767, x_734); -x_769 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_770 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; -lean_inc(x_733); -x_771 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_771, 0, x_733); -lean_ctor_set(x_771, 1, x_769); -lean_ctor_set(x_771, 2, x_768); -lean_ctor_set(x_771, 3, x_770); -x_772 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_743); -lean_inc(x_733); -x_773 = l_Lean_Syntax_node2(x_733, x_772, x_771, x_743); -x_774 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_733); +lean_ctor_set(x_19, 1, x_757); +lean_ctor_set(x_19, 0, x_724); +x_758 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_725); +lean_inc(x_731); +x_759 = l_Lean_addMacroScope(x_731, x_758, x_725); +x_760 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_761 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; +lean_inc(x_724); +x_762 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_762, 0, x_724); +lean_ctor_set(x_762, 1, x_760); +lean_ctor_set(x_762, 2, x_759); +lean_ctor_set(x_762, 3, x_761); +x_763 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +lean_inc(x_724); lean_ctor_set_tag(x_18, 2); -lean_ctor_set(x_18, 1, x_774); -lean_ctor_set(x_18, 0, x_733); -x_775 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_734); -lean_inc(x_740); -x_776 = l_Lean_addMacroScope(x_740, x_775, x_734); -x_777 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_778 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; -lean_inc(x_733); -x_779 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_779, 0, x_733); -lean_ctor_set(x_779, 1, x_777); -lean_ctor_set(x_779, 2, x_776); -lean_ctor_set(x_779, 3, x_778); -lean_inc(x_743); -lean_inc(x_733); -x_780 = l_Lean_Syntax_node2(x_733, x_772, x_779, x_743); +lean_ctor_set(x_18, 1, x_763); +lean_ctor_set(x_18, 0, x_724); +x_764 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_725); +lean_inc(x_731); +x_765 = l_Lean_addMacroScope(x_731, x_764, x_725); +x_766 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_767 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; +lean_inc(x_724); +x_768 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_768, 0, x_724); +lean_ctor_set(x_768, 1, x_766); +lean_ctor_set(x_768, 2, x_765); +lean_ctor_set(x_768, 3, x_767); lean_inc(x_18); -lean_inc(x_733); -x_781 = l_Lean_Syntax_node3(x_733, x_741, x_773, x_18, x_780); -lean_inc(x_733); -x_782 = l_Lean_Syntax_node2(x_733, x_741, x_19, x_781); -x_783 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; -lean_inc(x_733); -x_784 = l_Lean_Syntax_node1(x_733, x_783, x_782); -x_785 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; -lean_inc_n(x_743, 3); -lean_inc(x_733); -x_786 = l_Lean_Syntax_node7(x_733, x_785, x_749, x_755, x_743, x_743, x_743, x_765, x_784); -x_787 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_745); -lean_inc(x_733); -x_788 = l_Lean_Syntax_node2(x_733, x_787, x_745, x_786); -x_789 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; -lean_inc(x_733); +lean_inc(x_724); +x_769 = l_Lean_Syntax_node3(x_724, x_732, x_762, x_18, x_768); +lean_inc(x_724); +x_770 = l_Lean_Syntax_node2(x_724, x_732, x_19, x_769); +x_771 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_724); +x_772 = l_Lean_Syntax_node1(x_724, x_771, x_770); +x_773 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; +lean_inc_n(x_734, 3); +lean_inc(x_724); +x_774 = l_Lean_Syntax_node7(x_724, x_773, x_740, x_746, x_734, x_734, x_734, x_756, x_772); +x_775 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_736); +lean_inc(x_724); +x_776 = l_Lean_Syntax_node2(x_724, x_775, x_736, x_774); +x_777 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_724); +x_778 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_778, 0, x_724); +lean_ctor_set(x_778, 1, x_777); +x_779 = l_Array_append___rarg(x_733, x_3); +lean_inc(x_724); +x_780 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_780, 0, x_724); +lean_ctor_set(x_780, 1, x_732); +lean_ctor_set(x_780, 2, x_779); +x_781 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_724); +x_782 = l_Lean_Syntax_node2(x_724, x_781, x_778, x_780); +x_783 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +lean_inc(x_724); +x_784 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_784, 0, x_724); +lean_ctor_set(x_784, 1, x_783); +x_785 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_734); +lean_inc(x_724); +x_786 = l_Lean_Syntax_node1(x_724, x_785, x_734); +x_787 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +lean_inc(x_724); +x_788 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_788, 0, x_724); +lean_ctor_set(x_788, 1, x_787); +x_789 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +lean_inc(x_724); x_790 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_790, 0, x_733); +lean_ctor_set(x_790, 0, x_724); lean_ctor_set(x_790, 1, x_789); -x_791 = l_Array_append___rarg(x_742, x_3); -lean_inc(x_733); -x_792 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_792, 0, x_733); -lean_ctor_set(x_792, 1, x_741); -lean_ctor_set(x_792, 2, x_791); -x_793 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -lean_inc(x_733); -x_794 = l_Lean_Syntax_node2(x_733, x_793, x_790, x_792); -x_795 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_733); -x_796 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_796, 0, x_733); -lean_ctor_set(x_796, 1, x_795); -x_797 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_743); -lean_inc(x_733); -x_798 = l_Lean_Syntax_node1(x_733, x_797, x_743); -x_799 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_733); -x_800 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_800, 0, x_733); -lean_ctor_set(x_800, 1, x_799); -x_801 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_733); -x_802 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_802, 0, x_733); -lean_ctor_set(x_802, 1, x_801); -x_803 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_791 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_725); +lean_inc(x_731); +x_792 = l_Lean_addMacroScope(x_731, x_791, x_725); +x_793 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_794 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_724); +x_795 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_795, 0, x_724); +lean_ctor_set(x_795, 1, x_793); +lean_ctor_set(x_795, 2, x_792); +lean_ctor_set(x_795, 3, x_794); +x_796 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +lean_inc(x_724); +x_797 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_797, 0, x_724); +lean_ctor_set(x_797, 1, x_796); +x_798 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_724); +x_799 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_799, 0, x_724); +lean_ctor_set(x_799, 1, x_798); +x_800 = lean_box(0); +x_801 = l_Lean_mkCIdentFrom(x_800, x_4, x_723); +x_802 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_724); +x_803 = l_Lean_Syntax_node2(x_724, x_802, x_799, x_801); +x_804 = lean_array_size(x_720); +x_805 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_806 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_805, x_804, x_16, x_720); +x_807 = l_Array_append___rarg(x_733, x_806); +lean_dec(x_806); +lean_inc(x_724); +x_808 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_808, 0, x_724); +lean_ctor_set(x_808, 1, x_732); +lean_ctor_set(x_808, 2, x_807); +x_809 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_724); +x_810 = l_Lean_Syntax_node2(x_724, x_809, x_803, x_808); +x_811 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; +lean_inc(x_724); +x_812 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_812, 0, x_724); +lean_ctor_set(x_812, 1, x_811); +x_813 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; +lean_inc(x_724); +x_814 = l_Lean_Syntax_node3(x_724, x_813, x_797, x_810, x_812); +lean_inc(x_724); +x_815 = l_Lean_Syntax_node1(x_724, x_732, x_814); +lean_inc(x_724); +x_816 = l_Lean_Syntax_node2(x_724, x_809, x_795, x_815); +x_817 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_790); +lean_inc(x_724); +x_818 = l_Lean_Syntax_node2(x_724, x_817, x_790, x_816); +x_819 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; lean_inc(x_734); -lean_inc(x_740); -x_804 = l_Lean_addMacroScope(x_740, x_803, x_734); -x_805 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_806 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; -lean_inc(x_733); -x_807 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_807, 0, x_733); -lean_ctor_set(x_807, 1, x_805); -lean_ctor_set(x_807, 2, x_804); -lean_ctor_set(x_807, 3, x_806); -x_808 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; -lean_inc(x_733); -x_809 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_809, 0, x_733); -lean_ctor_set(x_809, 1, x_808); -x_810 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; -lean_inc(x_733); -x_811 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_811, 0, x_733); -lean_ctor_set(x_811, 1, x_810); -x_812 = lean_box(0); -x_813 = l_Lean_mkCIdentFrom(x_812, x_4, x_732); -x_814 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_733); -x_815 = l_Lean_Syntax_node2(x_733, x_814, x_811, x_813); -x_816 = lean_array_size(x_729); -x_817 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; -x_818 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_817, x_816, x_16, x_729); -x_819 = l_Array_append___rarg(x_742, x_818); -lean_dec(x_818); -lean_inc(x_733); -x_820 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_820, 0, x_733); -lean_ctor_set(x_820, 1, x_741); -lean_ctor_set(x_820, 2, x_819); -x_821 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_733); -x_822 = l_Lean_Syntax_node2(x_733, x_821, x_815, x_820); -x_823 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; -lean_inc(x_733); +lean_inc(x_724); +x_820 = l_Lean_Syntax_node2(x_724, x_819, x_734, x_818); +x_821 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +lean_inc(x_724); +x_822 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_822, 0, x_724); +lean_ctor_set(x_822, 1, x_821); +x_823 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; +lean_inc(x_724); x_824 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_824, 0, x_733); +lean_ctor_set(x_824, 0, x_724); lean_ctor_set(x_824, 1, x_823); -x_825 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; -lean_inc(x_733); -x_826 = l_Lean_Syntax_node3(x_733, x_825, x_809, x_822, x_824); -lean_inc(x_733); -x_827 = l_Lean_Syntax_node1(x_733, x_741, x_826); -lean_inc(x_733); -x_828 = l_Lean_Syntax_node2(x_733, x_821, x_807, x_827); -x_829 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_802); -lean_inc(x_733); -x_830 = l_Lean_Syntax_node2(x_733, x_829, x_802, x_828); -x_831 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_743); -lean_inc(x_733); -x_832 = l_Lean_Syntax_node2(x_733, x_831, x_743, x_830); -x_833 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_733); -x_834 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_834, 0, x_733); -lean_ctor_set(x_834, 1, x_833); -x_835 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_733); -x_836 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_836, 0, x_733); -lean_ctor_set(x_836, 1, x_835); -x_837 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_825 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_725); +lean_inc(x_731); +x_826 = l_Lean_addMacroScope(x_731, x_825, x_725); +x_827 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_828 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_724); +x_829 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_829, 0, x_724); +lean_ctor_set(x_829, 1, x_827); +lean_ctor_set(x_829, 2, x_826); +lean_ctor_set(x_829, 3, x_828); +x_830 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; lean_inc(x_734); -lean_inc(x_740); -x_838 = l_Lean_addMacroScope(x_740, x_837, x_734); -x_839 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_840 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; -lean_inc(x_733); -x_841 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_841, 0, x_733); -lean_ctor_set(x_841, 1, x_839); -lean_ctor_set(x_841, 2, x_838); -lean_ctor_set(x_841, 3, x_840); -x_842 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_743); -lean_inc(x_733); -x_843 = l_Lean_Syntax_node2(x_733, x_842, x_841, x_743); -x_844 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_724); +x_831 = l_Lean_Syntax_node2(x_724, x_830, x_829, x_734); +x_832 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_725); +lean_inc(x_731); +x_833 = l_Lean_addMacroScope(x_731, x_832, x_725); +x_834 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +lean_inc(x_724); +x_835 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_835, 0, x_724); +lean_ctor_set(x_835, 1, x_834); +lean_ctor_set(x_835, 2, x_833); +lean_ctor_set(x_835, 3, x_13); +x_836 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_835); +lean_inc(x_822); +lean_inc(x_724); +x_837 = l_Lean_Syntax_node3(x_724, x_836, x_831, x_822, x_835); +x_838 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_725); +lean_inc(x_731); +x_839 = l_Lean_addMacroScope(x_731, x_838, x_725); +x_840 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_841 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_724); +x_842 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_842, 0, x_724); +lean_ctor_set(x_842, 1, x_840); +lean_ctor_set(x_842, 2, x_839); +lean_ctor_set(x_842, 3, x_841); lean_inc(x_734); -lean_inc(x_740); -x_845 = l_Lean_addMacroScope(x_740, x_844, x_734); -x_846 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; -lean_inc(x_733); +lean_inc(x_724); +x_843 = l_Lean_Syntax_node2(x_724, x_830, x_842, x_734); +x_844 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_725); +lean_inc(x_731); +x_845 = l_Lean_addMacroScope(x_731, x_844, x_725); +x_846 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_724); x_847 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_847, 0, x_733); +lean_ctor_set(x_847, 0, x_724); lean_ctor_set(x_847, 1, x_846); lean_ctor_set(x_847, 2, x_845); lean_ctor_set(x_847, 3, x_13); -x_848 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; lean_inc(x_847); -lean_inc(x_834); -lean_inc(x_733); -x_849 = l_Lean_Syntax_node3(x_733, x_848, x_843, x_834, x_847); -x_850 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_822); +lean_inc(x_724); +x_848 = l_Lean_Syntax_node3(x_724, x_836, x_843, x_822, x_847); +lean_inc(x_724); +x_849 = l_Lean_Syntax_node3(x_724, x_732, x_837, x_18, x_848); +x_850 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; lean_inc(x_734); -lean_inc(x_740); -x_851 = l_Lean_addMacroScope(x_740, x_850, x_734); -x_852 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_853 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; -lean_inc(x_733); -x_854 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_854, 0, x_733); -lean_ctor_set(x_854, 1, x_852); -lean_ctor_set(x_854, 2, x_851); -lean_ctor_set(x_854, 3, x_853); -lean_inc(x_743); -lean_inc(x_733); -x_855 = l_Lean_Syntax_node2(x_733, x_842, x_854, x_743); -x_856 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_724); +x_851 = l_Lean_Syntax_node1(x_724, x_850, x_734); +x_852 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_724); +x_853 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_853, 0, x_724); +lean_ctor_set(x_853, 1, x_852); +x_854 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc(x_853); +lean_inc(x_851); +lean_inc_n(x_734, 2); +lean_inc(x_824); +lean_inc(x_724); +x_855 = l_Lean_Syntax_node6(x_724, x_854, x_824, x_734, x_849, x_851, x_734, x_853); +x_856 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_734, 2); +lean_inc(x_724); +x_857 = l_Lean_Syntax_node2(x_724, x_856, x_734, x_734); +x_858 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +lean_inc(x_725); +lean_inc(x_731); +x_859 = l_Lean_addMacroScope(x_731, x_858, x_725); +x_860 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; +lean_inc(x_724); +x_861 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_861, 0, x_724); +lean_ctor_set(x_861, 1, x_860); +lean_ctor_set(x_861, 2, x_859); +lean_ctor_set(x_861, 3, x_13); +lean_inc(x_861); +lean_inc(x_724); +x_862 = l_Lean_Syntax_node1(x_724, x_732, x_861); +x_863 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; +lean_inc(x_724); +x_864 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_864, 0, x_724); +lean_ctor_set(x_864, 1, x_863); +x_865 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +lean_inc(x_725); +lean_inc(x_731); +x_866 = l_Lean_addMacroScope(x_731, x_865, x_725); +x_867 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_868 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +lean_inc(x_724); +x_869 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_869, 0, x_724); +lean_ctor_set(x_869, 1, x_867); +lean_ctor_set(x_869, 2, x_866); +lean_ctor_set(x_869, 3, x_868); +x_870 = lean_array_size(x_714); +x_871 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_836, x_870, x_16, x_714); +x_872 = lean_array_size(x_871); +x_873 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_872, x_16, x_871); +x_874 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; +x_875 = l_Lean_mkSepArray(x_873, x_874); +lean_dec(x_873); +x_876 = l_Array_append___rarg(x_733, x_875); +lean_dec(x_875); +lean_inc(x_724); +x_877 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_877, 0, x_724); +lean_ctor_set(x_877, 1, x_732); +lean_ctor_set(x_877, 2, x_876); +lean_inc(x_744); +lean_inc(x_790); +lean_inc(x_724); +x_878 = l_Lean_Syntax_node2(x_724, x_732, x_790, x_744); +lean_inc(x_853); +lean_inc(x_851); lean_inc(x_734); -lean_inc(x_740); -x_857 = l_Lean_addMacroScope(x_740, x_856, x_734); -x_858 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; -lean_inc(x_733); -x_859 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_859, 0, x_733); -lean_ctor_set(x_859, 1, x_858); -lean_ctor_set(x_859, 2, x_857); -lean_ctor_set(x_859, 3, x_13); -lean_inc(x_859); -lean_inc(x_834); -lean_inc(x_733); -x_860 = l_Lean_Syntax_node3(x_733, x_848, x_855, x_834, x_859); -lean_inc(x_733); -x_861 = l_Lean_Syntax_node3(x_733, x_741, x_849, x_18, x_860); -x_862 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_743); -lean_inc(x_733); -x_863 = l_Lean_Syntax_node1(x_733, x_862, x_743); -x_864 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_733); -x_865 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_865, 0, x_733); -lean_ctor_set(x_865, 1, x_864); -x_866 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc(x_865); -lean_inc(x_863); -lean_inc_n(x_743, 2); -lean_inc(x_836); -lean_inc(x_733); -x_867 = l_Lean_Syntax_node6(x_733, x_866, x_836, x_743, x_861, x_863, x_743, x_865); -x_868 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_743, 2); -lean_inc(x_733); -x_869 = l_Lean_Syntax_node2(x_733, x_868, x_743, x_743); -x_870 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +lean_inc(x_824); +lean_inc(x_724); +x_879 = l_Lean_Syntax_node6(x_724, x_854, x_824, x_734, x_877, x_851, x_878, x_853); +lean_inc(x_724); +x_880 = l_Lean_Syntax_node1(x_724, x_732, x_879); +lean_inc(x_724); +x_881 = l_Lean_Syntax_node2(x_724, x_809, x_869, x_880); +lean_inc(x_724); +x_882 = l_Lean_Syntax_node1(x_724, x_732, x_881); +x_883 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; +lean_inc(x_864); +lean_inc(x_724); +x_884 = l_Lean_Syntax_node2(x_724, x_883, x_864, x_882); +x_885 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_822); lean_inc(x_734); -lean_inc(x_740); -x_871 = l_Lean_addMacroScope(x_740, x_870, x_734); -x_872 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; -lean_inc(x_733); -x_873 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_873, 0, x_733); -lean_ctor_set(x_873, 1, x_872); -lean_ctor_set(x_873, 2, x_871); -lean_ctor_set(x_873, 3, x_13); -lean_inc(x_873); -lean_inc(x_733); -x_874 = l_Lean_Syntax_node1(x_733, x_741, x_873); -x_875 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; -lean_inc(x_733); -x_876 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_876, 0, x_733); -lean_ctor_set(x_876, 1, x_875); -x_877 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +lean_inc(x_724); +x_886 = l_Lean_Syntax_node5(x_724, x_885, x_835, x_862, x_734, x_822, x_884); +x_887 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_724); +x_888 = l_Lean_Syntax_node1(x_724, x_887, x_886); +x_889 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_857); +lean_inc_n(x_734, 2); +lean_inc(x_724); +x_890 = l_Lean_Syntax_node4(x_724, x_889, x_734, x_734, x_888, x_857); +x_891 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_725); +lean_inc(x_731); +x_892 = l_Lean_addMacroScope(x_731, x_891, x_725); +x_893 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_724); +x_894 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_894, 0, x_724); +lean_ctor_set(x_894, 1, x_893); +lean_ctor_set(x_894, 2, x_892); +lean_ctor_set(x_894, 3, x_13); +lean_inc(x_724); +x_895 = l_Lean_Syntax_node1(x_724, x_732, x_894); +x_896 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_724); +x_897 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_897, 0, x_724); +lean_ctor_set(x_897, 1, x_896); +x_898 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_724); +x_899 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_899, 0, x_724); +lean_ctor_set(x_899, 1, x_898); +lean_inc(x_724); +x_900 = l_Lean_Syntax_node2(x_724, x_817, x_790, x_744); +lean_inc(x_724); +x_901 = l_Lean_Syntax_node1(x_724, x_732, x_900); +x_902 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_724); +x_903 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_903, 0, x_724); +lean_ctor_set(x_903, 1, x_902); +x_904 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +x_905 = l_Lean_addMacroScope(x_731, x_904, x_725); +x_906 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_907 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; +lean_inc(x_724); +x_908 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_908, 0, x_724); +lean_ctor_set(x_908, 1, x_906); +lean_ctor_set(x_908, 2, x_905); +lean_ctor_set(x_908, 3, x_907); +lean_inc(x_895); +lean_inc(x_724); +x_909 = l_Lean_Syntax_node2(x_724, x_809, x_908, x_895); +x_910 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; +lean_inc(x_724); +x_911 = l_Lean_Syntax_node1(x_724, x_910, x_909); +x_912 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_724); +x_913 = l_Lean_Syntax_node4(x_724, x_912, x_861, x_901, x_903, x_911); +x_914 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; lean_inc(x_734); -lean_inc(x_740); -x_878 = l_Lean_addMacroScope(x_740, x_877, x_734); -x_879 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_880 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; -lean_inc(x_733); -x_881 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_881, 0, x_733); -lean_ctor_set(x_881, 1, x_879); -lean_ctor_set(x_881, 2, x_878); -lean_ctor_set(x_881, 3, x_880); -x_882 = lean_array_size(x_723); -x_883 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_848, x_882, x_16, x_723); -x_884 = lean_array_size(x_883); -x_885 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_884, x_16, x_883); -x_886 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; -x_887 = l_Lean_mkSepArray(x_885, x_886); -lean_dec(x_885); -x_888 = l_Array_append___rarg(x_742, x_887); -lean_dec(x_887); -lean_inc(x_733); -x_889 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_889, 0, x_733); -lean_ctor_set(x_889, 1, x_741); -lean_ctor_set(x_889, 2, x_888); -lean_inc(x_753); -lean_inc(x_802); -lean_inc(x_733); -x_890 = l_Lean_Syntax_node2(x_733, x_741, x_802, x_753); -lean_inc(x_865); -lean_inc(x_863); -lean_inc(x_743); -lean_inc(x_836); -lean_inc(x_733); -x_891 = l_Lean_Syntax_node6(x_733, x_866, x_836, x_743, x_889, x_863, x_890, x_865); -lean_inc(x_733); -x_892 = l_Lean_Syntax_node1(x_733, x_741, x_891); -lean_inc(x_733); -x_893 = l_Lean_Syntax_node2(x_733, x_821, x_881, x_892); -lean_inc(x_733); -x_894 = l_Lean_Syntax_node1(x_733, x_741, x_893); -x_895 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; -lean_inc(x_876); -lean_inc(x_733); -x_896 = l_Lean_Syntax_node2(x_733, x_895, x_876, x_894); -x_897 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_834); -lean_inc(x_743); -lean_inc(x_733); -x_898 = l_Lean_Syntax_node5(x_733, x_897, x_847, x_874, x_743, x_834, x_896); -x_899 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_733); -x_900 = l_Lean_Syntax_node1(x_733, x_899, x_898); -x_901 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_869); -lean_inc_n(x_743, 2); -lean_inc(x_733); -x_902 = l_Lean_Syntax_node4(x_733, x_901, x_743, x_743, x_900, x_869); -x_903 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_724); +x_915 = l_Lean_Syntax_node3(x_724, x_914, x_899, x_734, x_913); +x_916 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; lean_inc(x_734); -lean_inc(x_740); -x_904 = l_Lean_addMacroScope(x_740, x_903, x_734); -x_905 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_733); -x_906 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_906, 0, x_733); -lean_ctor_set(x_906, 1, x_905); -lean_ctor_set(x_906, 2, x_904); -lean_ctor_set(x_906, 3, x_13); -lean_inc(x_733); -x_907 = l_Lean_Syntax_node1(x_733, x_741, x_906); -x_908 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_733); -x_909 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_909, 0, x_733); -lean_ctor_set(x_909, 1, x_908); -x_910 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_733); -x_911 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_911, 0, x_733); -lean_ctor_set(x_911, 1, x_910); -lean_inc(x_733); -x_912 = l_Lean_Syntax_node2(x_733, x_829, x_802, x_753); -lean_inc(x_733); -x_913 = l_Lean_Syntax_node1(x_733, x_741, x_912); -x_914 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; -lean_inc(x_733); -x_915 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_915, 0, x_733); -lean_ctor_set(x_915, 1, x_914); -x_916 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -x_917 = l_Lean_addMacroScope(x_740, x_916, x_734); -x_918 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_919 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; -lean_inc(x_733); -x_920 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_920, 0, x_733); -lean_ctor_set(x_920, 1, x_918); -lean_ctor_set(x_920, 2, x_917); -lean_ctor_set(x_920, 3, x_919); -lean_inc(x_907); -lean_inc(x_733); -x_921 = l_Lean_Syntax_node2(x_733, x_821, x_920, x_907); -x_922 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_733); -x_923 = l_Lean_Syntax_node1(x_733, x_922, x_921); -x_924 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_733); -x_925 = l_Lean_Syntax_node4(x_733, x_924, x_873, x_913, x_915, x_923); -x_926 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_743); -lean_inc(x_733); -x_927 = l_Lean_Syntax_node3(x_733, x_926, x_911, x_743, x_925); -x_928 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_743); -lean_inc(x_733); -x_929 = l_Lean_Syntax_node2(x_733, x_928, x_927, x_743); -x_930 = l_Lean_Syntax_SepArray_ofElems(x_774, x_26); +lean_inc(x_724); +x_917 = l_Lean_Syntax_node2(x_724, x_916, x_915, x_734); +x_918 = l_Lean_Syntax_SepArray_ofElems(x_763, x_26); lean_dec(x_26); -x_931 = l_Array_append___rarg(x_742, x_930); -lean_dec(x_930); -lean_inc(x_733); -x_932 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_932, 0, x_733); -lean_ctor_set(x_932, 1, x_741); -lean_ctor_set(x_932, 2, x_931); -lean_inc_n(x_743, 2); -lean_inc(x_733); -x_933 = l_Lean_Syntax_node6(x_733, x_866, x_836, x_743, x_932, x_863, x_743, x_865); -lean_inc(x_733); -x_934 = l_Lean_Syntax_node1(x_733, x_741, x_933); -x_935 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; -lean_inc(x_733); -x_936 = l_Lean_Syntax_node2(x_733, x_935, x_876, x_934); -lean_inc(x_743); -lean_inc(x_733); -x_937 = l_Lean_Syntax_node2(x_733, x_928, x_936, x_743); -lean_inc(x_733); -x_938 = l_Lean_Syntax_node2(x_733, x_741, x_929, x_937); -x_939 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; -lean_inc(x_733); -x_940 = l_Lean_Syntax_node1(x_733, x_939, x_938); -x_941 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; -lean_inc(x_733); -x_942 = l_Lean_Syntax_node2(x_733, x_941, x_909, x_940); -lean_inc(x_834); -lean_inc(x_743); -lean_inc(x_733); -x_943 = l_Lean_Syntax_node5(x_733, x_897, x_859, x_907, x_743, x_834, x_942); -lean_inc(x_733); -x_944 = l_Lean_Syntax_node1(x_733, x_899, x_943); -lean_inc(x_869); -lean_inc_n(x_743, 2); -lean_inc(x_733); -x_945 = l_Lean_Syntax_node4(x_733, x_901, x_743, x_743, x_944, x_869); -lean_inc(x_743); -lean_inc(x_733); -x_946 = l_Lean_Syntax_node3(x_733, x_741, x_902, x_743, x_945); -x_947 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; -lean_inc(x_733); -x_948 = l_Lean_Syntax_node2(x_733, x_947, x_757, x_946); -lean_inc(x_733); -x_949 = l_Lean_Syntax_node1(x_733, x_741, x_948); -x_950 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_733); -x_951 = l_Lean_Syntax_node4(x_733, x_950, x_834, x_867, x_869, x_949); -x_952 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_743); -lean_inc(x_733); -x_953 = l_Lean_Syntax_node6(x_733, x_952, x_798, x_800, x_743, x_743, x_832, x_951); -lean_inc(x_733); -x_954 = l_Lean_Syntax_node2(x_733, x_787, x_745, x_953); -x_955 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_733); -x_956 = l_Lean_Syntax_node3(x_733, x_955, x_794, x_796, x_954); -x_957 = l_Lean_Syntax_node2(x_733, x_741, x_788, x_956); -if (lean_is_scalar(x_738)) { - x_958 = lean_alloc_ctor(0, 2, 0); +x_919 = l_Array_append___rarg(x_733, x_918); +lean_dec(x_918); +lean_inc(x_724); +x_920 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_920, 0, x_724); +lean_ctor_set(x_920, 1, x_732); +lean_ctor_set(x_920, 2, x_919); +lean_inc_n(x_734, 2); +lean_inc(x_724); +x_921 = l_Lean_Syntax_node6(x_724, x_854, x_824, x_734, x_920, x_851, x_734, x_853); +lean_inc(x_724); +x_922 = l_Lean_Syntax_node1(x_724, x_732, x_921); +x_923 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +lean_inc(x_724); +x_924 = l_Lean_Syntax_node2(x_724, x_923, x_864, x_922); +lean_inc(x_734); +lean_inc(x_724); +x_925 = l_Lean_Syntax_node2(x_724, x_916, x_924, x_734); +lean_inc(x_724); +x_926 = l_Lean_Syntax_node2(x_724, x_732, x_917, x_925); +x_927 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +lean_inc(x_724); +x_928 = l_Lean_Syntax_node1(x_724, x_927, x_926); +x_929 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_724); +x_930 = l_Lean_Syntax_node2(x_724, x_929, x_897, x_928); +lean_inc(x_822); +lean_inc(x_734); +lean_inc(x_724); +x_931 = l_Lean_Syntax_node5(x_724, x_885, x_847, x_895, x_734, x_822, x_930); +lean_inc(x_724); +x_932 = l_Lean_Syntax_node1(x_724, x_887, x_931); +lean_inc(x_857); +lean_inc_n(x_734, 2); +lean_inc(x_724); +x_933 = l_Lean_Syntax_node4(x_724, x_889, x_734, x_734, x_932, x_857); +lean_inc(x_734); +lean_inc(x_724); +x_934 = l_Lean_Syntax_node3(x_724, x_732, x_890, x_734, x_933); +x_935 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +lean_inc(x_724); +x_936 = l_Lean_Syntax_node2(x_724, x_935, x_748, x_934); +lean_inc(x_724); +x_937 = l_Lean_Syntax_node1(x_724, x_732, x_936); +x_938 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; +lean_inc(x_724); +x_939 = l_Lean_Syntax_node4(x_724, x_938, x_822, x_855, x_857, x_937); +x_940 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_734); +lean_inc(x_724); +x_941 = l_Lean_Syntax_node6(x_724, x_940, x_786, x_788, x_734, x_734, x_820, x_939); +lean_inc(x_724); +x_942 = l_Lean_Syntax_node2(x_724, x_775, x_736, x_941); +x_943 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_724); +x_944 = l_Lean_Syntax_node3(x_724, x_943, x_782, x_784, x_942); +x_945 = l_Lean_Syntax_node2(x_724, x_732, x_776, x_944); +if (lean_is_scalar(x_729)) { + x_946 = lean_alloc_ctor(0, 2, 0); } else { - x_958 = x_738; + x_946 = x_729; } -lean_ctor_set(x_958, 0, x_957); -lean_ctor_set(x_958, 1, x_737); -return x_958; +lean_ctor_set(x_946, 0, x_945); +lean_ctor_set(x_946, 1, x_728); +return x_946; } else { -lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; -lean_dec(x_726); -lean_dec(x_725); -lean_dec(x_724); -lean_dec(x_723); +lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; +lean_dec(x_717); +lean_dec(x_716); +lean_dec(x_715); +lean_dec(x_714); lean_free_object(x_19); lean_dec(x_26); lean_free_object(x_18); lean_dec(x_10); lean_dec(x_4); -x_959 = lean_ctor_get(x_728, 0); -lean_inc(x_959); -x_960 = lean_ctor_get(x_728, 1); -lean_inc(x_960); -if (lean_is_exclusive(x_728)) { - lean_ctor_release(x_728, 0); - lean_ctor_release(x_728, 1); - x_961 = x_728; +x_947 = lean_ctor_get(x_719, 0); +lean_inc(x_947); +x_948 = lean_ctor_get(x_719, 1); +lean_inc(x_948); +if (lean_is_exclusive(x_719)) { + lean_ctor_release(x_719, 0); + lean_ctor_release(x_719, 1); + x_949 = x_719; } else { - lean_dec_ref(x_728); - x_961 = lean_box(0); + lean_dec_ref(x_719); + x_949 = lean_box(0); } -if (lean_is_scalar(x_961)) { - x_962 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_949)) { + x_950 = lean_alloc_ctor(1, 2, 0); } else { - x_962 = x_961; + x_950 = x_949; } -lean_ctor_set(x_962, 0, x_959); -lean_ctor_set(x_962, 1, x_960); -return x_962; +lean_ctor_set(x_950, 0, x_947); +lean_ctor_set(x_950, 1, x_948); +return x_950; } } } else { -lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; size_t x_969; lean_object* x_970; -x_963 = lean_ctor_get(x_19, 0); -lean_inc(x_963); +lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; size_t x_957; lean_object* x_958; +x_951 = lean_ctor_get(x_19, 0); +lean_inc(x_951); lean_dec(x_19); -x_964 = lean_ctor_get(x_20, 0); -lean_inc(x_964); +x_952 = lean_ctor_get(x_20, 0); +lean_inc(x_952); if (lean_is_exclusive(x_20)) { lean_ctor_release(x_20, 0); lean_ctor_release(x_20, 1); - x_965 = x_20; + x_953 = x_20; } else { lean_dec_ref(x_20); - x_965 = lean_box(0); + x_953 = lean_box(0); } -x_966 = lean_ctor_get(x_21, 0); -lean_inc(x_966); -x_967 = lean_ctor_get(x_21, 1); -lean_inc(x_967); +x_954 = lean_ctor_get(x_21, 0); +lean_inc(x_954); +x_955 = lean_ctor_get(x_21, 1); +lean_inc(x_955); if (lean_is_exclusive(x_21)) { lean_ctor_release(x_21, 0); lean_ctor_release(x_21, 1); - x_968 = x_21; + x_956 = x_21; } else { lean_dec_ref(x_21); + x_956 = lean_box(0); +} +x_957 = lean_array_size(x_2); +x_958 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_957, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_23); +if (lean_obj_tag(x_958) == 0) +{ +lean_object* x_959; lean_object* x_960; lean_object* x_961; uint8_t x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; size_t x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; size_t x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; size_t x_1110; lean_object* x_1111; size_t x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; +x_959 = lean_ctor_get(x_958, 0); +lean_inc(x_959); +x_960 = lean_ctor_get(x_958, 1); +lean_inc(x_960); +lean_dec(x_958); +x_961 = lean_ctor_get(x_10, 5); +lean_inc(x_961); +x_962 = 0; +x_963 = l_Lean_SourceInfo_fromRef(x_961, x_962); +lean_dec(x_961); +x_964 = lean_ctor_get(x_10, 10); +lean_inc(x_964); +lean_dec(x_10); +x_965 = lean_st_ref_get(x_11, x_960); +x_966 = lean_ctor_get(x_965, 0); +lean_inc(x_966); +x_967 = lean_ctor_get(x_965, 1); +lean_inc(x_967); +if (lean_is_exclusive(x_965)) { + lean_ctor_release(x_965, 0); + lean_ctor_release(x_965, 1); + x_968 = x_965; +} else { + lean_dec_ref(x_965); x_968 = lean_box(0); } -x_969 = lean_array_size(x_2); -x_970 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_969, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_23); -if (lean_obj_tag(x_970) == 0) -{ -lean_object* x_971; lean_object* x_972; lean_object* x_973; uint8_t x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; size_t x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; size_t x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; size_t x_1125; lean_object* x_1126; size_t x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; -x_971 = lean_ctor_get(x_970, 0); -lean_inc(x_971); -x_972 = lean_ctor_get(x_970, 1); -lean_inc(x_972); -lean_dec(x_970); -x_973 = lean_ctor_get(x_10, 5); -lean_inc(x_973); -x_974 = 0; -x_975 = l_Lean_SourceInfo_fromRef(x_973, x_974); -lean_dec(x_973); -x_976 = lean_ctor_get(x_10, 10); -lean_inc(x_976); -lean_dec(x_10); -x_977 = lean_st_ref_get(x_11, x_972); -x_978 = lean_ctor_get(x_977, 0); -lean_inc(x_978); -x_979 = lean_ctor_get(x_977, 1); -lean_inc(x_979); -if (lean_is_exclusive(x_977)) { - lean_ctor_release(x_977, 0); - lean_ctor_release(x_977, 1); - x_980 = x_977; -} else { - lean_dec_ref(x_977); - x_980 = lean_box(0); -} -x_981 = lean_ctor_get(x_978, 0); -lean_inc(x_981); -lean_dec(x_978); -x_982 = lean_environment_main_module(x_981); -x_983 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -x_984 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -lean_inc(x_975); -x_985 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_985, 0, x_975); -lean_ctor_set(x_985, 1, x_983); -lean_ctor_set(x_985, 2, x_984); -x_986 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_985, 6); -lean_inc(x_975); -x_987 = l_Lean_Syntax_node6(x_975, x_986, x_985, x_985, x_985, x_985, x_985, x_985); -x_988 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; -lean_inc(x_975); -if (lean_is_scalar(x_968)) { - x_989 = lean_alloc_ctor(2, 2, 0); -} else { - x_989 = x_968; - lean_ctor_set_tag(x_989, 2); -} -lean_ctor_set(x_989, 0, x_975); -lean_ctor_set(x_989, 1, x_988); -x_990 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; -lean_inc(x_975); -x_991 = l_Lean_Syntax_node1(x_975, x_990, x_989); -x_992 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; -lean_inc(x_976); -lean_inc(x_982); -x_993 = l_Lean_addMacroScope(x_982, x_992, x_976); -x_994 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; -lean_inc(x_975); -x_995 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_995, 0, x_975); -lean_ctor_set(x_995, 1, x_994); -lean_ctor_set(x_995, 2, x_993); -lean_ctor_set(x_995, 3, x_13); -x_996 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_985); -lean_inc(x_995); -lean_inc(x_975); -x_997 = l_Lean_Syntax_node2(x_975, x_996, x_995, x_985); -x_998 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; -lean_inc(x_975); -if (lean_is_scalar(x_965)) { - x_999 = lean_alloc_ctor(2, 2, 0); -} else { - x_999 = x_965; - lean_ctor_set_tag(x_999, 2); -} -lean_ctor_set(x_999, 0, x_975); -lean_ctor_set(x_999, 1, x_998); -x_1000 = l_Array_zip___rarg(x_966, x_967); -lean_dec(x_967); +x_969 = lean_ctor_get(x_966, 0); +lean_inc(x_969); lean_dec(x_966); -x_1001 = lean_array_size(x_1000); -lean_inc(x_987); -lean_inc(x_985); -lean_inc(x_975); -x_1002 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_975, x_983, x_985, x_987, x_1001, x_16, x_1000); -x_1003 = l_Array_append___rarg(x_984, x_1002); -lean_dec(x_1002); -lean_inc(x_975); -x_1004 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1004, 0, x_975); -lean_ctor_set(x_1004, 1, x_983); -lean_ctor_set(x_1004, 2, x_1003); -x_1005 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; -lean_inc(x_975); -x_1006 = l_Lean_Syntax_node1(x_975, x_1005, x_1004); -lean_inc(x_985); -lean_inc(x_999); -lean_inc(x_975); -x_1007 = l_Lean_Syntax_node3(x_975, x_983, x_999, x_985, x_1006); -x_1008 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; -lean_inc(x_975); -x_1009 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1009, 0, x_975); -lean_ctor_set(x_1009, 1, x_1008); -x_1010 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; -lean_inc(x_976); -lean_inc(x_982); -x_1011 = l_Lean_addMacroScope(x_982, x_1010, x_976); -x_1012 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_1013 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; -lean_inc(x_975); -x_1014 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1014, 0, x_975); -lean_ctor_set(x_1014, 1, x_1012); -lean_ctor_set(x_1014, 2, x_1011); -lean_ctor_set(x_1014, 3, x_1013); -x_1015 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_985); -lean_inc(x_975); -x_1016 = l_Lean_Syntax_node2(x_975, x_1015, x_1014, x_985); -x_1017 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_975); -lean_ctor_set_tag(x_18, 2); -lean_ctor_set(x_18, 1, x_1017); -lean_ctor_set(x_18, 0, x_975); -x_1018 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_976); -lean_inc(x_982); -x_1019 = l_Lean_addMacroScope(x_982, x_1018, x_976); -x_1020 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_1021 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; -lean_inc(x_975); -x_1022 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1022, 0, x_975); -lean_ctor_set(x_1022, 1, x_1020); -lean_ctor_set(x_1022, 2, x_1019); -lean_ctor_set(x_1022, 3, x_1021); -lean_inc(x_985); -lean_inc(x_975); -x_1023 = l_Lean_Syntax_node2(x_975, x_1015, x_1022, x_985); -lean_inc(x_18); -lean_inc(x_975); -x_1024 = l_Lean_Syntax_node3(x_975, x_983, x_1016, x_18, x_1023); -lean_inc(x_975); -x_1025 = l_Lean_Syntax_node2(x_975, x_983, x_1009, x_1024); -x_1026 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; -lean_inc(x_975); -x_1027 = l_Lean_Syntax_node1(x_975, x_1026, x_1025); -x_1028 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; -lean_inc_n(x_985, 3); -lean_inc(x_975); -x_1029 = l_Lean_Syntax_node7(x_975, x_1028, x_991, x_997, x_985, x_985, x_985, x_1007, x_1027); -x_1030 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_987); -lean_inc(x_975); -x_1031 = l_Lean_Syntax_node2(x_975, x_1030, x_987, x_1029); -x_1032 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; -lean_inc(x_975); -x_1033 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1033, 0, x_975); -lean_ctor_set(x_1033, 1, x_1032); -x_1034 = l_Array_append___rarg(x_984, x_3); -lean_inc(x_975); -x_1035 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1035, 0, x_975); -lean_ctor_set(x_1035, 1, x_983); -lean_ctor_set(x_1035, 2, x_1034); -x_1036 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -lean_inc(x_975); -x_1037 = l_Lean_Syntax_node2(x_975, x_1036, x_1033, x_1035); -x_1038 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_975); -x_1039 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1039, 0, x_975); -lean_ctor_set(x_1039, 1, x_1038); -x_1040 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_985); -lean_inc(x_975); -x_1041 = l_Lean_Syntax_node1(x_975, x_1040, x_985); -x_1042 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_975); -x_1043 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1043, 0, x_975); -lean_ctor_set(x_1043, 1, x_1042); -x_1044 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_975); -x_1045 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1045, 0, x_975); -lean_ctor_set(x_1045, 1, x_1044); -x_1046 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; -lean_inc(x_976); -lean_inc(x_982); -x_1047 = l_Lean_addMacroScope(x_982, x_1046, x_976); -x_1048 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_1049 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; -lean_inc(x_975); -x_1050 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1050, 0, x_975); -lean_ctor_set(x_1050, 1, x_1048); -lean_ctor_set(x_1050, 2, x_1047); -lean_ctor_set(x_1050, 3, x_1049); -x_1051 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; -lean_inc(x_975); -x_1052 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1052, 0, x_975); -lean_ctor_set(x_1052, 1, x_1051); -x_1053 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; -lean_inc(x_975); -x_1054 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1054, 0, x_975); -lean_ctor_set(x_1054, 1, x_1053); -x_1055 = lean_box(0); -x_1056 = l_Lean_mkCIdentFrom(x_1055, x_4, x_974); -x_1057 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_975); -x_1058 = l_Lean_Syntax_node2(x_975, x_1057, x_1054, x_1056); -x_1059 = lean_array_size(x_971); -x_1060 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; -x_1061 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_1060, x_1059, x_16, x_971); -x_1062 = l_Array_append___rarg(x_984, x_1061); -lean_dec(x_1061); -lean_inc(x_975); -x_1063 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1063, 0, x_975); -lean_ctor_set(x_1063, 1, x_983); -lean_ctor_set(x_1063, 2, x_1062); -x_1064 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_975); -x_1065 = l_Lean_Syntax_node2(x_975, x_1064, x_1058, x_1063); -x_1066 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; -lean_inc(x_975); -x_1067 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1067, 0, x_975); -lean_ctor_set(x_1067, 1, x_1066); -x_1068 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; -lean_inc(x_975); -x_1069 = l_Lean_Syntax_node3(x_975, x_1068, x_1052, x_1065, x_1067); -lean_inc(x_975); -x_1070 = l_Lean_Syntax_node1(x_975, x_983, x_1069); -lean_inc(x_975); -x_1071 = l_Lean_Syntax_node2(x_975, x_1064, x_1050, x_1070); -x_1072 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_1045); -lean_inc(x_975); -x_1073 = l_Lean_Syntax_node2(x_975, x_1072, x_1045, x_1071); -x_1074 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_985); -lean_inc(x_975); -x_1075 = l_Lean_Syntax_node2(x_975, x_1074, x_985, x_1073); -x_1076 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_975); -x_1077 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1077, 0, x_975); -lean_ctor_set(x_1077, 1, x_1076); -x_1078 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_975); -x_1079 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1079, 0, x_975); -lean_ctor_set(x_1079, 1, x_1078); -x_1080 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; -lean_inc(x_976); -lean_inc(x_982); -x_1081 = l_Lean_addMacroScope(x_982, x_1080, x_976); -x_1082 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_1083 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; -lean_inc(x_975); -x_1084 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1084, 0, x_975); -lean_ctor_set(x_1084, 1, x_1082); -lean_ctor_set(x_1084, 2, x_1081); -lean_ctor_set(x_1084, 3, x_1083); -x_1085 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_985); -lean_inc(x_975); -x_1086 = l_Lean_Syntax_node2(x_975, x_1085, x_1084, x_985); -x_1087 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; -lean_inc(x_976); -lean_inc(x_982); -x_1088 = l_Lean_addMacroScope(x_982, x_1087, x_976); -x_1089 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; -lean_inc(x_975); -x_1090 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1090, 0, x_975); -lean_ctor_set(x_1090, 1, x_1089); -lean_ctor_set(x_1090, 2, x_1088); -lean_ctor_set(x_1090, 3, x_13); -x_1091 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_1090); -lean_inc(x_1077); -lean_inc(x_975); -x_1092 = l_Lean_Syntax_node3(x_975, x_1091, x_1086, x_1077, x_1090); -x_1093 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; -lean_inc(x_976); -lean_inc(x_982); -x_1094 = l_Lean_addMacroScope(x_982, x_1093, x_976); -x_1095 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_1096 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; -lean_inc(x_975); -x_1097 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1097, 0, x_975); -lean_ctor_set(x_1097, 1, x_1095); -lean_ctor_set(x_1097, 2, x_1094); -lean_ctor_set(x_1097, 3, x_1096); -lean_inc(x_985); -lean_inc(x_975); -x_1098 = l_Lean_Syntax_node2(x_975, x_1085, x_1097, x_985); -x_1099 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; -lean_inc(x_976); -lean_inc(x_982); -x_1100 = l_Lean_addMacroScope(x_982, x_1099, x_976); -x_1101 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; -lean_inc(x_975); -x_1102 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1102, 0, x_975); -lean_ctor_set(x_1102, 1, x_1101); -lean_ctor_set(x_1102, 2, x_1100); -lean_ctor_set(x_1102, 3, x_13); -lean_inc(x_1102); -lean_inc(x_1077); -lean_inc(x_975); -x_1103 = l_Lean_Syntax_node3(x_975, x_1091, x_1098, x_1077, x_1102); -lean_inc(x_975); -x_1104 = l_Lean_Syntax_node3(x_975, x_983, x_1092, x_18, x_1103); -x_1105 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_985); -lean_inc(x_975); -x_1106 = l_Lean_Syntax_node1(x_975, x_1105, x_985); -x_1107 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_975); -x_1108 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1108, 0, x_975); -lean_ctor_set(x_1108, 1, x_1107); -x_1109 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc(x_1108); -lean_inc(x_1106); -lean_inc_n(x_985, 2); -lean_inc(x_1079); -lean_inc(x_975); -x_1110 = l_Lean_Syntax_node6(x_975, x_1109, x_1079, x_985, x_1104, x_1106, x_985, x_1108); -x_1111 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_985, 2); -lean_inc(x_975); -x_1112 = l_Lean_Syntax_node2(x_975, x_1111, x_985, x_985); -x_1113 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; -lean_inc(x_976); -lean_inc(x_982); -x_1114 = l_Lean_addMacroScope(x_982, x_1113, x_976); -x_1115 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; -lean_inc(x_975); -x_1116 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1116, 0, x_975); -lean_ctor_set(x_1116, 1, x_1115); -lean_ctor_set(x_1116, 2, x_1114); -lean_ctor_set(x_1116, 3, x_13); -lean_inc(x_1116); -lean_inc(x_975); -x_1117 = l_Lean_Syntax_node1(x_975, x_983, x_1116); -x_1118 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; -lean_inc(x_975); -x_1119 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1119, 0, x_975); -lean_ctor_set(x_1119, 1, x_1118); -x_1120 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; -lean_inc(x_976); -lean_inc(x_982); -x_1121 = l_Lean_addMacroScope(x_982, x_1120, x_976); -x_1122 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_1123 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; -lean_inc(x_975); -x_1124 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1124, 0, x_975); -lean_ctor_set(x_1124, 1, x_1122); -lean_ctor_set(x_1124, 2, x_1121); -lean_ctor_set(x_1124, 3, x_1123); -x_1125 = lean_array_size(x_964); -x_1126 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_1091, x_1125, x_16, x_964); -x_1127 = lean_array_size(x_1126); -x_1128 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_1127, x_16, x_1126); -x_1129 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; -x_1130 = l_Lean_mkSepArray(x_1128, x_1129); -lean_dec(x_1128); -x_1131 = l_Array_append___rarg(x_984, x_1130); -lean_dec(x_1130); -lean_inc(x_975); -x_1132 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1132, 0, x_975); -lean_ctor_set(x_1132, 1, x_983); -lean_ctor_set(x_1132, 2, x_1131); -lean_inc(x_995); -lean_inc(x_1045); -lean_inc(x_975); -x_1133 = l_Lean_Syntax_node2(x_975, x_983, x_1045, x_995); -lean_inc(x_1108); -lean_inc(x_1106); -lean_inc(x_985); -lean_inc(x_1079); -lean_inc(x_975); -x_1134 = l_Lean_Syntax_node6(x_975, x_1109, x_1079, x_985, x_1132, x_1106, x_1133, x_1108); -lean_inc(x_975); -x_1135 = l_Lean_Syntax_node1(x_975, x_983, x_1134); -lean_inc(x_975); -x_1136 = l_Lean_Syntax_node2(x_975, x_1064, x_1124, x_1135); -lean_inc(x_975); -x_1137 = l_Lean_Syntax_node1(x_975, x_983, x_1136); -x_1138 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; -lean_inc(x_1119); -lean_inc(x_975); -x_1139 = l_Lean_Syntax_node2(x_975, x_1138, x_1119, x_1137); -x_1140 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_1077); -lean_inc(x_985); -lean_inc(x_975); -x_1141 = l_Lean_Syntax_node5(x_975, x_1140, x_1090, x_1117, x_985, x_1077, x_1139); -x_1142 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_975); -x_1143 = l_Lean_Syntax_node1(x_975, x_1142, x_1141); -x_1144 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_1112); -lean_inc_n(x_985, 2); -lean_inc(x_975); -x_1145 = l_Lean_Syntax_node4(x_975, x_1144, x_985, x_985, x_1143, x_1112); -x_1146 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; -lean_inc(x_976); -lean_inc(x_982); -x_1147 = l_Lean_addMacroScope(x_982, x_1146, x_976); -x_1148 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_975); -x_1149 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1149, 0, x_975); -lean_ctor_set(x_1149, 1, x_1148); -lean_ctor_set(x_1149, 2, x_1147); -lean_ctor_set(x_1149, 3, x_13); -lean_inc(x_975); -x_1150 = l_Lean_Syntax_node1(x_975, x_983, x_1149); -x_1151 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_975); -x_1152 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1152, 0, x_975); -lean_ctor_set(x_1152, 1, x_1151); -x_1153 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_975); -x_1154 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1154, 0, x_975); -lean_ctor_set(x_1154, 1, x_1153); -lean_inc(x_975); -x_1155 = l_Lean_Syntax_node2(x_975, x_1072, x_1045, x_995); -lean_inc(x_975); -x_1156 = l_Lean_Syntax_node1(x_975, x_983, x_1155); -x_1157 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; -lean_inc(x_975); -x_1158 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1158, 0, x_975); -lean_ctor_set(x_1158, 1, x_1157); -x_1159 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -x_1160 = l_Lean_addMacroScope(x_982, x_1159, x_976); -x_1161 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_1162 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; -lean_inc(x_975); -x_1163 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1163, 0, x_975); -lean_ctor_set(x_1163, 1, x_1161); -lean_ctor_set(x_1163, 2, x_1160); -lean_ctor_set(x_1163, 3, x_1162); -lean_inc(x_1150); -lean_inc(x_975); -x_1164 = l_Lean_Syntax_node2(x_975, x_1064, x_1163, x_1150); -x_1165 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_975); -x_1166 = l_Lean_Syntax_node1(x_975, x_1165, x_1164); -x_1167 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_975); -x_1168 = l_Lean_Syntax_node4(x_975, x_1167, x_1116, x_1156, x_1158, x_1166); -x_1169 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_985); -lean_inc(x_975); -x_1170 = l_Lean_Syntax_node3(x_975, x_1169, x_1154, x_985, x_1168); -x_1171 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_985); -lean_inc(x_975); -x_1172 = l_Lean_Syntax_node2(x_975, x_1171, x_1170, x_985); -x_1173 = l_Lean_Syntax_SepArray_ofElems(x_1017, x_963); -lean_dec(x_963); -x_1174 = l_Array_append___rarg(x_984, x_1173); -lean_dec(x_1173); -lean_inc(x_975); -x_1175 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1175, 0, x_975); -lean_ctor_set(x_1175, 1, x_983); -lean_ctor_set(x_1175, 2, x_1174); -lean_inc_n(x_985, 2); -lean_inc(x_975); -x_1176 = l_Lean_Syntax_node6(x_975, x_1109, x_1079, x_985, x_1175, x_1106, x_985, x_1108); -lean_inc(x_975); -x_1177 = l_Lean_Syntax_node1(x_975, x_983, x_1176); -x_1178 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; -lean_inc(x_975); -x_1179 = l_Lean_Syntax_node2(x_975, x_1178, x_1119, x_1177); -lean_inc(x_985); -lean_inc(x_975); -x_1180 = l_Lean_Syntax_node2(x_975, x_1171, x_1179, x_985); -lean_inc(x_975); -x_1181 = l_Lean_Syntax_node2(x_975, x_983, x_1172, x_1180); -x_1182 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; -lean_inc(x_975); -x_1183 = l_Lean_Syntax_node1(x_975, x_1182, x_1181); -x_1184 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; -lean_inc(x_975); -x_1185 = l_Lean_Syntax_node2(x_975, x_1184, x_1152, x_1183); -lean_inc(x_1077); -lean_inc(x_985); -lean_inc(x_975); -x_1186 = l_Lean_Syntax_node5(x_975, x_1140, x_1102, x_1150, x_985, x_1077, x_1185); -lean_inc(x_975); -x_1187 = l_Lean_Syntax_node1(x_975, x_1142, x_1186); -lean_inc(x_1112); -lean_inc_n(x_985, 2); -lean_inc(x_975); -x_1188 = l_Lean_Syntax_node4(x_975, x_1144, x_985, x_985, x_1187, x_1112); -lean_inc(x_985); -lean_inc(x_975); -x_1189 = l_Lean_Syntax_node3(x_975, x_983, x_1145, x_985, x_1188); -x_1190 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; -lean_inc(x_975); -x_1191 = l_Lean_Syntax_node2(x_975, x_1190, x_999, x_1189); -lean_inc(x_975); -x_1192 = l_Lean_Syntax_node1(x_975, x_983, x_1191); -x_1193 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_975); -x_1194 = l_Lean_Syntax_node4(x_975, x_1193, x_1077, x_1110, x_1112, x_1192); -x_1195 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_985); -lean_inc(x_975); -x_1196 = l_Lean_Syntax_node6(x_975, x_1195, x_1041, x_1043, x_985, x_985, x_1075, x_1194); -lean_inc(x_975); -x_1197 = l_Lean_Syntax_node2(x_975, x_1030, x_987, x_1196); -x_1198 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_975); -x_1199 = l_Lean_Syntax_node3(x_975, x_1198, x_1037, x_1039, x_1197); -x_1200 = l_Lean_Syntax_node2(x_975, x_983, x_1031, x_1199); -if (lean_is_scalar(x_980)) { - x_1201 = lean_alloc_ctor(0, 2, 0); +x_970 = lean_environment_main_module(x_969); +x_971 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +x_972 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +lean_inc(x_963); +x_973 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_973, 0, x_963); +lean_ctor_set(x_973, 1, x_971); +lean_ctor_set(x_973, 2, x_972); +x_974 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_973, 6); +lean_inc(x_963); +x_975 = l_Lean_Syntax_node6(x_963, x_974, x_973, x_973, x_973, x_973, x_973, x_973); +x_976 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; +lean_inc(x_963); +if (lean_is_scalar(x_956)) { + x_977 = lean_alloc_ctor(2, 2, 0); } else { - x_1201 = x_980; + x_977 = x_956; + lean_ctor_set_tag(x_977, 2); } -lean_ctor_set(x_1201, 0, x_1200); -lean_ctor_set(x_1201, 1, x_979); -return x_1201; +lean_ctor_set(x_977, 0, x_963); +lean_ctor_set(x_977, 1, x_976); +x_978 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; +lean_inc(x_963); +x_979 = l_Lean_Syntax_node1(x_963, x_978, x_977); +x_980 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_964); +lean_inc(x_970); +x_981 = l_Lean_addMacroScope(x_970, x_980, x_964); +x_982 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_963); +x_983 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_983, 0, x_963); +lean_ctor_set(x_983, 1, x_982); +lean_ctor_set(x_983, 2, x_981); +lean_ctor_set(x_983, 3, x_13); +x_984 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_973); +lean_inc(x_983); +lean_inc(x_963); +x_985 = l_Lean_Syntax_node2(x_963, x_984, x_983, x_973); +x_986 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +lean_inc(x_963); +if (lean_is_scalar(x_953)) { + x_987 = lean_alloc_ctor(2, 2, 0); +} else { + x_987 = x_953; + lean_ctor_set_tag(x_987, 2); +} +lean_ctor_set(x_987, 0, x_963); +lean_ctor_set(x_987, 1, x_986); +x_988 = l_Array_zip___rarg(x_954, x_955); +lean_dec(x_955); +lean_dec(x_954); +x_989 = lean_array_size(x_988); +lean_inc(x_975); +lean_inc(x_973); +lean_inc(x_963); +x_990 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_963, x_971, x_973, x_975, x_989, x_16, x_988); +x_991 = l_Array_append___rarg(x_972, x_990); +lean_dec(x_990); +lean_inc(x_963); +x_992 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_992, 0, x_963); +lean_ctor_set(x_992, 1, x_971); +lean_ctor_set(x_992, 2, x_991); +x_993 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; +lean_inc(x_963); +x_994 = l_Lean_Syntax_node1(x_963, x_993, x_992); +lean_inc(x_973); +lean_inc(x_987); +lean_inc(x_963); +x_995 = l_Lean_Syntax_node3(x_963, x_971, x_987, x_973, x_994); +x_996 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +lean_inc(x_963); +x_997 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_997, 0, x_963); +lean_ctor_set(x_997, 1, x_996); +x_998 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_964); +lean_inc(x_970); +x_999 = l_Lean_addMacroScope(x_970, x_998, x_964); +x_1000 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_1001 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; +lean_inc(x_963); +x_1002 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1002, 0, x_963); +lean_ctor_set(x_1002, 1, x_1000); +lean_ctor_set(x_1002, 2, x_999); +lean_ctor_set(x_1002, 3, x_1001); +x_1003 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +lean_inc(x_963); +lean_ctor_set_tag(x_18, 2); +lean_ctor_set(x_18, 1, x_1003); +lean_ctor_set(x_18, 0, x_963); +x_1004 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_964); +lean_inc(x_970); +x_1005 = l_Lean_addMacroScope(x_970, x_1004, x_964); +x_1006 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_1007 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; +lean_inc(x_963); +x_1008 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1008, 0, x_963); +lean_ctor_set(x_1008, 1, x_1006); +lean_ctor_set(x_1008, 2, x_1005); +lean_ctor_set(x_1008, 3, x_1007); +lean_inc(x_18); +lean_inc(x_963); +x_1009 = l_Lean_Syntax_node3(x_963, x_971, x_1002, x_18, x_1008); +lean_inc(x_963); +x_1010 = l_Lean_Syntax_node2(x_963, x_971, x_997, x_1009); +x_1011 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_963); +x_1012 = l_Lean_Syntax_node1(x_963, x_1011, x_1010); +x_1013 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; +lean_inc_n(x_973, 3); +lean_inc(x_963); +x_1014 = l_Lean_Syntax_node7(x_963, x_1013, x_979, x_985, x_973, x_973, x_973, x_995, x_1012); +x_1015 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_975); +lean_inc(x_963); +x_1016 = l_Lean_Syntax_node2(x_963, x_1015, x_975, x_1014); +x_1017 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_963); +x_1018 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1018, 0, x_963); +lean_ctor_set(x_1018, 1, x_1017); +x_1019 = l_Array_append___rarg(x_972, x_3); +lean_inc(x_963); +x_1020 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1020, 0, x_963); +lean_ctor_set(x_1020, 1, x_971); +lean_ctor_set(x_1020, 2, x_1019); +x_1021 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_963); +x_1022 = l_Lean_Syntax_node2(x_963, x_1021, x_1018, x_1020); +x_1023 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +lean_inc(x_963); +x_1024 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1024, 0, x_963); +lean_ctor_set(x_1024, 1, x_1023); +x_1025 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_973); +lean_inc(x_963); +x_1026 = l_Lean_Syntax_node1(x_963, x_1025, x_973); +x_1027 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +lean_inc(x_963); +x_1028 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1028, 0, x_963); +lean_ctor_set(x_1028, 1, x_1027); +x_1029 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +lean_inc(x_963); +x_1030 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1030, 0, x_963); +lean_ctor_set(x_1030, 1, x_1029); +x_1031 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_964); +lean_inc(x_970); +x_1032 = l_Lean_addMacroScope(x_970, x_1031, x_964); +x_1033 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_1034 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_963); +x_1035 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1035, 0, x_963); +lean_ctor_set(x_1035, 1, x_1033); +lean_ctor_set(x_1035, 2, x_1032); +lean_ctor_set(x_1035, 3, x_1034); +x_1036 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +lean_inc(x_963); +x_1037 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1037, 0, x_963); +lean_ctor_set(x_1037, 1, x_1036); +x_1038 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_963); +x_1039 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1039, 0, x_963); +lean_ctor_set(x_1039, 1, x_1038); +x_1040 = lean_box(0); +x_1041 = l_Lean_mkCIdentFrom(x_1040, x_4, x_962); +x_1042 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_963); +x_1043 = l_Lean_Syntax_node2(x_963, x_1042, x_1039, x_1041); +x_1044 = lean_array_size(x_959); +x_1045 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_1046 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_1045, x_1044, x_16, x_959); +x_1047 = l_Array_append___rarg(x_972, x_1046); +lean_dec(x_1046); +lean_inc(x_963); +x_1048 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1048, 0, x_963); +lean_ctor_set(x_1048, 1, x_971); +lean_ctor_set(x_1048, 2, x_1047); +x_1049 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_963); +x_1050 = l_Lean_Syntax_node2(x_963, x_1049, x_1043, x_1048); +x_1051 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; +lean_inc(x_963); +x_1052 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1052, 0, x_963); +lean_ctor_set(x_1052, 1, x_1051); +x_1053 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; +lean_inc(x_963); +x_1054 = l_Lean_Syntax_node3(x_963, x_1053, x_1037, x_1050, x_1052); +lean_inc(x_963); +x_1055 = l_Lean_Syntax_node1(x_963, x_971, x_1054); +lean_inc(x_963); +x_1056 = l_Lean_Syntax_node2(x_963, x_1049, x_1035, x_1055); +x_1057 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_1030); +lean_inc(x_963); +x_1058 = l_Lean_Syntax_node2(x_963, x_1057, x_1030, x_1056); +x_1059 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +lean_inc(x_973); +lean_inc(x_963); +x_1060 = l_Lean_Syntax_node2(x_963, x_1059, x_973, x_1058); +x_1061 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +lean_inc(x_963); +x_1062 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1062, 0, x_963); +lean_ctor_set(x_1062, 1, x_1061); +x_1063 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; +lean_inc(x_963); +x_1064 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1064, 0, x_963); +lean_ctor_set(x_1064, 1, x_1063); +x_1065 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_964); +lean_inc(x_970); +x_1066 = l_Lean_addMacroScope(x_970, x_1065, x_964); +x_1067 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_1068 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_963); +x_1069 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1069, 0, x_963); +lean_ctor_set(x_1069, 1, x_1067); +lean_ctor_set(x_1069, 2, x_1066); +lean_ctor_set(x_1069, 3, x_1068); +x_1070 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_973); +lean_inc(x_963); +x_1071 = l_Lean_Syntax_node2(x_963, x_1070, x_1069, x_973); +x_1072 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_964); +lean_inc(x_970); +x_1073 = l_Lean_addMacroScope(x_970, x_1072, x_964); +x_1074 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +lean_inc(x_963); +x_1075 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1075, 0, x_963); +lean_ctor_set(x_1075, 1, x_1074); +lean_ctor_set(x_1075, 2, x_1073); +lean_ctor_set(x_1075, 3, x_13); +x_1076 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_1075); +lean_inc(x_1062); +lean_inc(x_963); +x_1077 = l_Lean_Syntax_node3(x_963, x_1076, x_1071, x_1062, x_1075); +x_1078 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_964); +lean_inc(x_970); +x_1079 = l_Lean_addMacroScope(x_970, x_1078, x_964); +x_1080 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_1081 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_963); +x_1082 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1082, 0, x_963); +lean_ctor_set(x_1082, 1, x_1080); +lean_ctor_set(x_1082, 2, x_1079); +lean_ctor_set(x_1082, 3, x_1081); +lean_inc(x_973); +lean_inc(x_963); +x_1083 = l_Lean_Syntax_node2(x_963, x_1070, x_1082, x_973); +x_1084 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_964); +lean_inc(x_970); +x_1085 = l_Lean_addMacroScope(x_970, x_1084, x_964); +x_1086 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_963); +x_1087 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1087, 0, x_963); +lean_ctor_set(x_1087, 1, x_1086); +lean_ctor_set(x_1087, 2, x_1085); +lean_ctor_set(x_1087, 3, x_13); +lean_inc(x_1087); +lean_inc(x_1062); +lean_inc(x_963); +x_1088 = l_Lean_Syntax_node3(x_963, x_1076, x_1083, x_1062, x_1087); +lean_inc(x_963); +x_1089 = l_Lean_Syntax_node3(x_963, x_971, x_1077, x_18, x_1088); +x_1090 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_973); +lean_inc(x_963); +x_1091 = l_Lean_Syntax_node1(x_963, x_1090, x_973); +x_1092 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_963); +x_1093 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1093, 0, x_963); +lean_ctor_set(x_1093, 1, x_1092); +x_1094 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc(x_1093); +lean_inc(x_1091); +lean_inc_n(x_973, 2); +lean_inc(x_1064); +lean_inc(x_963); +x_1095 = l_Lean_Syntax_node6(x_963, x_1094, x_1064, x_973, x_1089, x_1091, x_973, x_1093); +x_1096 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_973, 2); +lean_inc(x_963); +x_1097 = l_Lean_Syntax_node2(x_963, x_1096, x_973, x_973); +x_1098 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +lean_inc(x_964); +lean_inc(x_970); +x_1099 = l_Lean_addMacroScope(x_970, x_1098, x_964); +x_1100 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; +lean_inc(x_963); +x_1101 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1101, 0, x_963); +lean_ctor_set(x_1101, 1, x_1100); +lean_ctor_set(x_1101, 2, x_1099); +lean_ctor_set(x_1101, 3, x_13); +lean_inc(x_1101); +lean_inc(x_963); +x_1102 = l_Lean_Syntax_node1(x_963, x_971, x_1101); +x_1103 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; +lean_inc(x_963); +x_1104 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1104, 0, x_963); +lean_ctor_set(x_1104, 1, x_1103); +x_1105 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +lean_inc(x_964); +lean_inc(x_970); +x_1106 = l_Lean_addMacroScope(x_970, x_1105, x_964); +x_1107 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_1108 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +lean_inc(x_963); +x_1109 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1109, 0, x_963); +lean_ctor_set(x_1109, 1, x_1107); +lean_ctor_set(x_1109, 2, x_1106); +lean_ctor_set(x_1109, 3, x_1108); +x_1110 = lean_array_size(x_952); +x_1111 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_1076, x_1110, x_16, x_952); +x_1112 = lean_array_size(x_1111); +x_1113 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_1112, x_16, x_1111); +x_1114 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; +x_1115 = l_Lean_mkSepArray(x_1113, x_1114); +lean_dec(x_1113); +x_1116 = l_Array_append___rarg(x_972, x_1115); +lean_dec(x_1115); +lean_inc(x_963); +x_1117 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1117, 0, x_963); +lean_ctor_set(x_1117, 1, x_971); +lean_ctor_set(x_1117, 2, x_1116); +lean_inc(x_983); +lean_inc(x_1030); +lean_inc(x_963); +x_1118 = l_Lean_Syntax_node2(x_963, x_971, x_1030, x_983); +lean_inc(x_1093); +lean_inc(x_1091); +lean_inc(x_973); +lean_inc(x_1064); +lean_inc(x_963); +x_1119 = l_Lean_Syntax_node6(x_963, x_1094, x_1064, x_973, x_1117, x_1091, x_1118, x_1093); +lean_inc(x_963); +x_1120 = l_Lean_Syntax_node1(x_963, x_971, x_1119); +lean_inc(x_963); +x_1121 = l_Lean_Syntax_node2(x_963, x_1049, x_1109, x_1120); +lean_inc(x_963); +x_1122 = l_Lean_Syntax_node1(x_963, x_971, x_1121); +x_1123 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; +lean_inc(x_1104); +lean_inc(x_963); +x_1124 = l_Lean_Syntax_node2(x_963, x_1123, x_1104, x_1122); +x_1125 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_1062); +lean_inc(x_973); +lean_inc(x_963); +x_1126 = l_Lean_Syntax_node5(x_963, x_1125, x_1075, x_1102, x_973, x_1062, x_1124); +x_1127 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_963); +x_1128 = l_Lean_Syntax_node1(x_963, x_1127, x_1126); +x_1129 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_1097); +lean_inc_n(x_973, 2); +lean_inc(x_963); +x_1130 = l_Lean_Syntax_node4(x_963, x_1129, x_973, x_973, x_1128, x_1097); +x_1131 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_964); +lean_inc(x_970); +x_1132 = l_Lean_addMacroScope(x_970, x_1131, x_964); +x_1133 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_963); +x_1134 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1134, 0, x_963); +lean_ctor_set(x_1134, 1, x_1133); +lean_ctor_set(x_1134, 2, x_1132); +lean_ctor_set(x_1134, 3, x_13); +lean_inc(x_963); +x_1135 = l_Lean_Syntax_node1(x_963, x_971, x_1134); +x_1136 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_963); +x_1137 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1137, 0, x_963); +lean_ctor_set(x_1137, 1, x_1136); +x_1138 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_963); +x_1139 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1139, 0, x_963); +lean_ctor_set(x_1139, 1, x_1138); +lean_inc(x_963); +x_1140 = l_Lean_Syntax_node2(x_963, x_1057, x_1030, x_983); +lean_inc(x_963); +x_1141 = l_Lean_Syntax_node1(x_963, x_971, x_1140); +x_1142 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_963); +x_1143 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1143, 0, x_963); +lean_ctor_set(x_1143, 1, x_1142); +x_1144 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +x_1145 = l_Lean_addMacroScope(x_970, x_1144, x_964); +x_1146 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_1147 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; +lean_inc(x_963); +x_1148 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1148, 0, x_963); +lean_ctor_set(x_1148, 1, x_1146); +lean_ctor_set(x_1148, 2, x_1145); +lean_ctor_set(x_1148, 3, x_1147); +lean_inc(x_1135); +lean_inc(x_963); +x_1149 = l_Lean_Syntax_node2(x_963, x_1049, x_1148, x_1135); +x_1150 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; +lean_inc(x_963); +x_1151 = l_Lean_Syntax_node1(x_963, x_1150, x_1149); +x_1152 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_963); +x_1153 = l_Lean_Syntax_node4(x_963, x_1152, x_1101, x_1141, x_1143, x_1151); +x_1154 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_973); +lean_inc(x_963); +x_1155 = l_Lean_Syntax_node3(x_963, x_1154, x_1139, x_973, x_1153); +x_1156 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_973); +lean_inc(x_963); +x_1157 = l_Lean_Syntax_node2(x_963, x_1156, x_1155, x_973); +x_1158 = l_Lean_Syntax_SepArray_ofElems(x_1003, x_951); +lean_dec(x_951); +x_1159 = l_Array_append___rarg(x_972, x_1158); +lean_dec(x_1158); +lean_inc(x_963); +x_1160 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1160, 0, x_963); +lean_ctor_set(x_1160, 1, x_971); +lean_ctor_set(x_1160, 2, x_1159); +lean_inc_n(x_973, 2); +lean_inc(x_963); +x_1161 = l_Lean_Syntax_node6(x_963, x_1094, x_1064, x_973, x_1160, x_1091, x_973, x_1093); +lean_inc(x_963); +x_1162 = l_Lean_Syntax_node1(x_963, x_971, x_1161); +x_1163 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +lean_inc(x_963); +x_1164 = l_Lean_Syntax_node2(x_963, x_1163, x_1104, x_1162); +lean_inc(x_973); +lean_inc(x_963); +x_1165 = l_Lean_Syntax_node2(x_963, x_1156, x_1164, x_973); +lean_inc(x_963); +x_1166 = l_Lean_Syntax_node2(x_963, x_971, x_1157, x_1165); +x_1167 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +lean_inc(x_963); +x_1168 = l_Lean_Syntax_node1(x_963, x_1167, x_1166); +x_1169 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_963); +x_1170 = l_Lean_Syntax_node2(x_963, x_1169, x_1137, x_1168); +lean_inc(x_1062); +lean_inc(x_973); +lean_inc(x_963); +x_1171 = l_Lean_Syntax_node5(x_963, x_1125, x_1087, x_1135, x_973, x_1062, x_1170); +lean_inc(x_963); +x_1172 = l_Lean_Syntax_node1(x_963, x_1127, x_1171); +lean_inc(x_1097); +lean_inc_n(x_973, 2); +lean_inc(x_963); +x_1173 = l_Lean_Syntax_node4(x_963, x_1129, x_973, x_973, x_1172, x_1097); +lean_inc(x_973); +lean_inc(x_963); +x_1174 = l_Lean_Syntax_node3(x_963, x_971, x_1130, x_973, x_1173); +x_1175 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +lean_inc(x_963); +x_1176 = l_Lean_Syntax_node2(x_963, x_1175, x_987, x_1174); +lean_inc(x_963); +x_1177 = l_Lean_Syntax_node1(x_963, x_971, x_1176); +x_1178 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; +lean_inc(x_963); +x_1179 = l_Lean_Syntax_node4(x_963, x_1178, x_1062, x_1095, x_1097, x_1177); +x_1180 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_973); +lean_inc(x_963); +x_1181 = l_Lean_Syntax_node6(x_963, x_1180, x_1026, x_1028, x_973, x_973, x_1060, x_1179); +lean_inc(x_963); +x_1182 = l_Lean_Syntax_node2(x_963, x_1015, x_975, x_1181); +x_1183 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_963); +x_1184 = l_Lean_Syntax_node3(x_963, x_1183, x_1022, x_1024, x_1182); +x_1185 = l_Lean_Syntax_node2(x_963, x_971, x_1016, x_1184); +if (lean_is_scalar(x_968)) { + x_1186 = lean_alloc_ctor(0, 2, 0); +} else { + x_1186 = x_968; +} +lean_ctor_set(x_1186, 0, x_1185); +lean_ctor_set(x_1186, 1, x_967); +return x_1186; } else { -lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; -lean_dec(x_968); -lean_dec(x_967); -lean_dec(x_966); -lean_dec(x_965); -lean_dec(x_964); -lean_dec(x_963); +lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; +lean_dec(x_956); +lean_dec(x_955); +lean_dec(x_954); +lean_dec(x_953); +lean_dec(x_952); +lean_dec(x_951); lean_free_object(x_18); lean_dec(x_10); lean_dec(x_4); -x_1202 = lean_ctor_get(x_970, 0); -lean_inc(x_1202); -x_1203 = lean_ctor_get(x_970, 1); -lean_inc(x_1203); -if (lean_is_exclusive(x_970)) { - lean_ctor_release(x_970, 0); - lean_ctor_release(x_970, 1); - x_1204 = x_970; +x_1187 = lean_ctor_get(x_958, 0); +lean_inc(x_1187); +x_1188 = lean_ctor_get(x_958, 1); +lean_inc(x_1188); +if (lean_is_exclusive(x_958)) { + lean_ctor_release(x_958, 0); + lean_ctor_release(x_958, 1); + x_1189 = x_958; } else { - lean_dec_ref(x_970); - x_1204 = lean_box(0); + lean_dec_ref(x_958); + x_1189 = lean_box(0); } -if (lean_is_scalar(x_1204)) { - x_1205 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1189)) { + x_1190 = lean_alloc_ctor(1, 2, 0); } else { - x_1205 = x_1204; + x_1190 = x_1189; } -lean_ctor_set(x_1205, 0, x_1202); -lean_ctor_set(x_1205, 1, x_1203); -return x_1205; +lean_ctor_set(x_1190, 0, x_1187); +lean_ctor_set(x_1190, 1, x_1188); +return x_1190; } } } else { -lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; size_t x_1214; lean_object* x_1215; -x_1206 = lean_ctor_get(x_18, 1); -lean_inc(x_1206); +lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; size_t x_1199; lean_object* x_1200; +x_1191 = lean_ctor_get(x_18, 1); +lean_inc(x_1191); lean_dec(x_18); -x_1207 = lean_ctor_get(x_19, 0); -lean_inc(x_1207); +x_1192 = lean_ctor_get(x_19, 0); +lean_inc(x_1192); if (lean_is_exclusive(x_19)) { lean_ctor_release(x_19, 0); lean_ctor_release(x_19, 1); - x_1208 = x_19; + x_1193 = x_19; } else { lean_dec_ref(x_19); - x_1208 = lean_box(0); + x_1193 = lean_box(0); } -x_1209 = lean_ctor_get(x_20, 0); -lean_inc(x_1209); +x_1194 = lean_ctor_get(x_20, 0); +lean_inc(x_1194); if (lean_is_exclusive(x_20)) { lean_ctor_release(x_20, 0); lean_ctor_release(x_20, 1); - x_1210 = x_20; + x_1195 = x_20; } else { lean_dec_ref(x_20); - x_1210 = lean_box(0); + x_1195 = lean_box(0); } -x_1211 = lean_ctor_get(x_21, 0); -lean_inc(x_1211); -x_1212 = lean_ctor_get(x_21, 1); -lean_inc(x_1212); +x_1196 = lean_ctor_get(x_21, 0); +lean_inc(x_1196); +x_1197 = lean_ctor_get(x_21, 1); +lean_inc(x_1197); if (lean_is_exclusive(x_21)) { lean_ctor_release(x_21, 0); lean_ctor_release(x_21, 1); - x_1213 = x_21; + x_1198 = x_21; } else { lean_dec_ref(x_21); - x_1213 = lean_box(0); + x_1198 = lean_box(0); } -x_1214 = lean_array_size(x_2); -x_1215 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_1214, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_1206); -if (lean_obj_tag(x_1215) == 0) +x_1199 = lean_array_size(x_2); +x_1200 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_1199, x_16, x_2, x_6, x_7, x_8, x_9, x_10, x_11, x_1191); +if (lean_obj_tag(x_1200) == 0) { -lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; uint8_t x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; size_t x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; size_t x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; lean_object* x_1353; lean_object* x_1354; lean_object* x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; size_t x_1371; lean_object* x_1372; size_t x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; lean_object* x_1434; lean_object* x_1435; lean_object* x_1436; lean_object* x_1437; lean_object* x_1438; lean_object* x_1439; lean_object* x_1440; lean_object* x_1441; lean_object* x_1442; lean_object* x_1443; lean_object* x_1444; lean_object* x_1445; lean_object* x_1446; lean_object* x_1447; -x_1216 = lean_ctor_get(x_1215, 0); -lean_inc(x_1216); -x_1217 = lean_ctor_get(x_1215, 1); -lean_inc(x_1217); -lean_dec(x_1215); -x_1218 = lean_ctor_get(x_10, 5); -lean_inc(x_1218); -x_1219 = 0; -x_1220 = l_Lean_SourceInfo_fromRef(x_1218, x_1219); -lean_dec(x_1218); -x_1221 = lean_ctor_get(x_10, 10); -lean_inc(x_1221); +lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; uint8_t x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; size_t x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; size_t x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; lean_object* x_1329; lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; lean_object* x_1333; lean_object* x_1334; lean_object* x_1335; lean_object* x_1336; lean_object* x_1337; lean_object* x_1338; lean_object* x_1339; lean_object* x_1340; lean_object* x_1341; lean_object* x_1342; lean_object* x_1343; lean_object* x_1344; lean_object* x_1345; lean_object* x_1346; lean_object* x_1347; lean_object* x_1348; lean_object* x_1349; lean_object* x_1350; lean_object* x_1351; lean_object* x_1352; size_t x_1353; lean_object* x_1354; size_t x_1355; lean_object* x_1356; lean_object* x_1357; lean_object* x_1358; lean_object* x_1359; lean_object* x_1360; lean_object* x_1361; lean_object* x_1362; lean_object* x_1363; lean_object* x_1364; lean_object* x_1365; lean_object* x_1366; lean_object* x_1367; lean_object* x_1368; lean_object* x_1369; lean_object* x_1370; lean_object* x_1371; lean_object* x_1372; lean_object* x_1373; lean_object* x_1374; lean_object* x_1375; lean_object* x_1376; lean_object* x_1377; lean_object* x_1378; lean_object* x_1379; lean_object* x_1380; lean_object* x_1381; lean_object* x_1382; lean_object* x_1383; lean_object* x_1384; lean_object* x_1385; lean_object* x_1386; lean_object* x_1387; lean_object* x_1388; lean_object* x_1389; lean_object* x_1390; lean_object* x_1391; lean_object* x_1392; lean_object* x_1393; lean_object* x_1394; lean_object* x_1395; lean_object* x_1396; lean_object* x_1397; lean_object* x_1398; lean_object* x_1399; lean_object* x_1400; lean_object* x_1401; lean_object* x_1402; lean_object* x_1403; lean_object* x_1404; lean_object* x_1405; lean_object* x_1406; lean_object* x_1407; lean_object* x_1408; lean_object* x_1409; lean_object* x_1410; lean_object* x_1411; lean_object* x_1412; lean_object* x_1413; lean_object* x_1414; lean_object* x_1415; lean_object* x_1416; lean_object* x_1417; lean_object* x_1418; lean_object* x_1419; lean_object* x_1420; lean_object* x_1421; lean_object* x_1422; lean_object* x_1423; lean_object* x_1424; lean_object* x_1425; lean_object* x_1426; lean_object* x_1427; lean_object* x_1428; lean_object* x_1429; +x_1201 = lean_ctor_get(x_1200, 0); +lean_inc(x_1201); +x_1202 = lean_ctor_get(x_1200, 1); +lean_inc(x_1202); +lean_dec(x_1200); +x_1203 = lean_ctor_get(x_10, 5); +lean_inc(x_1203); +x_1204 = 0; +x_1205 = l_Lean_SourceInfo_fromRef(x_1203, x_1204); +lean_dec(x_1203); +x_1206 = lean_ctor_get(x_10, 10); +lean_inc(x_1206); lean_dec(x_10); -x_1222 = lean_st_ref_get(x_11, x_1217); -x_1223 = lean_ctor_get(x_1222, 0); -lean_inc(x_1223); -x_1224 = lean_ctor_get(x_1222, 1); -lean_inc(x_1224); -if (lean_is_exclusive(x_1222)) { - lean_ctor_release(x_1222, 0); - lean_ctor_release(x_1222, 1); - x_1225 = x_1222; +x_1207 = lean_st_ref_get(x_11, x_1202); +x_1208 = lean_ctor_get(x_1207, 0); +lean_inc(x_1208); +x_1209 = lean_ctor_get(x_1207, 1); +lean_inc(x_1209); +if (lean_is_exclusive(x_1207)) { + lean_ctor_release(x_1207, 0); + lean_ctor_release(x_1207, 1); + x_1210 = x_1207; } else { - lean_dec_ref(x_1222); - x_1225 = lean_box(0); + lean_dec_ref(x_1207); + x_1210 = lean_box(0); } -x_1226 = lean_ctor_get(x_1223, 0); -lean_inc(x_1226); -lean_dec(x_1223); -x_1227 = lean_environment_main_module(x_1226); -x_1228 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -x_1229 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -lean_inc(x_1220); -x_1230 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1230, 0, x_1220); -lean_ctor_set(x_1230, 1, x_1228); -lean_ctor_set(x_1230, 2, x_1229); -x_1231 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_1230, 6); -lean_inc(x_1220); -x_1232 = l_Lean_Syntax_node6(x_1220, x_1231, x_1230, x_1230, x_1230, x_1230, x_1230, x_1230); -x_1233 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; -lean_inc(x_1220); -if (lean_is_scalar(x_1213)) { - x_1234 = lean_alloc_ctor(2, 2, 0); +x_1211 = lean_ctor_get(x_1208, 0); +lean_inc(x_1211); +lean_dec(x_1208); +x_1212 = lean_environment_main_module(x_1211); +x_1213 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +x_1214 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +lean_inc(x_1205); +x_1215 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1215, 0, x_1205); +lean_ctor_set(x_1215, 1, x_1213); +lean_ctor_set(x_1215, 2, x_1214); +x_1216 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_1215, 6); +lean_inc(x_1205); +x_1217 = l_Lean_Syntax_node6(x_1205, x_1216, x_1215, x_1215, x_1215, x_1215, x_1215, x_1215); +x_1218 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__9; +lean_inc(x_1205); +if (lean_is_scalar(x_1198)) { + x_1219 = lean_alloc_ctor(2, 2, 0); } else { - x_1234 = x_1213; - lean_ctor_set_tag(x_1234, 2); + x_1219 = x_1198; + lean_ctor_set_tag(x_1219, 2); } -lean_ctor_set(x_1234, 0, x_1220); -lean_ctor_set(x_1234, 1, x_1233); -x_1235 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; -lean_inc(x_1220); -x_1236 = l_Lean_Syntax_node1(x_1220, x_1235, x_1234); -x_1237 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; -lean_inc(x_1221); -lean_inc(x_1227); -x_1238 = l_Lean_addMacroScope(x_1227, x_1237, x_1221); -x_1239 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; -lean_inc(x_1220); -x_1240 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1240, 0, x_1220); -lean_ctor_set(x_1240, 1, x_1239); -lean_ctor_set(x_1240, 2, x_1238); -lean_ctor_set(x_1240, 3, x_13); -x_1241 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_1230); -lean_inc(x_1240); -lean_inc(x_1220); -x_1242 = l_Lean_Syntax_node2(x_1220, x_1241, x_1240, x_1230); -x_1243 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; -lean_inc(x_1220); -if (lean_is_scalar(x_1210)) { - x_1244 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1219, 0, x_1205); +lean_ctor_set(x_1219, 1, x_1218); +x_1220 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__12; +lean_inc(x_1205); +x_1221 = l_Lean_Syntax_node1(x_1205, x_1220, x_1219); +x_1222 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_1206); +lean_inc(x_1212); +x_1223 = l_Lean_addMacroScope(x_1212, x_1222, x_1206); +x_1224 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_1205); +x_1225 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1225, 0, x_1205); +lean_ctor_set(x_1225, 1, x_1224); +lean_ctor_set(x_1225, 2, x_1223); +lean_ctor_set(x_1225, 3, x_13); +x_1226 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_1215); +lean_inc(x_1225); +lean_inc(x_1205); +x_1227 = l_Lean_Syntax_node2(x_1205, x_1226, x_1225, x_1215); +x_1228 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +lean_inc(x_1205); +if (lean_is_scalar(x_1195)) { + x_1229 = lean_alloc_ctor(2, 2, 0); } else { - x_1244 = x_1210; - lean_ctor_set_tag(x_1244, 2); + x_1229 = x_1195; + lean_ctor_set_tag(x_1229, 2); } -lean_ctor_set(x_1244, 0, x_1220); -lean_ctor_set(x_1244, 1, x_1243); -x_1245 = l_Array_zip___rarg(x_1211, x_1212); -lean_dec(x_1212); -lean_dec(x_1211); -x_1246 = lean_array_size(x_1245); -lean_inc(x_1232); -lean_inc(x_1230); -lean_inc(x_1220); -x_1247 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_1220, x_1228, x_1230, x_1232, x_1246, x_16, x_1245); -x_1248 = l_Array_append___rarg(x_1229, x_1247); -lean_dec(x_1247); -lean_inc(x_1220); -x_1249 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1249, 0, x_1220); -lean_ctor_set(x_1249, 1, x_1228); -lean_ctor_set(x_1249, 2, x_1248); -x_1250 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; -lean_inc(x_1220); -x_1251 = l_Lean_Syntax_node1(x_1220, x_1250, x_1249); -lean_inc(x_1230); -lean_inc(x_1244); -lean_inc(x_1220); -x_1252 = l_Lean_Syntax_node3(x_1220, x_1228, x_1244, x_1230, x_1251); -x_1253 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; -lean_inc(x_1220); -if (lean_is_scalar(x_1208)) { - x_1254 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1229, 0, x_1205); +lean_ctor_set(x_1229, 1, x_1228); +x_1230 = l_Array_zip___rarg(x_1196, x_1197); +lean_dec(x_1197); +lean_dec(x_1196); +x_1231 = lean_array_size(x_1230); +lean_inc(x_1217); +lean_inc(x_1215); +lean_inc(x_1205); +x_1232 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3(x_1205, x_1213, x_1215, x_1217, x_1231, x_16, x_1230); +x_1233 = l_Array_append___rarg(x_1214, x_1232); +lean_dec(x_1232); +lean_inc(x_1205); +x_1234 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1234, 0, x_1205); +lean_ctor_set(x_1234, 1, x_1213); +lean_ctor_set(x_1234, 2, x_1233); +x_1235 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__20; +lean_inc(x_1205); +x_1236 = l_Lean_Syntax_node1(x_1205, x_1235, x_1234); +lean_inc(x_1215); +lean_inc(x_1229); +lean_inc(x_1205); +x_1237 = l_Lean_Syntax_node3(x_1205, x_1213, x_1229, x_1215, x_1236); +x_1238 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +lean_inc(x_1205); +if (lean_is_scalar(x_1193)) { + x_1239 = lean_alloc_ctor(2, 2, 0); } else { - x_1254 = x_1208; - lean_ctor_set_tag(x_1254, 2); + x_1239 = x_1193; + lean_ctor_set_tag(x_1239, 2); } -lean_ctor_set(x_1254, 0, x_1220); -lean_ctor_set(x_1254, 1, x_1253); -x_1255 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; -lean_inc(x_1221); -lean_inc(x_1227); -x_1256 = l_Lean_addMacroScope(x_1227, x_1255, x_1221); -x_1257 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_1258 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; -lean_inc(x_1220); -x_1259 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1259, 0, x_1220); -lean_ctor_set(x_1259, 1, x_1257); -lean_ctor_set(x_1259, 2, x_1256); -lean_ctor_set(x_1259, 3, x_1258); -x_1260 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_1230); -lean_inc(x_1220); -x_1261 = l_Lean_Syntax_node2(x_1220, x_1260, x_1259, x_1230); -x_1262 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_1220); -x_1263 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1263, 0, x_1220); -lean_ctor_set(x_1263, 1, x_1262); -x_1264 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_1221); -lean_inc(x_1227); -x_1265 = l_Lean_addMacroScope(x_1227, x_1264, x_1221); -x_1266 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_1267 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; -lean_inc(x_1220); -x_1268 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1268, 0, x_1220); -lean_ctor_set(x_1268, 1, x_1266); -lean_ctor_set(x_1268, 2, x_1265); -lean_ctor_set(x_1268, 3, x_1267); -lean_inc(x_1230); -lean_inc(x_1220); -x_1269 = l_Lean_Syntax_node2(x_1220, x_1260, x_1268, x_1230); -lean_inc(x_1263); -lean_inc(x_1220); -x_1270 = l_Lean_Syntax_node3(x_1220, x_1228, x_1261, x_1263, x_1269); -lean_inc(x_1220); -x_1271 = l_Lean_Syntax_node2(x_1220, x_1228, x_1254, x_1270); -x_1272 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; -lean_inc(x_1220); -x_1273 = l_Lean_Syntax_node1(x_1220, x_1272, x_1271); -x_1274 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; -lean_inc_n(x_1230, 3); -lean_inc(x_1220); -x_1275 = l_Lean_Syntax_node7(x_1220, x_1274, x_1236, x_1242, x_1230, x_1230, x_1230, x_1252, x_1273); -x_1276 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_1232); -lean_inc(x_1220); -x_1277 = l_Lean_Syntax_node2(x_1220, x_1276, x_1232, x_1275); -x_1278 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; -lean_inc(x_1220); -x_1279 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1279, 0, x_1220); -lean_ctor_set(x_1279, 1, x_1278); -x_1280 = l_Array_append___rarg(x_1229, x_3); -lean_inc(x_1220); -x_1281 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1281, 0, x_1220); -lean_ctor_set(x_1281, 1, x_1228); -lean_ctor_set(x_1281, 2, x_1280); -x_1282 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -lean_inc(x_1220); -x_1283 = l_Lean_Syntax_node2(x_1220, x_1282, x_1279, x_1281); -x_1284 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_1220); -x_1285 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1285, 0, x_1220); -lean_ctor_set(x_1285, 1, x_1284); -x_1286 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_1230); -lean_inc(x_1220); -x_1287 = l_Lean_Syntax_node1(x_1220, x_1286, x_1230); -x_1288 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_1220); -x_1289 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1289, 0, x_1220); -lean_ctor_set(x_1289, 1, x_1288); -x_1290 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_1220); -x_1291 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1291, 0, x_1220); -lean_ctor_set(x_1291, 1, x_1290); -x_1292 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; -lean_inc(x_1221); -lean_inc(x_1227); -x_1293 = l_Lean_addMacroScope(x_1227, x_1292, x_1221); -x_1294 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_1295 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; -lean_inc(x_1220); -x_1296 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1296, 0, x_1220); -lean_ctor_set(x_1296, 1, x_1294); -lean_ctor_set(x_1296, 2, x_1293); -lean_ctor_set(x_1296, 3, x_1295); -x_1297 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; -lean_inc(x_1220); -x_1298 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1298, 0, x_1220); -lean_ctor_set(x_1298, 1, x_1297); -x_1299 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; -lean_inc(x_1220); -x_1300 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1300, 0, x_1220); -lean_ctor_set(x_1300, 1, x_1299); -x_1301 = lean_box(0); -x_1302 = l_Lean_mkCIdentFrom(x_1301, x_4, x_1219); -x_1303 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_1220); -x_1304 = l_Lean_Syntax_node2(x_1220, x_1303, x_1300, x_1302); -x_1305 = lean_array_size(x_1216); -x_1306 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; -x_1307 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_1306, x_1305, x_16, x_1216); -x_1308 = l_Array_append___rarg(x_1229, x_1307); -lean_dec(x_1307); -lean_inc(x_1220); -x_1309 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1309, 0, x_1220); -lean_ctor_set(x_1309, 1, x_1228); -lean_ctor_set(x_1309, 2, x_1308); -x_1310 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_1220); -x_1311 = l_Lean_Syntax_node2(x_1220, x_1310, x_1304, x_1309); -x_1312 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; -lean_inc(x_1220); -x_1313 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1313, 0, x_1220); -lean_ctor_set(x_1313, 1, x_1312); -x_1314 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; -lean_inc(x_1220); -x_1315 = l_Lean_Syntax_node3(x_1220, x_1314, x_1298, x_1311, x_1313); -lean_inc(x_1220); -x_1316 = l_Lean_Syntax_node1(x_1220, x_1228, x_1315); -lean_inc(x_1220); -x_1317 = l_Lean_Syntax_node2(x_1220, x_1310, x_1296, x_1316); -x_1318 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_1291); -lean_inc(x_1220); -x_1319 = l_Lean_Syntax_node2(x_1220, x_1318, x_1291, x_1317); -x_1320 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_1230); -lean_inc(x_1220); -x_1321 = l_Lean_Syntax_node2(x_1220, x_1320, x_1230, x_1319); -x_1322 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_1220); -x_1323 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1323, 0, x_1220); -lean_ctor_set(x_1323, 1, x_1322); -x_1324 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_1220); -x_1325 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1325, 0, x_1220); -lean_ctor_set(x_1325, 1, x_1324); -x_1326 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; -lean_inc(x_1221); -lean_inc(x_1227); -x_1327 = l_Lean_addMacroScope(x_1227, x_1326, x_1221); -x_1328 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_1329 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; -lean_inc(x_1220); +lean_ctor_set(x_1239, 0, x_1205); +lean_ctor_set(x_1239, 1, x_1238); +x_1240 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_1206); +lean_inc(x_1212); +x_1241 = l_Lean_addMacroScope(x_1212, x_1240, x_1206); +x_1242 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_1243 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; +lean_inc(x_1205); +x_1244 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1244, 0, x_1205); +lean_ctor_set(x_1244, 1, x_1242); +lean_ctor_set(x_1244, 2, x_1241); +lean_ctor_set(x_1244, 3, x_1243); +x_1245 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +lean_inc(x_1205); +x_1246 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1246, 0, x_1205); +lean_ctor_set(x_1246, 1, x_1245); +x_1247 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_1206); +lean_inc(x_1212); +x_1248 = l_Lean_addMacroScope(x_1212, x_1247, x_1206); +x_1249 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_1250 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; +lean_inc(x_1205); +x_1251 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1251, 0, x_1205); +lean_ctor_set(x_1251, 1, x_1249); +lean_ctor_set(x_1251, 2, x_1248); +lean_ctor_set(x_1251, 3, x_1250); +lean_inc(x_1246); +lean_inc(x_1205); +x_1252 = l_Lean_Syntax_node3(x_1205, x_1213, x_1244, x_1246, x_1251); +lean_inc(x_1205); +x_1253 = l_Lean_Syntax_node2(x_1205, x_1213, x_1239, x_1252); +x_1254 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_1205); +x_1255 = l_Lean_Syntax_node1(x_1205, x_1254, x_1253); +x_1256 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__10; +lean_inc_n(x_1215, 3); +lean_inc(x_1205); +x_1257 = l_Lean_Syntax_node7(x_1205, x_1256, x_1221, x_1227, x_1215, x_1215, x_1215, x_1237, x_1255); +x_1258 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_1217); +lean_inc(x_1205); +x_1259 = l_Lean_Syntax_node2(x_1205, x_1258, x_1217, x_1257); +x_1260 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_1205); +x_1261 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1261, 0, x_1205); +lean_ctor_set(x_1261, 1, x_1260); +x_1262 = l_Array_append___rarg(x_1214, x_3); +lean_inc(x_1205); +x_1263 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1263, 0, x_1205); +lean_ctor_set(x_1263, 1, x_1213); +lean_ctor_set(x_1263, 2, x_1262); +x_1264 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_1205); +x_1265 = l_Lean_Syntax_node2(x_1205, x_1264, x_1261, x_1263); +x_1266 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +lean_inc(x_1205); +x_1267 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1267, 0, x_1205); +lean_ctor_set(x_1267, 1, x_1266); +x_1268 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_1215); +lean_inc(x_1205); +x_1269 = l_Lean_Syntax_node1(x_1205, x_1268, x_1215); +x_1270 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +lean_inc(x_1205); +x_1271 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1271, 0, x_1205); +lean_ctor_set(x_1271, 1, x_1270); +x_1272 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +lean_inc(x_1205); +x_1273 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1273, 0, x_1205); +lean_ctor_set(x_1273, 1, x_1272); +x_1274 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_1206); +lean_inc(x_1212); +x_1275 = l_Lean_addMacroScope(x_1212, x_1274, x_1206); +x_1276 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_1277 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_1205); +x_1278 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1278, 0, x_1205); +lean_ctor_set(x_1278, 1, x_1276); +lean_ctor_set(x_1278, 2, x_1275); +lean_ctor_set(x_1278, 3, x_1277); +x_1279 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__57; +lean_inc(x_1205); +x_1280 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1280, 0, x_1205); +lean_ctor_set(x_1280, 1, x_1279); +x_1281 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_1205); +x_1282 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1282, 0, x_1205); +lean_ctor_set(x_1282, 1, x_1281); +x_1283 = lean_box(0); +x_1284 = l_Lean_mkCIdentFrom(x_1283, x_4, x_1204); +x_1285 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_1205); +x_1286 = l_Lean_Syntax_node2(x_1205, x_1285, x_1282, x_1284); +x_1287 = lean_array_size(x_1201); +x_1288 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__63; +x_1289 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__4(x_1288, x_1287, x_16, x_1201); +x_1290 = l_Array_append___rarg(x_1214, x_1289); +lean_dec(x_1289); +lean_inc(x_1205); +x_1291 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1291, 0, x_1205); +lean_ctor_set(x_1291, 1, x_1213); +lean_ctor_set(x_1291, 2, x_1290); +x_1292 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_1205); +x_1293 = l_Lean_Syntax_node2(x_1205, x_1292, x_1286, x_1291); +x_1294 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__58; +lean_inc(x_1205); +x_1295 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1295, 0, x_1205); +lean_ctor_set(x_1295, 1, x_1294); +x_1296 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__56; +lean_inc(x_1205); +x_1297 = l_Lean_Syntax_node3(x_1205, x_1296, x_1280, x_1293, x_1295); +lean_inc(x_1205); +x_1298 = l_Lean_Syntax_node1(x_1205, x_1213, x_1297); +lean_inc(x_1205); +x_1299 = l_Lean_Syntax_node2(x_1205, x_1292, x_1278, x_1298); +x_1300 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_1273); +lean_inc(x_1205); +x_1301 = l_Lean_Syntax_node2(x_1205, x_1300, x_1273, x_1299); +x_1302 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +lean_inc(x_1215); +lean_inc(x_1205); +x_1303 = l_Lean_Syntax_node2(x_1205, x_1302, x_1215, x_1301); +x_1304 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +lean_inc(x_1205); +x_1305 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1305, 0, x_1205); +lean_ctor_set(x_1305, 1, x_1304); +x_1306 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; +lean_inc(x_1205); +x_1307 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1307, 0, x_1205); +lean_ctor_set(x_1307, 1, x_1306); +x_1308 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_1206); +lean_inc(x_1212); +x_1309 = l_Lean_addMacroScope(x_1212, x_1308, x_1206); +x_1310 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_1311 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_1205); +x_1312 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1312, 0, x_1205); +lean_ctor_set(x_1312, 1, x_1310); +lean_ctor_set(x_1312, 2, x_1309); +lean_ctor_set(x_1312, 3, x_1311); +x_1313 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_1215); +lean_inc(x_1205); +x_1314 = l_Lean_Syntax_node2(x_1205, x_1313, x_1312, x_1215); +x_1315 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_1206); +lean_inc(x_1212); +x_1316 = l_Lean_addMacroScope(x_1212, x_1315, x_1206); +x_1317 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +lean_inc(x_1205); +x_1318 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1318, 0, x_1205); +lean_ctor_set(x_1318, 1, x_1317); +lean_ctor_set(x_1318, 2, x_1316); +lean_ctor_set(x_1318, 3, x_13); +x_1319 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_1318); +lean_inc(x_1305); +lean_inc(x_1205); +x_1320 = l_Lean_Syntax_node3(x_1205, x_1319, x_1314, x_1305, x_1318); +x_1321 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_1206); +lean_inc(x_1212); +x_1322 = l_Lean_addMacroScope(x_1212, x_1321, x_1206); +x_1323 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_1324 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_1205); +x_1325 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1325, 0, x_1205); +lean_ctor_set(x_1325, 1, x_1323); +lean_ctor_set(x_1325, 2, x_1322); +lean_ctor_set(x_1325, 3, x_1324); +lean_inc(x_1215); +lean_inc(x_1205); +x_1326 = l_Lean_Syntax_node2(x_1205, x_1313, x_1325, x_1215); +x_1327 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_1206); +lean_inc(x_1212); +x_1328 = l_Lean_addMacroScope(x_1212, x_1327, x_1206); +x_1329 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_1205); x_1330 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1330, 0, x_1220); -lean_ctor_set(x_1330, 1, x_1328); -lean_ctor_set(x_1330, 2, x_1327); -lean_ctor_set(x_1330, 3, x_1329); -x_1331 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_1230); -lean_inc(x_1220); -x_1332 = l_Lean_Syntax_node2(x_1220, x_1331, x_1330, x_1230); -x_1333 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; -lean_inc(x_1221); -lean_inc(x_1227); -x_1334 = l_Lean_addMacroScope(x_1227, x_1333, x_1221); -x_1335 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; -lean_inc(x_1220); -x_1336 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1336, 0, x_1220); +lean_ctor_set(x_1330, 0, x_1205); +lean_ctor_set(x_1330, 1, x_1329); +lean_ctor_set(x_1330, 2, x_1328); +lean_ctor_set(x_1330, 3, x_13); +lean_inc(x_1330); +lean_inc(x_1305); +lean_inc(x_1205); +x_1331 = l_Lean_Syntax_node3(x_1205, x_1319, x_1326, x_1305, x_1330); +lean_inc(x_1205); +x_1332 = l_Lean_Syntax_node3(x_1205, x_1213, x_1320, x_1246, x_1331); +x_1333 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_1215); +lean_inc(x_1205); +x_1334 = l_Lean_Syntax_node1(x_1205, x_1333, x_1215); +x_1335 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_1205); +x_1336 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1336, 0, x_1205); lean_ctor_set(x_1336, 1, x_1335); -lean_ctor_set(x_1336, 2, x_1334); -lean_ctor_set(x_1336, 3, x_13); -x_1337 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +x_1337 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; lean_inc(x_1336); -lean_inc(x_1323); -lean_inc(x_1220); -x_1338 = l_Lean_Syntax_node3(x_1220, x_1337, x_1332, x_1323, x_1336); -x_1339 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; -lean_inc(x_1221); -lean_inc(x_1227); -x_1340 = l_Lean_addMacroScope(x_1227, x_1339, x_1221); -x_1341 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_1342 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; -lean_inc(x_1220); -x_1343 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1343, 0, x_1220); -lean_ctor_set(x_1343, 1, x_1341); -lean_ctor_set(x_1343, 2, x_1340); -lean_ctor_set(x_1343, 3, x_1342); -lean_inc(x_1230); -lean_inc(x_1220); -x_1344 = l_Lean_Syntax_node2(x_1220, x_1331, x_1343, x_1230); -x_1345 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; -lean_inc(x_1221); -lean_inc(x_1227); -x_1346 = l_Lean_addMacroScope(x_1227, x_1345, x_1221); -x_1347 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; -lean_inc(x_1220); -x_1348 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1348, 0, x_1220); -lean_ctor_set(x_1348, 1, x_1347); -lean_ctor_set(x_1348, 2, x_1346); -lean_ctor_set(x_1348, 3, x_13); -lean_inc(x_1348); -lean_inc(x_1323); -lean_inc(x_1220); -x_1349 = l_Lean_Syntax_node3(x_1220, x_1337, x_1344, x_1323, x_1348); -lean_inc(x_1220); -x_1350 = l_Lean_Syntax_node3(x_1220, x_1228, x_1338, x_1263, x_1349); -x_1351 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_1230); -lean_inc(x_1220); -x_1352 = l_Lean_Syntax_node1(x_1220, x_1351, x_1230); -x_1353 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_1220); -x_1354 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1354, 0, x_1220); -lean_ctor_set(x_1354, 1, x_1353); -x_1355 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc(x_1354); -lean_inc(x_1352); -lean_inc_n(x_1230, 2); -lean_inc(x_1325); -lean_inc(x_1220); -x_1356 = l_Lean_Syntax_node6(x_1220, x_1355, x_1325, x_1230, x_1350, x_1352, x_1230, x_1354); -x_1357 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_1230, 2); -lean_inc(x_1220); -x_1358 = l_Lean_Syntax_node2(x_1220, x_1357, x_1230, x_1230); -x_1359 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; -lean_inc(x_1221); -lean_inc(x_1227); -x_1360 = l_Lean_addMacroScope(x_1227, x_1359, x_1221); -x_1361 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; -lean_inc(x_1220); -x_1362 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1362, 0, x_1220); -lean_ctor_set(x_1362, 1, x_1361); -lean_ctor_set(x_1362, 2, x_1360); -lean_ctor_set(x_1362, 3, x_13); -lean_inc(x_1362); -lean_inc(x_1220); -x_1363 = l_Lean_Syntax_node1(x_1220, x_1228, x_1362); -x_1364 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; -lean_inc(x_1220); -x_1365 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1365, 0, x_1220); -lean_ctor_set(x_1365, 1, x_1364); -x_1366 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; -lean_inc(x_1221); -lean_inc(x_1227); -x_1367 = l_Lean_addMacroScope(x_1227, x_1366, x_1221); -x_1368 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_1369 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; -lean_inc(x_1220); -x_1370 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1370, 0, x_1220); -lean_ctor_set(x_1370, 1, x_1368); -lean_ctor_set(x_1370, 2, x_1367); -lean_ctor_set(x_1370, 3, x_1369); -x_1371 = lean_array_size(x_1209); -x_1372 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_1337, x_1371, x_16, x_1209); -x_1373 = lean_array_size(x_1372); -x_1374 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_1373, x_16, x_1372); -x_1375 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; -x_1376 = l_Lean_mkSepArray(x_1374, x_1375); -lean_dec(x_1374); -x_1377 = l_Array_append___rarg(x_1229, x_1376); -lean_dec(x_1376); -lean_inc(x_1220); -x_1378 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1378, 0, x_1220); -lean_ctor_set(x_1378, 1, x_1228); -lean_ctor_set(x_1378, 2, x_1377); -lean_inc(x_1240); -lean_inc(x_1291); -lean_inc(x_1220); -x_1379 = l_Lean_Syntax_node2(x_1220, x_1228, x_1291, x_1240); -lean_inc(x_1354); -lean_inc(x_1352); -lean_inc(x_1230); -lean_inc(x_1325); -lean_inc(x_1220); -x_1380 = l_Lean_Syntax_node6(x_1220, x_1355, x_1325, x_1230, x_1378, x_1352, x_1379, x_1354); -lean_inc(x_1220); -x_1381 = l_Lean_Syntax_node1(x_1220, x_1228, x_1380); -lean_inc(x_1220); -x_1382 = l_Lean_Syntax_node2(x_1220, x_1310, x_1370, x_1381); -lean_inc(x_1220); -x_1383 = l_Lean_Syntax_node1(x_1220, x_1228, x_1382); -x_1384 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; -lean_inc(x_1365); -lean_inc(x_1220); -x_1385 = l_Lean_Syntax_node2(x_1220, x_1384, x_1365, x_1383); -x_1386 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_1323); -lean_inc(x_1230); -lean_inc(x_1220); -x_1387 = l_Lean_Syntax_node5(x_1220, x_1386, x_1336, x_1363, x_1230, x_1323, x_1385); -x_1388 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_1220); -x_1389 = l_Lean_Syntax_node1(x_1220, x_1388, x_1387); -x_1390 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_1358); -lean_inc_n(x_1230, 2); -lean_inc(x_1220); -x_1391 = l_Lean_Syntax_node4(x_1220, x_1390, x_1230, x_1230, x_1389, x_1358); -x_1392 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; -lean_inc(x_1221); -lean_inc(x_1227); -x_1393 = l_Lean_addMacroScope(x_1227, x_1392, x_1221); -x_1394 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_1220); -x_1395 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1395, 0, x_1220); -lean_ctor_set(x_1395, 1, x_1394); -lean_ctor_set(x_1395, 2, x_1393); -lean_ctor_set(x_1395, 3, x_13); -lean_inc(x_1220); -x_1396 = l_Lean_Syntax_node1(x_1220, x_1228, x_1395); -x_1397 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_1220); -x_1398 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1398, 0, x_1220); -lean_ctor_set(x_1398, 1, x_1397); -x_1399 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_1220); -x_1400 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1400, 0, x_1220); -lean_ctor_set(x_1400, 1, x_1399); -lean_inc(x_1220); -x_1401 = l_Lean_Syntax_node2(x_1220, x_1318, x_1291, x_1240); -lean_inc(x_1220); -x_1402 = l_Lean_Syntax_node1(x_1220, x_1228, x_1401); -x_1403 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; -lean_inc(x_1220); -x_1404 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1404, 0, x_1220); -lean_ctor_set(x_1404, 1, x_1403); -x_1405 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -x_1406 = l_Lean_addMacroScope(x_1227, x_1405, x_1221); -x_1407 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_1408 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; -lean_inc(x_1220); -x_1409 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1409, 0, x_1220); -lean_ctor_set(x_1409, 1, x_1407); -lean_ctor_set(x_1409, 2, x_1406); -lean_ctor_set(x_1409, 3, x_1408); -lean_inc(x_1396); -lean_inc(x_1220); -x_1410 = l_Lean_Syntax_node2(x_1220, x_1310, x_1409, x_1396); -x_1411 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_1220); -x_1412 = l_Lean_Syntax_node1(x_1220, x_1411, x_1410); -x_1413 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_1220); -x_1414 = l_Lean_Syntax_node4(x_1220, x_1413, x_1362, x_1402, x_1404, x_1412); -x_1415 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_1230); -lean_inc(x_1220); -x_1416 = l_Lean_Syntax_node3(x_1220, x_1415, x_1400, x_1230, x_1414); -x_1417 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_1230); -lean_inc(x_1220); -x_1418 = l_Lean_Syntax_node2(x_1220, x_1417, x_1416, x_1230); -x_1419 = l_Lean_Syntax_SepArray_ofElems(x_1262, x_1207); -lean_dec(x_1207); -x_1420 = l_Array_append___rarg(x_1229, x_1419); -lean_dec(x_1419); -lean_inc(x_1220); -x_1421 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1421, 0, x_1220); -lean_ctor_set(x_1421, 1, x_1228); -lean_ctor_set(x_1421, 2, x_1420); -lean_inc_n(x_1230, 2); -lean_inc(x_1220); -x_1422 = l_Lean_Syntax_node6(x_1220, x_1355, x_1325, x_1230, x_1421, x_1352, x_1230, x_1354); -lean_inc(x_1220); -x_1423 = l_Lean_Syntax_node1(x_1220, x_1228, x_1422); -x_1424 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124; -lean_inc(x_1220); -x_1425 = l_Lean_Syntax_node2(x_1220, x_1424, x_1365, x_1423); -lean_inc(x_1230); -lean_inc(x_1220); -x_1426 = l_Lean_Syntax_node2(x_1220, x_1417, x_1425, x_1230); -lean_inc(x_1220); -x_1427 = l_Lean_Syntax_node2(x_1220, x_1228, x_1418, x_1426); -x_1428 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; -lean_inc(x_1220); -x_1429 = l_Lean_Syntax_node1(x_1220, x_1428, x_1427); -x_1430 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; -lean_inc(x_1220); -x_1431 = l_Lean_Syntax_node2(x_1220, x_1430, x_1398, x_1429); -lean_inc(x_1323); -lean_inc(x_1230); -lean_inc(x_1220); -x_1432 = l_Lean_Syntax_node5(x_1220, x_1386, x_1348, x_1396, x_1230, x_1323, x_1431); -lean_inc(x_1220); -x_1433 = l_Lean_Syntax_node1(x_1220, x_1388, x_1432); -lean_inc(x_1358); -lean_inc_n(x_1230, 2); -lean_inc(x_1220); -x_1434 = l_Lean_Syntax_node4(x_1220, x_1390, x_1230, x_1230, x_1433, x_1358); -lean_inc(x_1230); -lean_inc(x_1220); -x_1435 = l_Lean_Syntax_node3(x_1220, x_1228, x_1391, x_1230, x_1434); -x_1436 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; -lean_inc(x_1220); -x_1437 = l_Lean_Syntax_node2(x_1220, x_1436, x_1244, x_1435); -lean_inc(x_1220); -x_1438 = l_Lean_Syntax_node1(x_1220, x_1228, x_1437); -x_1439 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_1220); -x_1440 = l_Lean_Syntax_node4(x_1220, x_1439, x_1323, x_1356, x_1358, x_1438); -x_1441 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_1230); -lean_inc(x_1220); -x_1442 = l_Lean_Syntax_node6(x_1220, x_1441, x_1287, x_1289, x_1230, x_1230, x_1321, x_1440); -lean_inc(x_1220); -x_1443 = l_Lean_Syntax_node2(x_1220, x_1276, x_1232, x_1442); -x_1444 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_1220); -x_1445 = l_Lean_Syntax_node3(x_1220, x_1444, x_1283, x_1285, x_1443); -x_1446 = l_Lean_Syntax_node2(x_1220, x_1228, x_1277, x_1445); -if (lean_is_scalar(x_1225)) { - x_1447 = lean_alloc_ctor(0, 2, 0); +lean_inc(x_1334); +lean_inc_n(x_1215, 2); +lean_inc(x_1307); +lean_inc(x_1205); +x_1338 = l_Lean_Syntax_node6(x_1205, x_1337, x_1307, x_1215, x_1332, x_1334, x_1215, x_1336); +x_1339 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_1215, 2); +lean_inc(x_1205); +x_1340 = l_Lean_Syntax_node2(x_1205, x_1339, x_1215, x_1215); +x_1341 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__37; +lean_inc(x_1206); +lean_inc(x_1212); +x_1342 = l_Lean_addMacroScope(x_1212, x_1341, x_1206); +x_1343 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__36; +lean_inc(x_1205); +x_1344 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1344, 0, x_1205); +lean_ctor_set(x_1344, 1, x_1343); +lean_ctor_set(x_1344, 2, x_1342); +lean_ctor_set(x_1344, 3, x_13); +lean_inc(x_1344); +lean_inc(x_1205); +x_1345 = l_Lean_Syntax_node1(x_1205, x_1213, x_1344); +x_1346 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; +lean_inc(x_1205); +x_1347 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1347, 0, x_1205); +lean_ctor_set(x_1347, 1, x_1346); +x_1348 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; +lean_inc(x_1206); +lean_inc(x_1212); +x_1349 = l_Lean_addMacroScope(x_1212, x_1348, x_1206); +x_1350 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_1351 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; +lean_inc(x_1205); +x_1352 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1352, 0, x_1205); +lean_ctor_set(x_1352, 1, x_1350); +lean_ctor_set(x_1352, 2, x_1349); +lean_ctor_set(x_1352, 3, x_1351); +x_1353 = lean_array_size(x_1194); +x_1354 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__5(x_13, x_1319, x_1353, x_16, x_1194); +x_1355 = lean_array_size(x_1354); +x_1356 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__6(x_1355, x_16, x_1354); +x_1357 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__98; +x_1358 = l_Lean_mkSepArray(x_1356, x_1357); +lean_dec(x_1356); +x_1359 = l_Array_append___rarg(x_1214, x_1358); +lean_dec(x_1358); +lean_inc(x_1205); +x_1360 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1360, 0, x_1205); +lean_ctor_set(x_1360, 1, x_1213); +lean_ctor_set(x_1360, 2, x_1359); +lean_inc(x_1225); +lean_inc(x_1273); +lean_inc(x_1205); +x_1361 = l_Lean_Syntax_node2(x_1205, x_1213, x_1273, x_1225); +lean_inc(x_1336); +lean_inc(x_1334); +lean_inc(x_1215); +lean_inc(x_1307); +lean_inc(x_1205); +x_1362 = l_Lean_Syntax_node6(x_1205, x_1337, x_1307, x_1215, x_1360, x_1334, x_1361, x_1336); +lean_inc(x_1205); +x_1363 = l_Lean_Syntax_node1(x_1205, x_1213, x_1362); +lean_inc(x_1205); +x_1364 = l_Lean_Syntax_node2(x_1205, x_1292, x_1352, x_1363); +lean_inc(x_1205); +x_1365 = l_Lean_Syntax_node1(x_1205, x_1213, x_1364); +x_1366 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; +lean_inc(x_1347); +lean_inc(x_1205); +x_1367 = l_Lean_Syntax_node2(x_1205, x_1366, x_1347, x_1365); +x_1368 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_1305); +lean_inc(x_1215); +lean_inc(x_1205); +x_1369 = l_Lean_Syntax_node5(x_1205, x_1368, x_1318, x_1345, x_1215, x_1305, x_1367); +x_1370 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_1205); +x_1371 = l_Lean_Syntax_node1(x_1205, x_1370, x_1369); +x_1372 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_1340); +lean_inc_n(x_1215, 2); +lean_inc(x_1205); +x_1373 = l_Lean_Syntax_node4(x_1205, x_1372, x_1215, x_1215, x_1371, x_1340); +x_1374 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_1206); +lean_inc(x_1212); +x_1375 = l_Lean_addMacroScope(x_1212, x_1374, x_1206); +x_1376 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_1205); +x_1377 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1377, 0, x_1205); +lean_ctor_set(x_1377, 1, x_1376); +lean_ctor_set(x_1377, 2, x_1375); +lean_ctor_set(x_1377, 3, x_13); +lean_inc(x_1205); +x_1378 = l_Lean_Syntax_node1(x_1205, x_1213, x_1377); +x_1379 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_1205); +x_1380 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1380, 0, x_1205); +lean_ctor_set(x_1380, 1, x_1379); +x_1381 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_1205); +x_1382 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1382, 0, x_1205); +lean_ctor_set(x_1382, 1, x_1381); +lean_inc(x_1205); +x_1383 = l_Lean_Syntax_node2(x_1205, x_1300, x_1273, x_1225); +lean_inc(x_1205); +x_1384 = l_Lean_Syntax_node1(x_1205, x_1213, x_1383); +x_1385 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_1205); +x_1386 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1386, 0, x_1205); +lean_ctor_set(x_1386, 1, x_1385); +x_1387 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +x_1388 = l_Lean_addMacroScope(x_1212, x_1387, x_1206); +x_1389 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_1390 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; +lean_inc(x_1205); +x_1391 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1391, 0, x_1205); +lean_ctor_set(x_1391, 1, x_1389); +lean_ctor_set(x_1391, 2, x_1388); +lean_ctor_set(x_1391, 3, x_1390); +lean_inc(x_1378); +lean_inc(x_1205); +x_1392 = l_Lean_Syntax_node2(x_1205, x_1292, x_1391, x_1378); +x_1393 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; +lean_inc(x_1205); +x_1394 = l_Lean_Syntax_node1(x_1205, x_1393, x_1392); +x_1395 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_1205); +x_1396 = l_Lean_Syntax_node4(x_1205, x_1395, x_1344, x_1384, x_1386, x_1394); +x_1397 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_1215); +lean_inc(x_1205); +x_1398 = l_Lean_Syntax_node3(x_1205, x_1397, x_1382, x_1215, x_1396); +x_1399 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_1215); +lean_inc(x_1205); +x_1400 = l_Lean_Syntax_node2(x_1205, x_1399, x_1398, x_1215); +x_1401 = l_Lean_Syntax_SepArray_ofElems(x_1245, x_1192); +lean_dec(x_1192); +x_1402 = l_Array_append___rarg(x_1214, x_1401); +lean_dec(x_1401); +lean_inc(x_1205); +x_1403 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1403, 0, x_1205); +lean_ctor_set(x_1403, 1, x_1213); +lean_ctor_set(x_1403, 2, x_1402); +lean_inc_n(x_1215, 2); +lean_inc(x_1205); +x_1404 = l_Lean_Syntax_node6(x_1205, x_1337, x_1307, x_1215, x_1403, x_1334, x_1215, x_1336); +lean_inc(x_1205); +x_1405 = l_Lean_Syntax_node1(x_1205, x_1213, x_1404); +x_1406 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +lean_inc(x_1205); +x_1407 = l_Lean_Syntax_node2(x_1205, x_1406, x_1347, x_1405); +lean_inc(x_1215); +lean_inc(x_1205); +x_1408 = l_Lean_Syntax_node2(x_1205, x_1399, x_1407, x_1215); +lean_inc(x_1205); +x_1409 = l_Lean_Syntax_node2(x_1205, x_1213, x_1400, x_1408); +x_1410 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +lean_inc(x_1205); +x_1411 = l_Lean_Syntax_node1(x_1205, x_1410, x_1409); +x_1412 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_1205); +x_1413 = l_Lean_Syntax_node2(x_1205, x_1412, x_1380, x_1411); +lean_inc(x_1305); +lean_inc(x_1215); +lean_inc(x_1205); +x_1414 = l_Lean_Syntax_node5(x_1205, x_1368, x_1330, x_1378, x_1215, x_1305, x_1413); +lean_inc(x_1205); +x_1415 = l_Lean_Syntax_node1(x_1205, x_1370, x_1414); +lean_inc(x_1340); +lean_inc_n(x_1215, 2); +lean_inc(x_1205); +x_1416 = l_Lean_Syntax_node4(x_1205, x_1372, x_1215, x_1215, x_1415, x_1340); +lean_inc(x_1215); +lean_inc(x_1205); +x_1417 = l_Lean_Syntax_node3(x_1205, x_1213, x_1373, x_1215, x_1416); +x_1418 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +lean_inc(x_1205); +x_1419 = l_Lean_Syntax_node2(x_1205, x_1418, x_1229, x_1417); +lean_inc(x_1205); +x_1420 = l_Lean_Syntax_node1(x_1205, x_1213, x_1419); +x_1421 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; +lean_inc(x_1205); +x_1422 = l_Lean_Syntax_node4(x_1205, x_1421, x_1305, x_1338, x_1340, x_1420); +x_1423 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_1215); +lean_inc(x_1205); +x_1424 = l_Lean_Syntax_node6(x_1205, x_1423, x_1269, x_1271, x_1215, x_1215, x_1303, x_1422); +lean_inc(x_1205); +x_1425 = l_Lean_Syntax_node2(x_1205, x_1258, x_1217, x_1424); +x_1426 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_1205); +x_1427 = l_Lean_Syntax_node3(x_1205, x_1426, x_1265, x_1267, x_1425); +x_1428 = l_Lean_Syntax_node2(x_1205, x_1213, x_1259, x_1427); +if (lean_is_scalar(x_1210)) { + x_1429 = lean_alloc_ctor(0, 2, 0); } else { - x_1447 = x_1225; + x_1429 = x_1210; } -lean_ctor_set(x_1447, 0, x_1446); -lean_ctor_set(x_1447, 1, x_1224); -return x_1447; +lean_ctor_set(x_1429, 0, x_1428); +lean_ctor_set(x_1429, 1, x_1209); +return x_1429; } else { -lean_object* x_1448; lean_object* x_1449; lean_object* x_1450; lean_object* x_1451; -lean_dec(x_1213); -lean_dec(x_1212); -lean_dec(x_1211); -lean_dec(x_1210); -lean_dec(x_1209); -lean_dec(x_1208); -lean_dec(x_1207); +lean_object* x_1430; lean_object* x_1431; lean_object* x_1432; lean_object* x_1433; +lean_dec(x_1198); +lean_dec(x_1197); +lean_dec(x_1196); +lean_dec(x_1195); +lean_dec(x_1194); +lean_dec(x_1193); +lean_dec(x_1192); lean_dec(x_10); lean_dec(x_4); -x_1448 = lean_ctor_get(x_1215, 0); -lean_inc(x_1448); -x_1449 = lean_ctor_get(x_1215, 1); -lean_inc(x_1449); -if (lean_is_exclusive(x_1215)) { - lean_ctor_release(x_1215, 0); - lean_ctor_release(x_1215, 1); - x_1450 = x_1215; +x_1430 = lean_ctor_get(x_1200, 0); +lean_inc(x_1430); +x_1431 = lean_ctor_get(x_1200, 1); +lean_inc(x_1431); +if (lean_is_exclusive(x_1200)) { + lean_ctor_release(x_1200, 0); + lean_ctor_release(x_1200, 1); + x_1432 = x_1200; } else { - lean_dec_ref(x_1215); - x_1450 = lean_box(0); + lean_dec_ref(x_1200); + x_1432 = lean_box(0); } -if (lean_is_scalar(x_1450)) { - x_1451 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1432)) { + x_1433 = lean_alloc_ctor(1, 2, 0); } else { - x_1451 = x_1450; + x_1433 = x_1432; } -lean_ctor_set(x_1451, 0, x_1448); -lean_ctor_set(x_1451, 1, x_1449); -return x_1451; +lean_ctor_set(x_1433, 0, x_1430); +lean_ctor_set(x_1433, 1, x_1431); +return x_1433; } } } @@ -9414,17 +9352,17 @@ lean_inc(x_22); lean_ctor_set_tag(x_66, 2); lean_ctor_set(x_66, 1, x_85); lean_ctor_set(x_66, 0, x_22); -x_86 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_86 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; lean_inc(x_22); x_87 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_87, 0, x_22); lean_ctor_set(x_87, 1, x_86); -x_88 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +x_88 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; lean_inc(x_23); lean_inc(x_75); x_89 = l_Lean_addMacroScope(x_75, x_88, x_23); -x_90 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_91 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; +x_90 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_91 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; lean_inc(x_22); x_92 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_92, 0, x_22); @@ -9471,7 +9409,7 @@ lean_inc(x_22); x_106 = l_Lean_Syntax_node2(x_22, x_81, x_92, x_105); lean_inc(x_22); x_107 = l_Lean_Syntax_node1(x_22, x_31, x_106); -x_108 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; +x_108 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; lean_inc(x_87); lean_inc(x_22); x_109 = l_Lean_Syntax_node2(x_22, x_108, x_87, x_107); @@ -9649,17 +9587,17 @@ lean_inc(x_22); lean_ctor_set_tag(x_66, 2); lean_ctor_set(x_66, 1, x_169); lean_ctor_set(x_66, 0, x_22); -x_170 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_170 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; lean_inc(x_22); x_171 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_171, 0, x_22); lean_ctor_set(x_171, 1, x_170); -x_172 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +x_172 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; lean_inc(x_23); lean_inc(x_158); x_173 = l_Lean_addMacroScope(x_158, x_172, x_23); -x_174 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_175 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; +x_174 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_175 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; lean_inc(x_22); x_176 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_176, 0, x_22); @@ -9706,7 +9644,7 @@ lean_inc(x_22); x_190 = l_Lean_Syntax_node2(x_22, x_165, x_176, x_189); lean_inc(x_22); x_191 = l_Lean_Syntax_node1(x_22, x_31, x_190); -x_192 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; +x_192 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; lean_inc(x_171); lean_inc(x_22); x_193 = l_Lean_Syntax_node2(x_22, x_192, x_171, x_191); @@ -9837,17 +9775,17 @@ lean_inc(x_22); x_233 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_233, 0, x_22); lean_ctor_set(x_233, 1, x_232); -x_234 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_234 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; lean_inc(x_22); x_235 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_235, 0, x_22); lean_ctor_set(x_235, 1, x_234); -x_236 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +x_236 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; lean_inc(x_23); lean_inc(x_221); x_237 = l_Lean_addMacroScope(x_221, x_236, x_23); -x_238 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_239 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; +x_238 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_239 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; lean_inc(x_22); x_240 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_240, 0, x_22); @@ -9894,7 +9832,7 @@ lean_inc(x_22); x_254 = l_Lean_Syntax_node2(x_22, x_228, x_240, x_253); lean_inc(x_22); x_255 = l_Lean_Syntax_node1(x_22, x_31, x_254); -x_256 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; +x_256 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; lean_inc(x_235); lean_inc(x_22); x_257 = l_Lean_Syntax_node2(x_22, x_256, x_235, x_255); @@ -10157,17 +10095,17 @@ if (lean_is_scalar(x_326)) { } lean_ctor_set(x_344, 0, x_22); lean_ctor_set(x_344, 1, x_343); -x_345 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_345 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__91; lean_inc(x_22); x_346 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_346, 0, x_22); lean_ctor_set(x_346, 1, x_345); -x_347 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__96; +x_347 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__94; lean_inc(x_23); lean_inc(x_332); x_348 = l_Lean_addMacroScope(x_332, x_347, x_23); -x_349 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__95; -x_350 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__99; +x_349 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__93; +x_350 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__97; lean_inc(x_22); x_351 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_351, 0, x_22); @@ -10214,7 +10152,7 @@ lean_inc(x_22); x_365 = l_Lean_Syntax_node2(x_22, x_339, x_351, x_364); lean_inc(x_22); x_366 = l_Lean_Syntax_node1(x_22, x_287, x_365); -x_367 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__92; +x_367 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; lean_inc(x_346); lean_inc(x_22); x_368 = l_Lean_Syntax_node2(x_22, x_367, x_346, x_366); @@ -10673,7 +10611,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__64; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -11135,7 +11073,7 @@ x_36 = lean_ctor_get(x_34, 1); x_37 = lean_ctor_get(x_34, 0); lean_dec(x_37); x_38 = lean_box(0); -x_39 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; +x_39 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; lean_inc(x_33); lean_ctor_set_tag(x_34, 2); lean_ctor_set(x_34, 1, x_39); @@ -11147,7 +11085,7 @@ x_41 = lean_ctor_get(x_40, 0); lean_inc(x_41); lean_dec(x_40); x_42 = lean_mk_syntax_ident(x_41); -x_43 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; +x_43 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; lean_inc(x_33); x_44 = l_Lean_Syntax_node2(x_33, x_43, x_34, x_42); x_45 = lean_array_size(x_29); @@ -11173,7 +11111,7 @@ lean_dec(x_10); x_56 = !lean_is_exclusive(x_55); if (x_56 == 0) { -lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; size_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; lean_object* x_193; lean_object* x_194; lean_object* x_195; size_t x_196; lean_object* x_197; size_t x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; lean_object* x_254; lean_object* x_255; lean_object* x_256; size_t x_257; lean_object* x_258; size_t x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; lean_object* x_286; lean_object* x_287; lean_object* x_288; +lean_object* x_57; lean_object* x_58; lean_object* x_59; lean_object* x_60; lean_object* x_61; lean_object* x_62; lean_object* x_63; lean_object* x_64; lean_object* x_65; lean_object* x_66; lean_object* x_67; lean_object* x_68; lean_object* x_69; lean_object* x_70; lean_object* x_71; lean_object* x_72; lean_object* x_73; size_t x_74; lean_object* x_75; lean_object* x_76; lean_object* x_77; lean_object* x_78; lean_object* x_79; lean_object* x_80; lean_object* x_81; lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85; lean_object* x_86; lean_object* x_87; lean_object* x_88; lean_object* x_89; lean_object* x_90; lean_object* x_91; lean_object* x_92; lean_object* x_93; lean_object* x_94; lean_object* x_95; lean_object* x_96; lean_object* x_97; lean_object* x_98; lean_object* x_99; lean_object* x_100; lean_object* x_101; lean_object* x_102; lean_object* x_103; lean_object* x_104; lean_object* x_105; lean_object* x_106; lean_object* x_107; lean_object* x_108; lean_object* x_109; lean_object* x_110; lean_object* x_111; lean_object* x_112; lean_object* x_113; lean_object* x_114; lean_object* x_115; lean_object* x_116; lean_object* x_117; lean_object* x_118; lean_object* x_119; lean_object* x_120; lean_object* x_121; lean_object* x_122; lean_object* x_123; lean_object* x_124; lean_object* x_125; lean_object* x_126; lean_object* x_127; lean_object* x_128; lean_object* x_129; lean_object* x_130; lean_object* x_131; lean_object* x_132; lean_object* x_133; lean_object* x_134; lean_object* x_135; lean_object* x_136; lean_object* x_137; lean_object* x_138; lean_object* x_139; lean_object* x_140; lean_object* x_141; lean_object* x_142; lean_object* x_143; lean_object* x_144; lean_object* x_145; lean_object* x_146; lean_object* x_147; lean_object* x_148; lean_object* x_149; lean_object* x_150; lean_object* x_151; lean_object* x_152; lean_object* x_153; lean_object* x_154; lean_object* x_155; lean_object* x_156; lean_object* x_157; lean_object* x_158; lean_object* x_159; lean_object* x_160; lean_object* x_161; lean_object* x_162; lean_object* x_163; lean_object* x_164; lean_object* x_165; lean_object* x_166; lean_object* x_167; lean_object* x_168; lean_object* x_169; lean_object* x_170; lean_object* x_171; lean_object* x_172; lean_object* x_173; lean_object* x_174; lean_object* x_175; lean_object* x_176; lean_object* x_177; lean_object* x_178; lean_object* x_179; lean_object* x_180; lean_object* x_181; lean_object* x_182; lean_object* x_183; lean_object* x_184; lean_object* x_185; lean_object* x_186; lean_object* x_187; lean_object* x_188; lean_object* x_189; lean_object* x_190; lean_object* x_191; lean_object* x_192; size_t x_193; lean_object* x_194; size_t x_195; lean_object* x_196; lean_object* x_197; lean_object* x_198; lean_object* x_199; lean_object* x_200; lean_object* x_201; lean_object* x_202; lean_object* x_203; lean_object* x_204; lean_object* x_205; lean_object* x_206; lean_object* x_207; lean_object* x_208; lean_object* x_209; lean_object* x_210; lean_object* x_211; lean_object* x_212; lean_object* x_213; lean_object* x_214; lean_object* x_215; lean_object* x_216; lean_object* x_217; lean_object* x_218; lean_object* x_219; lean_object* x_220; lean_object* x_221; lean_object* x_222; lean_object* x_223; lean_object* x_224; lean_object* x_225; lean_object* x_226; lean_object* x_227; lean_object* x_228; lean_object* x_229; lean_object* x_230; lean_object* x_231; lean_object* x_232; lean_object* x_233; lean_object* x_234; lean_object* x_235; lean_object* x_236; lean_object* x_237; lean_object* x_238; lean_object* x_239; lean_object* x_240; lean_object* x_241; lean_object* x_242; lean_object* x_243; lean_object* x_244; lean_object* x_245; lean_object* x_246; lean_object* x_247; lean_object* x_248; lean_object* x_249; lean_object* x_250; lean_object* x_251; lean_object* x_252; lean_object* x_253; size_t x_254; lean_object* x_255; size_t x_256; lean_object* x_257; lean_object* x_258; lean_object* x_259; lean_object* x_260; lean_object* x_261; lean_object* x_262; lean_object* x_263; lean_object* x_264; lean_object* x_265; lean_object* x_266; lean_object* x_267; lean_object* x_268; lean_object* x_269; lean_object* x_270; lean_object* x_271; lean_object* x_272; lean_object* x_273; lean_object* x_274; lean_object* x_275; lean_object* x_276; lean_object* x_277; lean_object* x_278; lean_object* x_279; lean_object* x_280; lean_object* x_281; lean_object* x_282; lean_object* x_283; lean_object* x_284; lean_object* x_285; x_57 = lean_ctor_get(x_55, 0); x_58 = lean_ctor_get(x_57, 0); lean_inc(x_58); @@ -11235,1632 +11173,1611 @@ lean_inc(x_33); x_79 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_79, 0, x_33); lean_ctor_set(x_79, 1, x_78); -x_80 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +x_80 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; lean_inc(x_54); lean_inc(x_59); x_81 = l_Lean_addMacroScope(x_59, x_80, x_54); -x_82 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_83 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +x_82 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_83 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; lean_inc(x_33); x_84 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_84, 0, x_33); lean_ctor_set(x_84, 1, x_82); lean_ctor_set(x_84, 2, x_81); lean_ctor_set(x_84, 3, x_83); -x_85 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_60); +x_85 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; lean_inc(x_33); -x_86 = l_Lean_Syntax_node2(x_33, x_85, x_84, x_60); -x_87 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_33); -x_88 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_88, 0, x_33); -lean_ctor_set(x_88, 1, x_87); -x_89 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; +x_86 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_86, 0, x_33); +lean_ctor_set(x_86, 1, x_85); +x_87 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; lean_inc(x_54); lean_inc(x_59); -x_90 = l_Lean_addMacroScope(x_59, x_89, x_54); -x_91 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_92 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +x_88 = l_Lean_addMacroScope(x_59, x_87, x_54); +x_89 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_90 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; lean_inc(x_33); -x_93 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_93, 0, x_33); -lean_ctor_set(x_93, 1, x_91); -lean_ctor_set(x_93, 2, x_90); -lean_ctor_set(x_93, 3, x_92); +x_91 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_91, 0, x_33); +lean_ctor_set(x_91, 1, x_89); +lean_ctor_set(x_91, 2, x_88); +lean_ctor_set(x_91, 3, x_90); +lean_inc(x_86); +lean_inc(x_33); +x_92 = l_Lean_Syntax_node3(x_33, x_50, x_84, x_86, x_91); +lean_inc(x_33); +x_93 = l_Lean_Syntax_node2(x_33, x_50, x_79, x_92); +x_94 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_33); +x_95 = l_Lean_Syntax_node1(x_33, x_94, x_93); +x_96 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; lean_inc(x_60); lean_inc(x_33); -x_94 = l_Lean_Syntax_node2(x_33, x_85, x_93, x_60); -lean_inc(x_88); +x_97 = l_Lean_Syntax_node7(x_33, x_96, x_23, x_69, x_71, x_73, x_77, x_60, x_95); +x_98 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; lean_inc(x_33); -x_95 = l_Lean_Syntax_node3(x_33, x_50, x_86, x_88, x_94); +x_99 = l_Lean_Syntax_node2(x_33, x_98, x_62, x_97); +x_100 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; lean_inc(x_33); -x_96 = l_Lean_Syntax_node2(x_33, x_50, x_79, x_95); -x_97 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +x_101 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_101, 0, x_33); +lean_ctor_set(x_101, 1, x_100); +x_102 = l_Array_append___rarg(x_48, x_3); lean_inc(x_33); -x_98 = l_Lean_Syntax_node1(x_33, x_97, x_96); -x_99 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; -lean_inc(x_60); +x_103 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_103, 0, x_33); +lean_ctor_set(x_103, 1, x_50); +lean_ctor_set(x_103, 2, x_102); +x_104 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; lean_inc(x_33); -x_100 = l_Lean_Syntax_node7(x_33, x_99, x_23, x_69, x_71, x_73, x_77, x_60, x_98); -x_101 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +x_105 = l_Lean_Syntax_node2(x_33, x_104, x_101, x_103); +x_106 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; lean_inc(x_33); -x_102 = l_Lean_Syntax_node2(x_33, x_101, x_62, x_100); -x_103 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +x_107 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_107, 0, x_33); +lean_ctor_set(x_107, 1, x_106); +x_108 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; lean_inc(x_33); -x_104 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_104, 0, x_33); -lean_ctor_set(x_104, 1, x_103); -x_105 = l_Array_append___rarg(x_48, x_3); +x_109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_109, 0, x_33); +lean_ctor_set(x_109, 1, x_108); +x_110 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; lean_inc(x_33); -x_106 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_106, 0, x_33); -lean_ctor_set(x_106, 1, x_50); -lean_ctor_set(x_106, 2, x_105); -x_107 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +x_111 = l_Lean_Syntax_node1(x_33, x_110, x_109); lean_inc(x_33); -x_108 = l_Lean_Syntax_node2(x_33, x_107, x_104, x_106); -x_109 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_33); -x_110 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_110, 0, x_33); -lean_ctor_set(x_110, 1, x_109); -x_111 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; -lean_inc(x_33); -x_112 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_112, 0, x_33); -lean_ctor_set(x_112, 1, x_111); -x_113 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; -lean_inc(x_33); -x_114 = l_Lean_Syntax_node1(x_33, x_113, x_112); -lean_inc(x_33); -x_115 = l_Lean_Syntax_node1(x_33, x_50, x_114); +x_112 = l_Lean_Syntax_node1(x_33, x_50, x_111); lean_inc_n(x_60, 5); lean_inc(x_33); -x_116 = l_Lean_Syntax_node6(x_33, x_61, x_60, x_60, x_60, x_60, x_60, x_115); -x_117 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +x_113 = l_Lean_Syntax_node6(x_33, x_61, x_60, x_60, x_60, x_60, x_60, x_112); +x_114 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; lean_inc(x_60); lean_inc(x_33); -x_118 = l_Lean_Syntax_node1(x_33, x_117, x_60); -x_119 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; +x_115 = l_Lean_Syntax_node1(x_33, x_114, x_60); +x_116 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; lean_inc(x_33); -x_120 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_120, 0, x_33); -lean_ctor_set(x_120, 1, x_119); -x_121 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +x_117 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_117, 0, x_33); +lean_ctor_set(x_117, 1, x_116); +x_118 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; lean_inc(x_33); -x_122 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_122, 0, x_33); -lean_ctor_set(x_122, 1, x_121); -x_123 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_119 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_119, 0, x_33); +lean_ctor_set(x_119, 1, x_118); +x_120 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; lean_inc(x_54); lean_inc(x_59); -x_124 = l_Lean_addMacroScope(x_59, x_123, x_54); -x_125 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_126 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +x_121 = l_Lean_addMacroScope(x_59, x_120, x_54); +x_122 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_123 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; lean_inc(x_33); -x_127 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_127, 0, x_33); -lean_ctor_set(x_127, 1, x_125); -lean_ctor_set(x_127, 2, x_124); -lean_ctor_set(x_127, 3, x_126); +x_124 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_124, 0, x_33); +lean_ctor_set(x_124, 1, x_122); +lean_ctor_set(x_124, 2, x_121); +lean_ctor_set(x_124, 3, x_123); lean_inc(x_33); -x_128 = l_Lean_Syntax_node1(x_33, x_50, x_53); +x_125 = l_Lean_Syntax_node1(x_33, x_50, x_53); lean_inc(x_33); -x_129 = l_Lean_Syntax_node2(x_33, x_52, x_127, x_128); -x_130 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_122); +x_126 = l_Lean_Syntax_node2(x_33, x_52, x_124, x_125); +x_127 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_119); lean_inc(x_33); -x_131 = l_Lean_Syntax_node2(x_33, x_130, x_122, x_129); -x_132 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_131); +x_128 = l_Lean_Syntax_node2(x_33, x_127, x_119, x_126); +x_129 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +lean_inc(x_128); lean_inc(x_60); lean_inc(x_33); -x_133 = l_Lean_Syntax_node2(x_33, x_132, x_60, x_131); -x_134 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +x_130 = l_Lean_Syntax_node2(x_33, x_129, x_60, x_128); +x_131 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; lean_inc(x_33); -x_135 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_135, 0, x_33); -lean_ctor_set(x_135, 1, x_134); -x_136 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +x_132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_132, 0, x_33); +lean_ctor_set(x_132, 1, x_131); +x_133 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; lean_inc(x_33); -x_137 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_137, 0, x_33); -lean_ctor_set(x_137, 1, x_136); -x_138 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_134 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_134, 0, x_33); +lean_ctor_set(x_134, 1, x_133); +x_135 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; lean_inc(x_54); lean_inc(x_59); -x_139 = l_Lean_addMacroScope(x_59, x_138, x_54); -x_140 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_141 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +x_136 = l_Lean_addMacroScope(x_59, x_135, x_54); +x_137 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_138 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; lean_inc(x_33); -x_142 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_142, 0, x_33); -lean_ctor_set(x_142, 1, x_140); -lean_ctor_set(x_142, 2, x_139); -lean_ctor_set(x_142, 3, x_141); -x_143 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +x_139 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_139, 0, x_33); +lean_ctor_set(x_139, 1, x_137); +lean_ctor_set(x_139, 2, x_136); +lean_ctor_set(x_139, 3, x_138); +x_140 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; lean_inc(x_60); lean_inc(x_33); -x_144 = l_Lean_Syntax_node2(x_33, x_143, x_142, x_60); -x_145 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +x_141 = l_Lean_Syntax_node2(x_33, x_140, x_139, x_60); +x_142 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; lean_inc(x_54); lean_inc(x_59); -x_146 = l_Lean_addMacroScope(x_59, x_145, x_54); -x_147 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; +x_143 = l_Lean_addMacroScope(x_59, x_142, x_54); +x_144 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; lean_inc(x_33); -x_148 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_148, 0, x_33); -lean_ctor_set(x_148, 1, x_147); -lean_ctor_set(x_148, 2, x_146); -lean_ctor_set(x_148, 3, x_38); -x_149 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_148); -lean_inc(x_135); +x_145 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_145, 0, x_33); +lean_ctor_set(x_145, 1, x_144); +lean_ctor_set(x_145, 2, x_143); +lean_ctor_set(x_145, 3, x_38); +x_146 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_145); +lean_inc(x_132); lean_inc(x_33); -x_150 = l_Lean_Syntax_node3(x_33, x_149, x_144, x_135, x_148); -x_151 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +x_147 = l_Lean_Syntax_node3(x_33, x_146, x_141, x_132, x_145); +x_148 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; lean_inc(x_54); lean_inc(x_59); -x_152 = l_Lean_addMacroScope(x_59, x_151, x_54); -x_153 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_154 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +x_149 = l_Lean_addMacroScope(x_59, x_148, x_54); +x_150 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_151 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; lean_inc(x_33); -x_155 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_155, 0, x_33); -lean_ctor_set(x_155, 1, x_153); -lean_ctor_set(x_155, 2, x_152); -lean_ctor_set(x_155, 3, x_154); +x_152 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_152, 0, x_33); +lean_ctor_set(x_152, 1, x_150); +lean_ctor_set(x_152, 2, x_149); +lean_ctor_set(x_152, 3, x_151); lean_inc(x_60); lean_inc(x_33); -x_156 = l_Lean_Syntax_node2(x_33, x_143, x_155, x_60); -x_157 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +x_153 = l_Lean_Syntax_node2(x_33, x_140, x_152, x_60); +x_154 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; lean_inc(x_54); lean_inc(x_59); -x_158 = l_Lean_addMacroScope(x_59, x_157, x_54); -x_159 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; +x_155 = l_Lean_addMacroScope(x_59, x_154, x_54); +x_156 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; lean_inc(x_33); -x_160 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_160, 0, x_33); -lean_ctor_set(x_160, 1, x_159); -lean_ctor_set(x_160, 2, x_158); -lean_ctor_set(x_160, 3, x_38); -lean_inc(x_160); -lean_inc(x_135); +x_157 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_157, 0, x_33); +lean_ctor_set(x_157, 1, x_156); +lean_ctor_set(x_157, 2, x_155); +lean_ctor_set(x_157, 3, x_38); +lean_inc(x_157); +lean_inc(x_132); lean_inc(x_33); -x_161 = l_Lean_Syntax_node3(x_33, x_149, x_156, x_135, x_160); +x_158 = l_Lean_Syntax_node3(x_33, x_146, x_153, x_132, x_157); lean_inc(x_33); -x_162 = l_Lean_Syntax_node3(x_33, x_50, x_150, x_88, x_161); -x_163 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; +x_159 = l_Lean_Syntax_node3(x_33, x_50, x_147, x_86, x_158); +x_160 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; lean_inc(x_60); lean_inc(x_33); -x_164 = l_Lean_Syntax_node1(x_33, x_163, x_60); -x_165 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; +x_161 = l_Lean_Syntax_node1(x_33, x_160, x_60); +x_162 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; lean_inc(x_33); -x_166 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_166, 0, x_33); -lean_ctor_set(x_166, 1, x_165); -x_167 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; +x_163 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_163, 0, x_33); +lean_ctor_set(x_163, 1, x_162); +x_164 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; lean_inc_n(x_60, 2); lean_inc(x_33); -x_168 = l_Lean_Syntax_node6(x_33, x_167, x_137, x_60, x_162, x_164, x_60, x_166); -x_169 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +x_165 = l_Lean_Syntax_node6(x_33, x_164, x_134, x_60, x_159, x_161, x_60, x_163); +x_166 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; lean_inc_n(x_60, 2); lean_inc(x_33); -x_170 = l_Lean_Syntax_node2(x_33, x_169, x_60, x_60); -x_171 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; +x_167 = l_Lean_Syntax_node2(x_33, x_166, x_60, x_60); +x_168 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; lean_inc(x_54); lean_inc(x_59); -x_172 = l_Lean_addMacroScope(x_59, x_171, x_54); -x_173 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; +x_169 = l_Lean_addMacroScope(x_59, x_168, x_54); +x_170 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; lean_inc(x_33); -x_174 = lean_alloc_ctor(3, 4, 0); +x_171 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_171, 0, x_33); +lean_ctor_set(x_171, 1, x_170); +lean_ctor_set(x_171, 2, x_169); +lean_ctor_set(x_171, 3, x_38); +lean_inc(x_171); +lean_inc(x_33); +x_172 = l_Lean_Syntax_node1(x_33, x_50, x_171); +x_173 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; +lean_inc(x_33); +x_174 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_174, 0, x_33); lean_ctor_set(x_174, 1, x_173); -lean_ctor_set(x_174, 2, x_172); -lean_ctor_set(x_174, 3, x_38); +x_175 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; +lean_inc(x_54); +lean_inc(x_59); +x_176 = l_Lean_addMacroScope(x_59, x_175, x_54); +x_177 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; +lean_inc(x_33); +x_178 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_178, 0, x_33); +lean_ctor_set(x_178, 1, x_177); +lean_ctor_set(x_178, 2, x_176); +lean_ctor_set(x_178, 3, x_38); +x_179 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; +lean_inc(x_33); +x_180 = l_Lean_Syntax_node1(x_33, x_179, x_178); +lean_inc(x_33); +x_181 = l_Lean_Syntax_node1(x_33, x_50, x_128); +x_182 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +lean_inc(x_165); +lean_inc(x_132); +lean_inc(x_60); +lean_inc(x_33); +x_183 = l_Lean_Syntax_node5(x_33, x_182, x_180, x_60, x_181, x_132, x_165); +x_184 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +lean_inc(x_33); +x_185 = l_Lean_Syntax_node1(x_33, x_184, x_183); +x_186 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; +lean_inc(x_33); +x_187 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_187, 0, x_33); +lean_ctor_set(x_187, 1, x_186); +x_188 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; +lean_inc(x_60); +lean_inc(x_33); +x_189 = l_Lean_Syntax_node2(x_33, x_188, x_60, x_171); +lean_inc(x_33); +x_190 = l_Lean_Syntax_node1(x_33, x_50, x_189); +x_191 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; +lean_inc(x_33); +x_192 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_192, 0, x_33); +lean_ctor_set(x_192, 1, x_191); +x_193 = lean_array_size(x_25); +x_194 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_38, x_193, x_15, x_25); +x_195 = lean_array_size(x_194); +x_196 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_195, x_15, x_194); +x_197 = l_Array_append___rarg(x_48, x_196); +lean_dec(x_196); +lean_inc(x_33); +x_198 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_198, 0, x_33); +lean_ctor_set(x_198, 1, x_50); +lean_ctor_set(x_198, 2, x_197); +x_199 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; +lean_inc(x_33); +x_200 = l_Lean_Syntax_node1(x_33, x_199, x_198); +x_201 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; +lean_inc(x_192); +lean_inc_n(x_60, 2); +lean_inc(x_187); +lean_inc(x_33); +x_202 = l_Lean_Syntax_node6(x_33, x_201, x_187, x_60, x_60, x_190, x_192, x_200); +x_203 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; +lean_inc(x_60); +lean_inc(x_185); lean_inc(x_174); lean_inc(x_33); -x_175 = l_Lean_Syntax_node1(x_33, x_50, x_174); -x_176 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; -lean_inc(x_33); -x_177 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_177, 0, x_33); -lean_ctor_set(x_177, 1, x_176); -x_178 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; -lean_inc(x_54); -lean_inc(x_59); -x_179 = l_Lean_addMacroScope(x_59, x_178, x_54); -x_180 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; -lean_inc(x_33); -x_181 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_181, 0, x_33); -lean_ctor_set(x_181, 1, x_180); -lean_ctor_set(x_181, 2, x_179); -lean_ctor_set(x_181, 3, x_38); -x_182 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; -lean_inc(x_33); -x_183 = l_Lean_Syntax_node1(x_33, x_182, x_181); -lean_inc(x_33); -x_184 = l_Lean_Syntax_node1(x_33, x_50, x_131); -x_185 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; -lean_inc(x_168); -lean_inc(x_135); +x_204 = l_Lean_Syntax_node4(x_33, x_203, x_174, x_185, x_60, x_202); +x_205 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_132); lean_inc(x_60); lean_inc(x_33); -x_186 = l_Lean_Syntax_node5(x_33, x_185, x_183, x_60, x_184, x_135, x_168); -x_187 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +x_206 = l_Lean_Syntax_node5(x_33, x_205, x_145, x_172, x_60, x_132, x_204); +x_207 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; lean_inc(x_33); -x_188 = l_Lean_Syntax_node1(x_33, x_187, x_186); -x_189 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; -lean_inc(x_33); -x_190 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_190, 0, x_33); -lean_ctor_set(x_190, 1, x_189); -x_191 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; -lean_inc(x_60); -lean_inc(x_33); -x_192 = l_Lean_Syntax_node2(x_33, x_191, x_60, x_174); -lean_inc(x_33); -x_193 = l_Lean_Syntax_node1(x_33, x_50, x_192); -x_194 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; -lean_inc(x_33); -x_195 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_195, 0, x_33); -lean_ctor_set(x_195, 1, x_194); -x_196 = lean_array_size(x_25); -x_197 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_38, x_196, x_15, x_25); -x_198 = lean_array_size(x_197); -x_199 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_198, x_15, x_197); -x_200 = l_Array_append___rarg(x_48, x_199); -lean_dec(x_199); -lean_inc(x_33); -x_201 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_201, 0, x_33); -lean_ctor_set(x_201, 1, x_50); -lean_ctor_set(x_201, 2, x_200); -x_202 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; -lean_inc(x_33); -x_203 = l_Lean_Syntax_node1(x_33, x_202, x_201); -x_204 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; -lean_inc(x_195); -lean_inc_n(x_60, 2); -lean_inc(x_190); -lean_inc(x_33); -x_205 = l_Lean_Syntax_node6(x_33, x_204, x_190, x_60, x_60, x_193, x_195, x_203); -x_206 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; -lean_inc(x_60); -lean_inc(x_188); -lean_inc(x_177); -lean_inc(x_33); -x_207 = l_Lean_Syntax_node4(x_33, x_206, x_177, x_188, x_60, x_205); -x_208 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_135); -lean_inc(x_60); -lean_inc(x_33); -x_209 = l_Lean_Syntax_node5(x_33, x_208, x_148, x_175, x_60, x_135, x_207); -x_210 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_33); -x_211 = l_Lean_Syntax_node1(x_33, x_210, x_209); -x_212 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_170); +x_208 = l_Lean_Syntax_node1(x_33, x_207, x_206); +x_209 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_167); lean_inc_n(x_60, 2); lean_inc(x_33); -x_213 = l_Lean_Syntax_node4(x_33, x_212, x_60, x_60, x_211, x_170); -x_214 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +x_210 = l_Lean_Syntax_node4(x_33, x_209, x_60, x_60, x_208, x_167); +x_211 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; lean_inc(x_54); lean_inc(x_59); -x_215 = l_Lean_addMacroScope(x_59, x_214, x_54); +x_212 = l_Lean_addMacroScope(x_59, x_211, x_54); +x_213 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_33); +x_214 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_214, 0, x_33); +lean_ctor_set(x_214, 1, x_213); +lean_ctor_set(x_214, 2, x_212); +lean_ctor_set(x_214, 3, x_38); +lean_inc(x_33); +x_215 = l_Lean_Syntax_node1(x_33, x_50, x_214); x_216 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; lean_inc(x_33); -x_217 = lean_alloc_ctor(3, 4, 0); +x_217 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_217, 0, x_33); lean_ctor_set(x_217, 1, x_216); -lean_ctor_set(x_217, 2, x_215); -lean_ctor_set(x_217, 3, x_38); +x_218 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; lean_inc(x_33); -x_218 = l_Lean_Syntax_node1(x_33, x_50, x_217); -x_219 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_33); -x_220 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_220, 0, x_33); -lean_ctor_set(x_220, 1, x_219); -x_221 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; -lean_inc(x_33); -x_222 = l_Lean_Syntax_node2(x_33, x_221, x_177, x_188); -x_223 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +x_219 = l_Lean_Syntax_node2(x_33, x_218, x_174, x_185); +x_220 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; lean_inc(x_60); lean_inc(x_33); -x_224 = l_Lean_Syntax_node2(x_33, x_223, x_222, x_60); -x_225 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +x_221 = l_Lean_Syntax_node2(x_33, x_220, x_219, x_60); +x_222 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; lean_inc(x_33); -x_226 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_226, 0, x_33); -lean_ctor_set(x_226, 1, x_225); -x_227 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; +x_223 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_223, 0, x_33); +lean_ctor_set(x_223, 1, x_222); +x_224 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; lean_inc(x_54); lean_inc(x_59); -x_228 = l_Lean_addMacroScope(x_59, x_227, x_54); -x_229 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; +x_225 = l_Lean_addMacroScope(x_59, x_224, x_54); +x_226 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; lean_inc(x_33); -x_230 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_230, 0, x_33); -lean_ctor_set(x_230, 1, x_229); -lean_ctor_set(x_230, 2, x_228); -lean_ctor_set(x_230, 3, x_38); +x_227 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_227, 0, x_33); +lean_ctor_set(x_227, 1, x_226); +lean_ctor_set(x_227, 2, x_225); +lean_ctor_set(x_227, 3, x_38); lean_inc(x_33); -x_231 = l_Lean_Syntax_node2(x_33, x_130, x_122, x_67); +x_228 = l_Lean_Syntax_node2(x_33, x_127, x_119, x_67); lean_inc(x_33); -x_232 = l_Lean_Syntax_node1(x_33, x_50, x_231); -x_233 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +x_229 = l_Lean_Syntax_node1(x_33, x_50, x_228); +x_230 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; lean_inc(x_33); -x_234 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_234, 0, x_33); -lean_ctor_set(x_234, 1, x_233); -x_235 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; +x_231 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_231, 0, x_33); +lean_ctor_set(x_231, 1, x_230); +x_232 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; lean_inc(x_54); lean_inc(x_59); -x_236 = l_Lean_addMacroScope(x_59, x_235, x_54); -x_237 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_238 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +x_233 = l_Lean_addMacroScope(x_59, x_232, x_54); +x_234 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_235 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; lean_inc(x_33); -x_239 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_239, 0, x_33); -lean_ctor_set(x_239, 1, x_237); -lean_ctor_set(x_239, 2, x_236); -lean_ctor_set(x_239, 3, x_238); -lean_inc(x_218); +x_236 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_236, 0, x_33); +lean_ctor_set(x_236, 1, x_234); +lean_ctor_set(x_236, 2, x_233); +lean_ctor_set(x_236, 3, x_235); +lean_inc(x_215); lean_inc(x_33); -x_240 = l_Lean_Syntax_node2(x_33, x_52, x_239, x_218); -x_241 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_237 = l_Lean_Syntax_node2(x_33, x_52, x_236, x_215); +x_238 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; lean_inc(x_33); -x_242 = l_Lean_Syntax_node1(x_33, x_241, x_240); -x_243 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_230); +x_239 = l_Lean_Syntax_node1(x_33, x_238, x_237); +x_240 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_227); lean_inc(x_33); -x_244 = l_Lean_Syntax_node4(x_33, x_243, x_230, x_232, x_234, x_242); -x_245 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; +x_241 = l_Lean_Syntax_node4(x_33, x_240, x_227, x_229, x_231, x_239); +x_242 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; lean_inc(x_60); lean_inc(x_33); -x_246 = l_Lean_Syntax_node3(x_33, x_245, x_226, x_60, x_244); +x_243 = l_Lean_Syntax_node3(x_33, x_242, x_223, x_60, x_241); lean_inc(x_60); lean_inc(x_33); -x_247 = l_Lean_Syntax_node2(x_33, x_223, x_246, x_60); -x_248 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; -x_249 = l_Lean_addMacroScope(x_59, x_248, x_54); -x_250 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; -x_251 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; +x_244 = l_Lean_Syntax_node2(x_33, x_220, x_243, x_60); +x_245 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; +x_246 = l_Lean_addMacroScope(x_59, x_245, x_54); +x_247 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; +x_248 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; lean_inc(x_33); -x_252 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_252, 0, x_33); -lean_ctor_set(x_252, 1, x_250); -lean_ctor_set(x_252, 2, x_249); -lean_ctor_set(x_252, 3, x_251); -x_253 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; +x_249 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_249, 0, x_33); +lean_ctor_set(x_249, 1, x_247); +lean_ctor_set(x_249, 2, x_246); +lean_ctor_set(x_249, 3, x_248); +x_250 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; lean_inc(x_33); -x_254 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_254, 0, x_33); -lean_ctor_set(x_254, 1, x_253); +x_251 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_251, 0, x_33); +lean_ctor_set(x_251, 1, x_250); lean_inc(x_60); lean_inc(x_33); -x_255 = l_Lean_Syntax_node2(x_33, x_191, x_60, x_230); +x_252 = l_Lean_Syntax_node2(x_33, x_188, x_60, x_227); lean_inc(x_33); -x_256 = l_Lean_Syntax_node1(x_33, x_50, x_255); -x_257 = lean_array_size(x_26); -x_258 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_38, x_257, x_15, x_26); -x_259 = lean_array_size(x_258); -x_260 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_259, x_15, x_258); -x_261 = l_Array_append___rarg(x_48, x_260); -lean_dec(x_260); +x_253 = l_Lean_Syntax_node1(x_33, x_50, x_252); +x_254 = lean_array_size(x_26); +x_255 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_38, x_254, x_15, x_26); +x_256 = lean_array_size(x_255); +x_257 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_256, x_15, x_255); +x_258 = l_Array_append___rarg(x_48, x_257); +lean_dec(x_257); lean_inc(x_33); -x_262 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_262, 0, x_33); -lean_ctor_set(x_262, 1, x_50); -lean_ctor_set(x_262, 2, x_261); +x_259 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_259, 0, x_33); +lean_ctor_set(x_259, 1, x_50); +lean_ctor_set(x_259, 2, x_258); lean_inc(x_33); -x_263 = l_Lean_Syntax_node1(x_33, x_202, x_262); +x_260 = l_Lean_Syntax_node1(x_33, x_199, x_259); lean_inc_n(x_60, 2); lean_inc(x_33); -x_264 = l_Lean_Syntax_node6(x_33, x_204, x_190, x_60, x_60, x_256, x_195, x_263); -x_265 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; +x_261 = l_Lean_Syntax_node6(x_33, x_201, x_187, x_60, x_60, x_253, x_192, x_260); +x_262 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; lean_inc(x_33); -x_266 = l_Lean_Syntax_node3(x_33, x_265, x_252, x_254, x_264); +x_263 = l_Lean_Syntax_node3(x_33, x_262, x_249, x_251, x_261); lean_inc(x_33); -x_267 = l_Lean_Syntax_node1(x_33, x_241, x_266); +x_264 = l_Lean_Syntax_node1(x_33, x_238, x_263); lean_inc(x_60); lean_inc(x_33); -x_268 = l_Lean_Syntax_node2(x_33, x_223, x_267, x_60); +x_265 = l_Lean_Syntax_node2(x_33, x_220, x_264, x_60); lean_inc(x_33); -x_269 = l_Lean_Syntax_node3(x_33, x_50, x_224, x_247, x_268); -x_270 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +x_266 = l_Lean_Syntax_node3(x_33, x_50, x_221, x_244, x_265); +x_267 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; lean_inc(x_33); -x_271 = l_Lean_Syntax_node1(x_33, x_270, x_269); -x_272 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +x_268 = l_Lean_Syntax_node1(x_33, x_267, x_266); +x_269 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; lean_inc(x_33); -x_273 = l_Lean_Syntax_node2(x_33, x_272, x_220, x_271); -lean_inc(x_135); +x_270 = l_Lean_Syntax_node2(x_33, x_269, x_217, x_268); +lean_inc(x_132); lean_inc(x_60); lean_inc(x_33); -x_274 = l_Lean_Syntax_node5(x_33, x_208, x_160, x_218, x_60, x_135, x_273); +x_271 = l_Lean_Syntax_node5(x_33, x_205, x_157, x_215, x_60, x_132, x_270); lean_inc(x_33); -x_275 = l_Lean_Syntax_node1(x_33, x_210, x_274); -lean_inc(x_170); +x_272 = l_Lean_Syntax_node1(x_33, x_207, x_271); +lean_inc(x_167); lean_inc_n(x_60, 2); lean_inc(x_33); -x_276 = l_Lean_Syntax_node4(x_33, x_212, x_60, x_60, x_275, x_170); +x_273 = l_Lean_Syntax_node4(x_33, x_209, x_60, x_60, x_272, x_167); lean_inc(x_60); lean_inc(x_33); -x_277 = l_Lean_Syntax_node3(x_33, x_50, x_213, x_60, x_276); -x_278 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +x_274 = l_Lean_Syntax_node3(x_33, x_50, x_210, x_60, x_273); +x_275 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; lean_inc(x_33); -x_279 = l_Lean_Syntax_node2(x_33, x_278, x_19, x_277); +x_276 = l_Lean_Syntax_node2(x_33, x_275, x_19, x_274); lean_inc(x_33); -x_280 = l_Lean_Syntax_node1(x_33, x_50, x_279); -x_281 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +x_277 = l_Lean_Syntax_node1(x_33, x_50, x_276); +x_278 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; lean_inc(x_33); -x_282 = l_Lean_Syntax_node4(x_33, x_281, x_135, x_168, x_170, x_280); -x_283 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +x_279 = l_Lean_Syntax_node4(x_33, x_278, x_132, x_165, x_167, x_277); +x_280 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; lean_inc(x_60); lean_inc(x_33); -x_284 = l_Lean_Syntax_node6(x_33, x_283, x_118, x_120, x_60, x_60, x_133, x_282); +x_281 = l_Lean_Syntax_node6(x_33, x_280, x_115, x_117, x_60, x_60, x_130, x_279); lean_inc(x_33); -x_285 = l_Lean_Syntax_node2(x_33, x_101, x_116, x_284); -x_286 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +x_282 = l_Lean_Syntax_node2(x_33, x_98, x_113, x_281); +x_283 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; lean_inc(x_33); -x_287 = l_Lean_Syntax_node3(x_33, x_286, x_108, x_110, x_285); -x_288 = l_Lean_Syntax_node2(x_33, x_50, x_102, x_287); -lean_ctor_set(x_55, 0, x_288); +x_284 = l_Lean_Syntax_node3(x_33, x_283, x_105, x_107, x_282); +x_285 = l_Lean_Syntax_node2(x_33, x_50, x_99, x_284); +lean_ctor_set(x_55, 0, x_285); return x_55; } else { -lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; lean_object* x_304; lean_object* x_305; lean_object* x_306; size_t x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; lean_object* x_423; lean_object* x_424; lean_object* x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; size_t x_429; lean_object* x_430; size_t x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; lean_object* x_484; lean_object* x_485; lean_object* x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; size_t x_490; lean_object* x_491; size_t x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; -x_289 = lean_ctor_get(x_55, 0); -x_290 = lean_ctor_get(x_55, 1); -lean_inc(x_290); -lean_inc(x_289); +lean_object* x_286; lean_object* x_287; lean_object* x_288; lean_object* x_289; lean_object* x_290; lean_object* x_291; lean_object* x_292; lean_object* x_293; lean_object* x_294; lean_object* x_295; lean_object* x_296; lean_object* x_297; lean_object* x_298; lean_object* x_299; lean_object* x_300; lean_object* x_301; lean_object* x_302; lean_object* x_303; size_t x_304; lean_object* x_305; lean_object* x_306; lean_object* x_307; lean_object* x_308; lean_object* x_309; lean_object* x_310; lean_object* x_311; lean_object* x_312; lean_object* x_313; lean_object* x_314; lean_object* x_315; lean_object* x_316; lean_object* x_317; lean_object* x_318; lean_object* x_319; lean_object* x_320; lean_object* x_321; lean_object* x_322; lean_object* x_323; lean_object* x_324; lean_object* x_325; lean_object* x_326; lean_object* x_327; lean_object* x_328; lean_object* x_329; lean_object* x_330; lean_object* x_331; lean_object* x_332; lean_object* x_333; lean_object* x_334; lean_object* x_335; lean_object* x_336; lean_object* x_337; lean_object* x_338; lean_object* x_339; lean_object* x_340; lean_object* x_341; lean_object* x_342; lean_object* x_343; lean_object* x_344; lean_object* x_345; lean_object* x_346; lean_object* x_347; lean_object* x_348; lean_object* x_349; lean_object* x_350; lean_object* x_351; lean_object* x_352; lean_object* x_353; lean_object* x_354; lean_object* x_355; lean_object* x_356; lean_object* x_357; lean_object* x_358; lean_object* x_359; lean_object* x_360; lean_object* x_361; lean_object* x_362; lean_object* x_363; lean_object* x_364; lean_object* x_365; lean_object* x_366; lean_object* x_367; lean_object* x_368; lean_object* x_369; lean_object* x_370; lean_object* x_371; lean_object* x_372; lean_object* x_373; lean_object* x_374; lean_object* x_375; lean_object* x_376; lean_object* x_377; lean_object* x_378; lean_object* x_379; lean_object* x_380; lean_object* x_381; lean_object* x_382; lean_object* x_383; lean_object* x_384; lean_object* x_385; lean_object* x_386; lean_object* x_387; lean_object* x_388; lean_object* x_389; lean_object* x_390; lean_object* x_391; lean_object* x_392; lean_object* x_393; lean_object* x_394; lean_object* x_395; lean_object* x_396; lean_object* x_397; lean_object* x_398; lean_object* x_399; lean_object* x_400; lean_object* x_401; lean_object* x_402; lean_object* x_403; lean_object* x_404; lean_object* x_405; lean_object* x_406; lean_object* x_407; lean_object* x_408; lean_object* x_409; lean_object* x_410; lean_object* x_411; lean_object* x_412; lean_object* x_413; lean_object* x_414; lean_object* x_415; lean_object* x_416; lean_object* x_417; lean_object* x_418; lean_object* x_419; lean_object* x_420; lean_object* x_421; lean_object* x_422; size_t x_423; lean_object* x_424; size_t x_425; lean_object* x_426; lean_object* x_427; lean_object* x_428; lean_object* x_429; lean_object* x_430; lean_object* x_431; lean_object* x_432; lean_object* x_433; lean_object* x_434; lean_object* x_435; lean_object* x_436; lean_object* x_437; lean_object* x_438; lean_object* x_439; lean_object* x_440; lean_object* x_441; lean_object* x_442; lean_object* x_443; lean_object* x_444; lean_object* x_445; lean_object* x_446; lean_object* x_447; lean_object* x_448; lean_object* x_449; lean_object* x_450; lean_object* x_451; lean_object* x_452; lean_object* x_453; lean_object* x_454; lean_object* x_455; lean_object* x_456; lean_object* x_457; lean_object* x_458; lean_object* x_459; lean_object* x_460; lean_object* x_461; lean_object* x_462; lean_object* x_463; lean_object* x_464; lean_object* x_465; lean_object* x_466; lean_object* x_467; lean_object* x_468; lean_object* x_469; lean_object* x_470; lean_object* x_471; lean_object* x_472; lean_object* x_473; lean_object* x_474; lean_object* x_475; lean_object* x_476; lean_object* x_477; lean_object* x_478; lean_object* x_479; lean_object* x_480; lean_object* x_481; lean_object* x_482; lean_object* x_483; size_t x_484; lean_object* x_485; size_t x_486; lean_object* x_487; lean_object* x_488; lean_object* x_489; lean_object* x_490; lean_object* x_491; lean_object* x_492; lean_object* x_493; lean_object* x_494; lean_object* x_495; lean_object* x_496; lean_object* x_497; lean_object* x_498; lean_object* x_499; lean_object* x_500; lean_object* x_501; lean_object* x_502; lean_object* x_503; lean_object* x_504; lean_object* x_505; lean_object* x_506; lean_object* x_507; lean_object* x_508; lean_object* x_509; lean_object* x_510; lean_object* x_511; lean_object* x_512; lean_object* x_513; lean_object* x_514; lean_object* x_515; lean_object* x_516; +x_286 = lean_ctor_get(x_55, 0); +x_287 = lean_ctor_get(x_55, 1); +lean_inc(x_287); +lean_inc(x_286); lean_dec(x_55); -x_291 = lean_ctor_get(x_289, 0); -lean_inc(x_291); -lean_dec(x_289); -x_292 = lean_environment_main_module(x_291); +x_288 = lean_ctor_get(x_286, 0); +lean_inc(x_288); +lean_dec(x_286); +x_289 = lean_environment_main_module(x_288); lean_inc(x_33); -x_293 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_293, 0, x_33); -lean_ctor_set(x_293, 1, x_50); -lean_ctor_set(x_293, 2, x_48); -x_294 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_293, 6); +x_290 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_290, 0, x_33); +lean_ctor_set(x_290, 1, x_50); +lean_ctor_set(x_290, 2, x_48); +x_291 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_290, 6); lean_inc(x_33); -x_295 = l_Lean_Syntax_node6(x_33, x_294, x_293, x_293, x_293, x_293, x_293, x_293); -x_296 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; +x_292 = l_Lean_Syntax_node6(x_33, x_291, x_290, x_290, x_290, x_290, x_290, x_290); +x_293 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; lean_inc(x_33); lean_ctor_set_tag(x_23, 2); -lean_ctor_set(x_23, 1, x_296); +lean_ctor_set(x_23, 1, x_293); lean_ctor_set(x_23, 0, x_33); -x_297 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +x_294 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; lean_inc(x_54); -lean_inc(x_292); -x_298 = l_Lean_addMacroScope(x_292, x_297, x_54); -x_299 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_289); +x_295 = l_Lean_addMacroScope(x_289, x_294, x_54); +x_296 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; lean_inc(x_33); -x_300 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_300, 0, x_33); -lean_ctor_set(x_300, 1, x_299); -lean_ctor_set(x_300, 2, x_298); -lean_ctor_set(x_300, 3, x_38); -x_301 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_293); -lean_inc(x_300); +x_297 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_297, 0, x_33); +lean_ctor_set(x_297, 1, x_296); +lean_ctor_set(x_297, 2, x_295); +lean_ctor_set(x_297, 3, x_38); +x_298 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_290); +lean_inc(x_297); lean_inc(x_33); -x_302 = l_Lean_Syntax_node2(x_33, x_301, x_300, x_293); -x_303 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; -lean_inc_n(x_293, 2); +x_299 = l_Lean_Syntax_node2(x_33, x_298, x_297, x_290); +x_300 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; +lean_inc_n(x_290, 2); lean_inc(x_33); -x_304 = l_Lean_Syntax_node2(x_33, x_303, x_293, x_293); -x_305 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +x_301 = l_Lean_Syntax_node2(x_33, x_300, x_290, x_290); +x_302 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; lean_inc(x_33); lean_ctor_set_tag(x_19, 2); -lean_ctor_set(x_19, 1, x_305); +lean_ctor_set(x_19, 1, x_302); lean_ctor_set(x_19, 0, x_33); lean_inc(x_19); lean_inc(x_33); -x_306 = l_Lean_Syntax_node1(x_33, x_50, x_19); -x_307 = lean_array_size(x_21); -x_308 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_307, x_15, x_21); -x_309 = l_Array_append___rarg(x_48, x_308); -lean_dec(x_308); +x_303 = l_Lean_Syntax_node1(x_33, x_50, x_19); +x_304 = lean_array_size(x_21); +x_305 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_304, x_15, x_21); +x_306 = l_Array_append___rarg(x_48, x_305); +lean_dec(x_305); lean_inc(x_33); -x_310 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_310, 0, x_33); -lean_ctor_set(x_310, 1, x_50); -lean_ctor_set(x_310, 2, x_309); -x_311 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +x_307 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_307, 0, x_33); +lean_ctor_set(x_307, 1, x_50); +lean_ctor_set(x_307, 2, x_306); +x_308 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; lean_inc(x_33); -x_312 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_312, 0, x_33); -lean_ctor_set(x_312, 1, x_311); -x_313 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +x_309 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_309, 0, x_33); +lean_ctor_set(x_309, 1, x_308); +x_310 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; lean_inc(x_54); -lean_inc(x_292); -x_314 = l_Lean_addMacroScope(x_292, x_313, x_54); -x_315 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_316 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +lean_inc(x_289); +x_311 = l_Lean_addMacroScope(x_289, x_310, x_54); +x_312 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_313 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; lean_inc(x_33); -x_317 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_317, 0, x_33); -lean_ctor_set(x_317, 1, x_315); -lean_ctor_set(x_317, 2, x_314); -lean_ctor_set(x_317, 3, x_316); -x_318 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_293); +x_314 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_314, 0, x_33); +lean_ctor_set(x_314, 1, x_312); +lean_ctor_set(x_314, 2, x_311); +lean_ctor_set(x_314, 3, x_313); +x_315 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; lean_inc(x_33); -x_319 = l_Lean_Syntax_node2(x_33, x_318, x_317, x_293); -x_320 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_316 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_316, 0, x_33); +lean_ctor_set(x_316, 1, x_315); +x_317 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_54); +lean_inc(x_289); +x_318 = l_Lean_addMacroScope(x_289, x_317, x_54); +x_319 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_320 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; lean_inc(x_33); -x_321 = lean_alloc_ctor(2, 2, 0); +x_321 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_321, 0, x_33); -lean_ctor_set(x_321, 1, x_320); -x_322 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_54); -lean_inc(x_292); -x_323 = l_Lean_addMacroScope(x_292, x_322, x_54); -x_324 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_325 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_ctor_set(x_321, 1, x_319); +lean_ctor_set(x_321, 2, x_318); +lean_ctor_set(x_321, 3, x_320); +lean_inc(x_316); lean_inc(x_33); -x_326 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_326, 0, x_33); -lean_ctor_set(x_326, 1, x_324); -lean_ctor_set(x_326, 2, x_323); -lean_ctor_set(x_326, 3, x_325); -lean_inc(x_293); +x_322 = l_Lean_Syntax_node3(x_33, x_50, x_314, x_316, x_321); lean_inc(x_33); -x_327 = l_Lean_Syntax_node2(x_33, x_318, x_326, x_293); -lean_inc(x_321); +x_323 = l_Lean_Syntax_node2(x_33, x_50, x_309, x_322); +x_324 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; lean_inc(x_33); -x_328 = l_Lean_Syntax_node3(x_33, x_50, x_319, x_321, x_327); +x_325 = l_Lean_Syntax_node1(x_33, x_324, x_323); +x_326 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; +lean_inc(x_290); lean_inc(x_33); -x_329 = l_Lean_Syntax_node2(x_33, x_50, x_312, x_328); -x_330 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +x_327 = l_Lean_Syntax_node7(x_33, x_326, x_23, x_299, x_301, x_303, x_307, x_290, x_325); +x_328 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; lean_inc(x_33); -x_331 = l_Lean_Syntax_node1(x_33, x_330, x_329); -x_332 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; -lean_inc(x_293); +x_329 = l_Lean_Syntax_node2(x_33, x_328, x_292, x_327); +x_330 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; lean_inc(x_33); -x_333 = l_Lean_Syntax_node7(x_33, x_332, x_23, x_302, x_304, x_306, x_310, x_293, x_331); -x_334 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +x_331 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_331, 0, x_33); +lean_ctor_set(x_331, 1, x_330); +x_332 = l_Array_append___rarg(x_48, x_3); lean_inc(x_33); -x_335 = l_Lean_Syntax_node2(x_33, x_334, x_295, x_333); -x_336 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +x_333 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_333, 0, x_33); +lean_ctor_set(x_333, 1, x_50); +lean_ctor_set(x_333, 2, x_332); +x_334 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_33); +x_335 = l_Lean_Syntax_node2(x_33, x_334, x_331, x_333); +x_336 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; lean_inc(x_33); x_337 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_337, 0, x_33); lean_ctor_set(x_337, 1, x_336); -x_338 = l_Array_append___rarg(x_48, x_3); +x_338 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; lean_inc(x_33); -x_339 = lean_alloc_ctor(1, 3, 0); +x_339 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_339, 0, x_33); -lean_ctor_set(x_339, 1, x_50); -lean_ctor_set(x_339, 2, x_338); -x_340 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_ctor_set(x_339, 1, x_338); +x_340 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; lean_inc(x_33); -x_341 = l_Lean_Syntax_node2(x_33, x_340, x_337, x_339); -x_342 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +x_341 = l_Lean_Syntax_node1(x_33, x_340, x_339); lean_inc(x_33); -x_343 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_343, 0, x_33); -lean_ctor_set(x_343, 1, x_342); -x_344 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; +x_342 = l_Lean_Syntax_node1(x_33, x_50, x_341); +lean_inc_n(x_290, 5); lean_inc(x_33); -x_345 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_345, 0, x_33); -lean_ctor_set(x_345, 1, x_344); -x_346 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; +x_343 = l_Lean_Syntax_node6(x_33, x_291, x_290, x_290, x_290, x_290, x_290, x_342); +x_344 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_290); lean_inc(x_33); -x_347 = l_Lean_Syntax_node1(x_33, x_346, x_345); +x_345 = l_Lean_Syntax_node1(x_33, x_344, x_290); +x_346 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; lean_inc(x_33); -x_348 = l_Lean_Syntax_node1(x_33, x_50, x_347); -lean_inc_n(x_293, 5); +x_347 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_347, 0, x_33); +lean_ctor_set(x_347, 1, x_346); +x_348 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; lean_inc(x_33); -x_349 = l_Lean_Syntax_node6(x_33, x_294, x_293, x_293, x_293, x_293, x_293, x_348); -x_350 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_293); -lean_inc(x_33); -x_351 = l_Lean_Syntax_node1(x_33, x_350, x_293); -x_352 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_33); -x_353 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_353, 0, x_33); -lean_ctor_set(x_353, 1, x_352); -x_354 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_33); -x_355 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_355, 0, x_33); -lean_ctor_set(x_355, 1, x_354); -x_356 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_349 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_349, 0, x_33); +lean_ctor_set(x_349, 1, x_348); +x_350 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; lean_inc(x_54); -lean_inc(x_292); -x_357 = l_Lean_addMacroScope(x_292, x_356, x_54); -x_358 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_359 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_289); +x_351 = l_Lean_addMacroScope(x_289, x_350, x_54); +x_352 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_353 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; lean_inc(x_33); -x_360 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_360, 0, x_33); -lean_ctor_set(x_360, 1, x_358); -lean_ctor_set(x_360, 2, x_357); -lean_ctor_set(x_360, 3, x_359); +x_354 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_354, 0, x_33); +lean_ctor_set(x_354, 1, x_352); +lean_ctor_set(x_354, 2, x_351); +lean_ctor_set(x_354, 3, x_353); lean_inc(x_33); -x_361 = l_Lean_Syntax_node1(x_33, x_50, x_53); +x_355 = l_Lean_Syntax_node1(x_33, x_50, x_53); lean_inc(x_33); -x_362 = l_Lean_Syntax_node2(x_33, x_52, x_360, x_361); -x_363 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_355); +x_356 = l_Lean_Syntax_node2(x_33, x_52, x_354, x_355); +x_357 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_349); lean_inc(x_33); -x_364 = l_Lean_Syntax_node2(x_33, x_363, x_355, x_362); -x_365 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_364); -lean_inc(x_293); +x_358 = l_Lean_Syntax_node2(x_33, x_357, x_349, x_356); +x_359 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +lean_inc(x_358); +lean_inc(x_290); lean_inc(x_33); -x_366 = l_Lean_Syntax_node2(x_33, x_365, x_293, x_364); -x_367 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +x_360 = l_Lean_Syntax_node2(x_33, x_359, x_290, x_358); +x_361 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; lean_inc(x_33); -x_368 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_368, 0, x_33); -lean_ctor_set(x_368, 1, x_367); -x_369 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +x_362 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_362, 0, x_33); +lean_ctor_set(x_362, 1, x_361); +x_363 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; lean_inc(x_33); -x_370 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_370, 0, x_33); -lean_ctor_set(x_370, 1, x_369); -x_371 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_364 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_364, 0, x_33); +lean_ctor_set(x_364, 1, x_363); +x_365 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; lean_inc(x_54); -lean_inc(x_292); -x_372 = l_Lean_addMacroScope(x_292, x_371, x_54); -x_373 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_374 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_289); +x_366 = l_Lean_addMacroScope(x_289, x_365, x_54); +x_367 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_368 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_33); +x_369 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_369, 0, x_33); +lean_ctor_set(x_369, 1, x_367); +lean_ctor_set(x_369, 2, x_366); +lean_ctor_set(x_369, 3, x_368); +x_370 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_290); +lean_inc(x_33); +x_371 = l_Lean_Syntax_node2(x_33, x_370, x_369, x_290); +x_372 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_54); +lean_inc(x_289); +x_373 = l_Lean_addMacroScope(x_289, x_372, x_54); +x_374 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; lean_inc(x_33); x_375 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_375, 0, x_33); -lean_ctor_set(x_375, 1, x_373); -lean_ctor_set(x_375, 2, x_372); -lean_ctor_set(x_375, 3, x_374); -x_376 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_293); +lean_ctor_set(x_375, 1, x_374); +lean_ctor_set(x_375, 2, x_373); +lean_ctor_set(x_375, 3, x_38); +x_376 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_375); +lean_inc(x_362); lean_inc(x_33); -x_377 = l_Lean_Syntax_node2(x_33, x_376, x_375, x_293); -x_378 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +x_377 = l_Lean_Syntax_node3(x_33, x_376, x_371, x_362, x_375); +x_378 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; lean_inc(x_54); -lean_inc(x_292); -x_379 = l_Lean_addMacroScope(x_292, x_378, x_54); -x_380 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; +lean_inc(x_289); +x_379 = l_Lean_addMacroScope(x_289, x_378, x_54); +x_380 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_381 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; lean_inc(x_33); -x_381 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_381, 0, x_33); -lean_ctor_set(x_381, 1, x_380); -lean_ctor_set(x_381, 2, x_379); -lean_ctor_set(x_381, 3, x_38); -x_382 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_381); -lean_inc(x_368); +x_382 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_382, 0, x_33); +lean_ctor_set(x_382, 1, x_380); +lean_ctor_set(x_382, 2, x_379); +lean_ctor_set(x_382, 3, x_381); +lean_inc(x_290); lean_inc(x_33); -x_383 = l_Lean_Syntax_node3(x_33, x_382, x_377, x_368, x_381); -x_384 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +x_383 = l_Lean_Syntax_node2(x_33, x_370, x_382, x_290); +x_384 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; lean_inc(x_54); -lean_inc(x_292); -x_385 = l_Lean_addMacroScope(x_292, x_384, x_54); -x_386 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_387 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_289); +x_385 = l_Lean_addMacroScope(x_289, x_384, x_54); +x_386 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; lean_inc(x_33); -x_388 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_388, 0, x_33); -lean_ctor_set(x_388, 1, x_386); -lean_ctor_set(x_388, 2, x_385); -lean_ctor_set(x_388, 3, x_387); -lean_inc(x_293); +x_387 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_387, 0, x_33); +lean_ctor_set(x_387, 1, x_386); +lean_ctor_set(x_387, 2, x_385); +lean_ctor_set(x_387, 3, x_38); +lean_inc(x_387); +lean_inc(x_362); lean_inc(x_33); -x_389 = l_Lean_Syntax_node2(x_33, x_376, x_388, x_293); +x_388 = l_Lean_Syntax_node3(x_33, x_376, x_383, x_362, x_387); +lean_inc(x_33); +x_389 = l_Lean_Syntax_node3(x_33, x_50, x_377, x_316, x_388); x_390 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; -lean_inc(x_54); -lean_inc(x_292); -x_391 = l_Lean_addMacroScope(x_292, x_390, x_54); -x_392 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; +lean_inc(x_290); lean_inc(x_33); -x_393 = lean_alloc_ctor(3, 4, 0); +x_391 = l_Lean_Syntax_node1(x_33, x_390, x_290); +x_392 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_33); +x_393 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_393, 0, x_33); lean_ctor_set(x_393, 1, x_392); -lean_ctor_set(x_393, 2, x_391); -lean_ctor_set(x_393, 3, x_38); -lean_inc(x_393); -lean_inc(x_368); +x_394 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc_n(x_290, 2); lean_inc(x_33); -x_394 = l_Lean_Syntax_node3(x_33, x_382, x_389, x_368, x_393); +x_395 = l_Lean_Syntax_node6(x_33, x_394, x_364, x_290, x_389, x_391, x_290, x_393); +x_396 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_290, 2); lean_inc(x_33); -x_395 = l_Lean_Syntax_node3(x_33, x_50, x_383, x_321, x_394); -x_396 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_293); -lean_inc(x_33); -x_397 = l_Lean_Syntax_node1(x_33, x_396, x_293); -x_398 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_33); -x_399 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_399, 0, x_33); -lean_ctor_set(x_399, 1, x_398); -x_400 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc_n(x_293, 2); -lean_inc(x_33); -x_401 = l_Lean_Syntax_node6(x_33, x_400, x_370, x_293, x_395, x_397, x_293, x_399); -x_402 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_293, 2); -lean_inc(x_33); -x_403 = l_Lean_Syntax_node2(x_33, x_402, x_293, x_293); -x_404 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; +x_397 = l_Lean_Syntax_node2(x_33, x_396, x_290, x_290); +x_398 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; lean_inc(x_54); -lean_inc(x_292); -x_405 = l_Lean_addMacroScope(x_292, x_404, x_54); -x_406 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; +lean_inc(x_289); +x_399 = l_Lean_addMacroScope(x_289, x_398, x_54); +x_400 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; lean_inc(x_33); -x_407 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_407, 0, x_33); -lean_ctor_set(x_407, 1, x_406); -lean_ctor_set(x_407, 2, x_405); -lean_ctor_set(x_407, 3, x_38); -lean_inc(x_407); -lean_inc(x_33); -x_408 = l_Lean_Syntax_node1(x_33, x_50, x_407); -x_409 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; -lean_inc(x_33); -x_410 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_410, 0, x_33); -lean_ctor_set(x_410, 1, x_409); -x_411 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; -lean_inc(x_54); -lean_inc(x_292); -x_412 = l_Lean_addMacroScope(x_292, x_411, x_54); -x_413 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; -lean_inc(x_33); -x_414 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_414, 0, x_33); -lean_ctor_set(x_414, 1, x_413); -lean_ctor_set(x_414, 2, x_412); -lean_ctor_set(x_414, 3, x_38); -x_415 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; -lean_inc(x_33); -x_416 = l_Lean_Syntax_node1(x_33, x_415, x_414); -lean_inc(x_33); -x_417 = l_Lean_Syntax_node1(x_33, x_50, x_364); -x_418 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +x_401 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_401, 0, x_33); +lean_ctor_set(x_401, 1, x_400); +lean_ctor_set(x_401, 2, x_399); +lean_ctor_set(x_401, 3, x_38); lean_inc(x_401); -lean_inc(x_368); -lean_inc(x_293); lean_inc(x_33); -x_419 = l_Lean_Syntax_node5(x_33, x_418, x_416, x_293, x_417, x_368, x_401); -x_420 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +x_402 = l_Lean_Syntax_node1(x_33, x_50, x_401); +x_403 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; lean_inc(x_33); -x_421 = l_Lean_Syntax_node1(x_33, x_420, x_419); -x_422 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; -lean_inc(x_33); -x_423 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_423, 0, x_33); -lean_ctor_set(x_423, 1, x_422); -x_424 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; -lean_inc(x_293); -lean_inc(x_33); -x_425 = l_Lean_Syntax_node2(x_33, x_424, x_293, x_407); -lean_inc(x_33); -x_426 = l_Lean_Syntax_node1(x_33, x_50, x_425); -x_427 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; -lean_inc(x_33); -x_428 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_428, 0, x_33); -lean_ctor_set(x_428, 1, x_427); -x_429 = lean_array_size(x_25); -x_430 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_38, x_429, x_15, x_25); -x_431 = lean_array_size(x_430); -x_432 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_431, x_15, x_430); -x_433 = l_Array_append___rarg(x_48, x_432); -lean_dec(x_432); -lean_inc(x_33); -x_434 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_434, 0, x_33); -lean_ctor_set(x_434, 1, x_50); -lean_ctor_set(x_434, 2, x_433); -x_435 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; -lean_inc(x_33); -x_436 = l_Lean_Syntax_node1(x_33, x_435, x_434); -x_437 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; -lean_inc(x_428); -lean_inc_n(x_293, 2); -lean_inc(x_423); -lean_inc(x_33); -x_438 = l_Lean_Syntax_node6(x_33, x_437, x_423, x_293, x_293, x_426, x_428, x_436); -x_439 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; -lean_inc(x_293); -lean_inc(x_421); -lean_inc(x_410); -lean_inc(x_33); -x_440 = l_Lean_Syntax_node4(x_33, x_439, x_410, x_421, x_293, x_438); -x_441 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_368); -lean_inc(x_293); -lean_inc(x_33); -x_442 = l_Lean_Syntax_node5(x_33, x_441, x_381, x_408, x_293, x_368, x_440); -x_443 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_33); -x_444 = l_Lean_Syntax_node1(x_33, x_443, x_442); -x_445 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_403); -lean_inc_n(x_293, 2); -lean_inc(x_33); -x_446 = l_Lean_Syntax_node4(x_33, x_445, x_293, x_293, x_444, x_403); -x_447 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +x_404 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_404, 0, x_33); +lean_ctor_set(x_404, 1, x_403); +x_405 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; lean_inc(x_54); -lean_inc(x_292); -x_448 = l_Lean_addMacroScope(x_292, x_447, x_54); -x_449 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_289); +x_406 = l_Lean_addMacroScope(x_289, x_405, x_54); +x_407 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; lean_inc(x_33); -x_450 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_450, 0, x_33); -lean_ctor_set(x_450, 1, x_449); -lean_ctor_set(x_450, 2, x_448); -lean_ctor_set(x_450, 3, x_38); +x_408 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_408, 0, x_33); +lean_ctor_set(x_408, 1, x_407); +lean_ctor_set(x_408, 2, x_406); +lean_ctor_set(x_408, 3, x_38); +x_409 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; lean_inc(x_33); -x_451 = l_Lean_Syntax_node1(x_33, x_50, x_450); -x_452 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; +x_410 = l_Lean_Syntax_node1(x_33, x_409, x_408); +lean_inc(x_33); +x_411 = l_Lean_Syntax_node1(x_33, x_50, x_358); +x_412 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +lean_inc(x_395); +lean_inc(x_362); +lean_inc(x_290); +lean_inc(x_33); +x_413 = l_Lean_Syntax_node5(x_33, x_412, x_410, x_290, x_411, x_362, x_395); +x_414 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +lean_inc(x_33); +x_415 = l_Lean_Syntax_node1(x_33, x_414, x_413); +x_416 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; +lean_inc(x_33); +x_417 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_417, 0, x_33); +lean_ctor_set(x_417, 1, x_416); +x_418 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; +lean_inc(x_290); +lean_inc(x_33); +x_419 = l_Lean_Syntax_node2(x_33, x_418, x_290, x_401); +lean_inc(x_33); +x_420 = l_Lean_Syntax_node1(x_33, x_50, x_419); +x_421 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; +lean_inc(x_33); +x_422 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_422, 0, x_33); +lean_ctor_set(x_422, 1, x_421); +x_423 = lean_array_size(x_25); +x_424 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_38, x_423, x_15, x_25); +x_425 = lean_array_size(x_424); +x_426 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_425, x_15, x_424); +x_427 = l_Array_append___rarg(x_48, x_426); +lean_dec(x_426); +lean_inc(x_33); +x_428 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_428, 0, x_33); +lean_ctor_set(x_428, 1, x_50); +lean_ctor_set(x_428, 2, x_427); +x_429 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; +lean_inc(x_33); +x_430 = l_Lean_Syntax_node1(x_33, x_429, x_428); +x_431 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; +lean_inc(x_422); +lean_inc_n(x_290, 2); +lean_inc(x_417); +lean_inc(x_33); +x_432 = l_Lean_Syntax_node6(x_33, x_431, x_417, x_290, x_290, x_420, x_422, x_430); +x_433 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; +lean_inc(x_290); +lean_inc(x_415); +lean_inc(x_404); +lean_inc(x_33); +x_434 = l_Lean_Syntax_node4(x_33, x_433, x_404, x_415, x_290, x_432); +x_435 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_362); +lean_inc(x_290); +lean_inc(x_33); +x_436 = l_Lean_Syntax_node5(x_33, x_435, x_375, x_402, x_290, x_362, x_434); +x_437 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_33); +x_438 = l_Lean_Syntax_node1(x_33, x_437, x_436); +x_439 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_397); +lean_inc_n(x_290, 2); +lean_inc(x_33); +x_440 = l_Lean_Syntax_node4(x_33, x_439, x_290, x_290, x_438, x_397); +x_441 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_54); +lean_inc(x_289); +x_442 = l_Lean_addMacroScope(x_289, x_441, x_54); +x_443 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_33); +x_444 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_444, 0, x_33); +lean_ctor_set(x_444, 1, x_443); +lean_ctor_set(x_444, 2, x_442); +lean_ctor_set(x_444, 3, x_38); +lean_inc(x_33); +x_445 = l_Lean_Syntax_node1(x_33, x_50, x_444); +x_446 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_33); +x_447 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_447, 0, x_33); +lean_ctor_set(x_447, 1, x_446); +x_448 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; +lean_inc(x_33); +x_449 = l_Lean_Syntax_node2(x_33, x_448, x_404, x_415); +x_450 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_290); +lean_inc(x_33); +x_451 = l_Lean_Syntax_node2(x_33, x_450, x_449, x_290); +x_452 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; lean_inc(x_33); x_453 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_453, 0, x_33); lean_ctor_set(x_453, 1, x_452); -x_454 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; -lean_inc(x_33); -x_455 = l_Lean_Syntax_node2(x_33, x_454, x_410, x_421); -x_456 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_293); -lean_inc(x_33); -x_457 = l_Lean_Syntax_node2(x_33, x_456, x_455, x_293); -x_458 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_33); -x_459 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_459, 0, x_33); -lean_ctor_set(x_459, 1, x_458); -x_460 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; +x_454 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; lean_inc(x_54); -lean_inc(x_292); -x_461 = l_Lean_addMacroScope(x_292, x_460, x_54); -x_462 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; +lean_inc(x_289); +x_455 = l_Lean_addMacroScope(x_289, x_454, x_54); +x_456 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; lean_inc(x_33); -x_463 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_463, 0, x_33); -lean_ctor_set(x_463, 1, x_462); -lean_ctor_set(x_463, 2, x_461); -lean_ctor_set(x_463, 3, x_38); +x_457 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_457, 0, x_33); +lean_ctor_set(x_457, 1, x_456); +lean_ctor_set(x_457, 2, x_455); +lean_ctor_set(x_457, 3, x_38); lean_inc(x_33); -x_464 = l_Lean_Syntax_node2(x_33, x_363, x_355, x_300); +x_458 = l_Lean_Syntax_node2(x_33, x_357, x_349, x_297); lean_inc(x_33); -x_465 = l_Lean_Syntax_node1(x_33, x_50, x_464); -x_466 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +x_459 = l_Lean_Syntax_node1(x_33, x_50, x_458); +x_460 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; lean_inc(x_33); -x_467 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_467, 0, x_33); -lean_ctor_set(x_467, 1, x_466); -x_468 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; +x_461 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_461, 0, x_33); +lean_ctor_set(x_461, 1, x_460); +x_462 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; lean_inc(x_54); -lean_inc(x_292); -x_469 = l_Lean_addMacroScope(x_292, x_468, x_54); -x_470 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_471 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +lean_inc(x_289); +x_463 = l_Lean_addMacroScope(x_289, x_462, x_54); +x_464 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_465 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; lean_inc(x_33); -x_472 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_472, 0, x_33); -lean_ctor_set(x_472, 1, x_470); -lean_ctor_set(x_472, 2, x_469); -lean_ctor_set(x_472, 3, x_471); -lean_inc(x_451); +x_466 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_466, 0, x_33); +lean_ctor_set(x_466, 1, x_464); +lean_ctor_set(x_466, 2, x_463); +lean_ctor_set(x_466, 3, x_465); +lean_inc(x_445); lean_inc(x_33); -x_473 = l_Lean_Syntax_node2(x_33, x_52, x_472, x_451); -x_474 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_467 = l_Lean_Syntax_node2(x_33, x_52, x_466, x_445); +x_468 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; lean_inc(x_33); -x_475 = l_Lean_Syntax_node1(x_33, x_474, x_473); -x_476 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_463); +x_469 = l_Lean_Syntax_node1(x_33, x_468, x_467); +x_470 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_457); lean_inc(x_33); -x_477 = l_Lean_Syntax_node4(x_33, x_476, x_463, x_465, x_467, x_475); -x_478 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_293); +x_471 = l_Lean_Syntax_node4(x_33, x_470, x_457, x_459, x_461, x_469); +x_472 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_290); lean_inc(x_33); -x_479 = l_Lean_Syntax_node3(x_33, x_478, x_459, x_293, x_477); -lean_inc(x_293); +x_473 = l_Lean_Syntax_node3(x_33, x_472, x_453, x_290, x_471); +lean_inc(x_290); lean_inc(x_33); -x_480 = l_Lean_Syntax_node2(x_33, x_456, x_479, x_293); -x_481 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; -x_482 = l_Lean_addMacroScope(x_292, x_481, x_54); -x_483 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; -x_484 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; +x_474 = l_Lean_Syntax_node2(x_33, x_450, x_473, x_290); +x_475 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; +x_476 = l_Lean_addMacroScope(x_289, x_475, x_54); +x_477 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; +x_478 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; lean_inc(x_33); -x_485 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_485, 0, x_33); -lean_ctor_set(x_485, 1, x_483); -lean_ctor_set(x_485, 2, x_482); -lean_ctor_set(x_485, 3, x_484); -x_486 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; +x_479 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_479, 0, x_33); +lean_ctor_set(x_479, 1, x_477); +lean_ctor_set(x_479, 2, x_476); +lean_ctor_set(x_479, 3, x_478); +x_480 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; lean_inc(x_33); -x_487 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_487, 0, x_33); -lean_ctor_set(x_487, 1, x_486); -lean_inc(x_293); +x_481 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_481, 0, x_33); +lean_ctor_set(x_481, 1, x_480); +lean_inc(x_290); lean_inc(x_33); -x_488 = l_Lean_Syntax_node2(x_33, x_424, x_293, x_463); +x_482 = l_Lean_Syntax_node2(x_33, x_418, x_290, x_457); lean_inc(x_33); -x_489 = l_Lean_Syntax_node1(x_33, x_50, x_488); -x_490 = lean_array_size(x_26); -x_491 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_38, x_490, x_15, x_26); -x_492 = lean_array_size(x_491); -x_493 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_492, x_15, x_491); -x_494 = l_Array_append___rarg(x_48, x_493); -lean_dec(x_493); +x_483 = l_Lean_Syntax_node1(x_33, x_50, x_482); +x_484 = lean_array_size(x_26); +x_485 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_38, x_484, x_15, x_26); +x_486 = lean_array_size(x_485); +x_487 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_486, x_15, x_485); +x_488 = l_Array_append___rarg(x_48, x_487); +lean_dec(x_487); lean_inc(x_33); -x_495 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_495, 0, x_33); -lean_ctor_set(x_495, 1, x_50); -lean_ctor_set(x_495, 2, x_494); +x_489 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_489, 0, x_33); +lean_ctor_set(x_489, 1, x_50); +lean_ctor_set(x_489, 2, x_488); lean_inc(x_33); -x_496 = l_Lean_Syntax_node1(x_33, x_435, x_495); -lean_inc_n(x_293, 2); +x_490 = l_Lean_Syntax_node1(x_33, x_429, x_489); +lean_inc_n(x_290, 2); lean_inc(x_33); -x_497 = l_Lean_Syntax_node6(x_33, x_437, x_423, x_293, x_293, x_489, x_428, x_496); -x_498 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; +x_491 = l_Lean_Syntax_node6(x_33, x_431, x_417, x_290, x_290, x_483, x_422, x_490); +x_492 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; lean_inc(x_33); -x_499 = l_Lean_Syntax_node3(x_33, x_498, x_485, x_487, x_497); +x_493 = l_Lean_Syntax_node3(x_33, x_492, x_479, x_481, x_491); lean_inc(x_33); -x_500 = l_Lean_Syntax_node1(x_33, x_474, x_499); -lean_inc(x_293); +x_494 = l_Lean_Syntax_node1(x_33, x_468, x_493); +lean_inc(x_290); lean_inc(x_33); -x_501 = l_Lean_Syntax_node2(x_33, x_456, x_500, x_293); +x_495 = l_Lean_Syntax_node2(x_33, x_450, x_494, x_290); lean_inc(x_33); -x_502 = l_Lean_Syntax_node3(x_33, x_50, x_457, x_480, x_501); -x_503 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +x_496 = l_Lean_Syntax_node3(x_33, x_50, x_451, x_474, x_495); +x_497 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; lean_inc(x_33); -x_504 = l_Lean_Syntax_node1(x_33, x_503, x_502); -x_505 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +x_498 = l_Lean_Syntax_node1(x_33, x_497, x_496); +x_499 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; lean_inc(x_33); -x_506 = l_Lean_Syntax_node2(x_33, x_505, x_453, x_504); -lean_inc(x_368); -lean_inc(x_293); +x_500 = l_Lean_Syntax_node2(x_33, x_499, x_447, x_498); +lean_inc(x_362); +lean_inc(x_290); lean_inc(x_33); -x_507 = l_Lean_Syntax_node5(x_33, x_441, x_393, x_451, x_293, x_368, x_506); +x_501 = l_Lean_Syntax_node5(x_33, x_435, x_387, x_445, x_290, x_362, x_500); lean_inc(x_33); -x_508 = l_Lean_Syntax_node1(x_33, x_443, x_507); -lean_inc(x_403); -lean_inc_n(x_293, 2); +x_502 = l_Lean_Syntax_node1(x_33, x_437, x_501); +lean_inc(x_397); +lean_inc_n(x_290, 2); lean_inc(x_33); -x_509 = l_Lean_Syntax_node4(x_33, x_445, x_293, x_293, x_508, x_403); -lean_inc(x_293); +x_503 = l_Lean_Syntax_node4(x_33, x_439, x_290, x_290, x_502, x_397); +lean_inc(x_290); lean_inc(x_33); -x_510 = l_Lean_Syntax_node3(x_33, x_50, x_446, x_293, x_509); -x_511 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +x_504 = l_Lean_Syntax_node3(x_33, x_50, x_440, x_290, x_503); +x_505 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; lean_inc(x_33); -x_512 = l_Lean_Syntax_node2(x_33, x_511, x_19, x_510); +x_506 = l_Lean_Syntax_node2(x_33, x_505, x_19, x_504); lean_inc(x_33); -x_513 = l_Lean_Syntax_node1(x_33, x_50, x_512); -x_514 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +x_507 = l_Lean_Syntax_node1(x_33, x_50, x_506); +x_508 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; lean_inc(x_33); -x_515 = l_Lean_Syntax_node4(x_33, x_514, x_368, x_401, x_403, x_513); -x_516 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_293); +x_509 = l_Lean_Syntax_node4(x_33, x_508, x_362, x_395, x_397, x_507); +x_510 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_290); lean_inc(x_33); -x_517 = l_Lean_Syntax_node6(x_33, x_516, x_351, x_353, x_293, x_293, x_366, x_515); +x_511 = l_Lean_Syntax_node6(x_33, x_510, x_345, x_347, x_290, x_290, x_360, x_509); lean_inc(x_33); -x_518 = l_Lean_Syntax_node2(x_33, x_334, x_349, x_517); -x_519 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +x_512 = l_Lean_Syntax_node2(x_33, x_328, x_343, x_511); +x_513 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; lean_inc(x_33); -x_520 = l_Lean_Syntax_node3(x_33, x_519, x_341, x_343, x_518); -x_521 = l_Lean_Syntax_node2(x_33, x_50, x_335, x_520); -x_522 = lean_alloc_ctor(0, 2, 0); -lean_ctor_set(x_522, 0, x_521); -lean_ctor_set(x_522, 1, x_290); -return x_522; +x_514 = l_Lean_Syntax_node3(x_33, x_513, x_335, x_337, x_512); +x_515 = l_Lean_Syntax_node2(x_33, x_50, x_329, x_514); +x_516 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_516, 0, x_515); +lean_ctor_set(x_516, 1, x_287); +return x_516; } } else { -lean_object* x_523; lean_object* x_524; lean_object* x_525; lean_object* x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; size_t x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; lean_object* x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; size_t x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; lean_object* x_675; lean_object* x_676; lean_object* x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; size_t x_684; lean_object* x_685; size_t x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; lean_object* x_736; lean_object* x_737; lean_object* x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; size_t x_745; lean_object* x_746; size_t x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; lean_object* x_769; lean_object* x_770; lean_object* x_771; lean_object* x_772; lean_object* x_773; lean_object* x_774; lean_object* x_775; lean_object* x_776; lean_object* x_777; -x_523 = lean_ctor_get(x_34, 1); -lean_inc(x_523); +lean_object* x_517; lean_object* x_518; lean_object* x_519; lean_object* x_520; lean_object* x_521; lean_object* x_522; lean_object* x_523; lean_object* x_524; lean_object* x_525; size_t x_526; lean_object* x_527; lean_object* x_528; lean_object* x_529; lean_object* x_530; lean_object* x_531; lean_object* x_532; lean_object* x_533; lean_object* x_534; lean_object* x_535; lean_object* x_536; lean_object* x_537; lean_object* x_538; lean_object* x_539; lean_object* x_540; lean_object* x_541; lean_object* x_542; lean_object* x_543; lean_object* x_544; lean_object* x_545; lean_object* x_546; lean_object* x_547; lean_object* x_548; lean_object* x_549; lean_object* x_550; lean_object* x_551; lean_object* x_552; lean_object* x_553; lean_object* x_554; lean_object* x_555; size_t x_556; lean_object* x_557; lean_object* x_558; lean_object* x_559; lean_object* x_560; lean_object* x_561; lean_object* x_562; lean_object* x_563; lean_object* x_564; lean_object* x_565; lean_object* x_566; lean_object* x_567; lean_object* x_568; lean_object* x_569; lean_object* x_570; lean_object* x_571; lean_object* x_572; lean_object* x_573; lean_object* x_574; lean_object* x_575; lean_object* x_576; lean_object* x_577; lean_object* x_578; lean_object* x_579; lean_object* x_580; lean_object* x_581; lean_object* x_582; lean_object* x_583; lean_object* x_584; lean_object* x_585; lean_object* x_586; lean_object* x_587; lean_object* x_588; lean_object* x_589; lean_object* x_590; lean_object* x_591; lean_object* x_592; lean_object* x_593; lean_object* x_594; lean_object* x_595; lean_object* x_596; lean_object* x_597; lean_object* x_598; lean_object* x_599; lean_object* x_600; lean_object* x_601; lean_object* x_602; lean_object* x_603; lean_object* x_604; lean_object* x_605; lean_object* x_606; lean_object* x_607; lean_object* x_608; lean_object* x_609; lean_object* x_610; lean_object* x_611; lean_object* x_612; lean_object* x_613; lean_object* x_614; lean_object* x_615; lean_object* x_616; lean_object* x_617; lean_object* x_618; lean_object* x_619; lean_object* x_620; lean_object* x_621; lean_object* x_622; lean_object* x_623; lean_object* x_624; lean_object* x_625; lean_object* x_626; lean_object* x_627; lean_object* x_628; lean_object* x_629; lean_object* x_630; lean_object* x_631; lean_object* x_632; lean_object* x_633; lean_object* x_634; lean_object* x_635; lean_object* x_636; lean_object* x_637; lean_object* x_638; lean_object* x_639; lean_object* x_640; lean_object* x_641; lean_object* x_642; lean_object* x_643; lean_object* x_644; lean_object* x_645; lean_object* x_646; lean_object* x_647; lean_object* x_648; lean_object* x_649; lean_object* x_650; lean_object* x_651; lean_object* x_652; lean_object* x_653; lean_object* x_654; lean_object* x_655; lean_object* x_656; lean_object* x_657; lean_object* x_658; lean_object* x_659; lean_object* x_660; lean_object* x_661; lean_object* x_662; lean_object* x_663; lean_object* x_664; lean_object* x_665; lean_object* x_666; lean_object* x_667; lean_object* x_668; lean_object* x_669; lean_object* x_670; lean_object* x_671; lean_object* x_672; lean_object* x_673; lean_object* x_674; size_t x_675; lean_object* x_676; size_t x_677; lean_object* x_678; lean_object* x_679; lean_object* x_680; lean_object* x_681; lean_object* x_682; lean_object* x_683; lean_object* x_684; lean_object* x_685; lean_object* x_686; lean_object* x_687; lean_object* x_688; lean_object* x_689; lean_object* x_690; lean_object* x_691; lean_object* x_692; lean_object* x_693; lean_object* x_694; lean_object* x_695; lean_object* x_696; lean_object* x_697; lean_object* x_698; lean_object* x_699; lean_object* x_700; lean_object* x_701; lean_object* x_702; lean_object* x_703; lean_object* x_704; lean_object* x_705; lean_object* x_706; lean_object* x_707; lean_object* x_708; lean_object* x_709; lean_object* x_710; lean_object* x_711; lean_object* x_712; lean_object* x_713; lean_object* x_714; lean_object* x_715; lean_object* x_716; lean_object* x_717; lean_object* x_718; lean_object* x_719; lean_object* x_720; lean_object* x_721; lean_object* x_722; lean_object* x_723; lean_object* x_724; lean_object* x_725; lean_object* x_726; lean_object* x_727; lean_object* x_728; lean_object* x_729; lean_object* x_730; lean_object* x_731; lean_object* x_732; lean_object* x_733; lean_object* x_734; lean_object* x_735; size_t x_736; lean_object* x_737; size_t x_738; lean_object* x_739; lean_object* x_740; lean_object* x_741; lean_object* x_742; lean_object* x_743; lean_object* x_744; lean_object* x_745; lean_object* x_746; lean_object* x_747; lean_object* x_748; lean_object* x_749; lean_object* x_750; lean_object* x_751; lean_object* x_752; lean_object* x_753; lean_object* x_754; lean_object* x_755; lean_object* x_756; lean_object* x_757; lean_object* x_758; lean_object* x_759; lean_object* x_760; lean_object* x_761; lean_object* x_762; lean_object* x_763; lean_object* x_764; lean_object* x_765; lean_object* x_766; lean_object* x_767; lean_object* x_768; +x_517 = lean_ctor_get(x_34, 1); +lean_inc(x_517); lean_dec(x_34); -x_524 = lean_box(0); -x_525 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; +x_518 = lean_box(0); +x_519 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; lean_inc(x_33); -x_526 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_526, 0, x_33); -lean_ctor_set(x_526, 1, x_525); -x_527 = lean_ctor_get(x_1, 0); -lean_inc(x_527); +x_520 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_520, 0, x_33); +lean_ctor_set(x_520, 1, x_519); +x_521 = lean_ctor_get(x_1, 0); +lean_inc(x_521); lean_dec(x_1); -x_528 = lean_ctor_get(x_527, 0); -lean_inc(x_528); -lean_dec(x_527); -x_529 = lean_mk_syntax_ident(x_528); -x_530 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; +x_522 = lean_ctor_get(x_521, 0); +lean_inc(x_522); +lean_dec(x_521); +x_523 = lean_mk_syntax_ident(x_522); +x_524 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; lean_inc(x_33); -x_531 = l_Lean_Syntax_node2(x_33, x_530, x_526, x_529); -x_532 = lean_array_size(x_29); -x_533 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; -x_534 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15(x_533, x_532, x_15, x_29); -x_535 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -x_536 = l_Array_append___rarg(x_535, x_534); -lean_dec(x_534); -x_537 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +x_525 = l_Lean_Syntax_node2(x_33, x_524, x_520, x_523); +x_526 = lean_array_size(x_29); +x_527 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; +x_528 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15(x_527, x_526, x_15, x_29); +x_529 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +x_530 = l_Array_append___rarg(x_529, x_528); +lean_dec(x_528); +x_531 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; lean_inc(x_33); -x_538 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_538, 0, x_33); -lean_ctor_set(x_538, 1, x_537); -lean_ctor_set(x_538, 2, x_536); -x_539 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +x_532 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_532, 0, x_33); +lean_ctor_set(x_532, 1, x_531); +lean_ctor_set(x_532, 2, x_530); +x_533 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; lean_inc(x_33); -x_540 = l_Lean_Syntax_node2(x_33, x_539, x_531, x_538); -x_541 = lean_ctor_get(x_9, 10); -lean_inc(x_541); +x_534 = l_Lean_Syntax_node2(x_33, x_533, x_525, x_532); +x_535 = lean_ctor_get(x_9, 10); +lean_inc(x_535); lean_dec(x_9); -x_542 = lean_st_ref_get(x_10, x_523); +x_536 = lean_st_ref_get(x_10, x_517); lean_dec(x_10); -x_543 = lean_ctor_get(x_542, 0); -lean_inc(x_543); -x_544 = lean_ctor_get(x_542, 1); -lean_inc(x_544); -if (lean_is_exclusive(x_542)) { - lean_ctor_release(x_542, 0); - lean_ctor_release(x_542, 1); - x_545 = x_542; +x_537 = lean_ctor_get(x_536, 0); +lean_inc(x_537); +x_538 = lean_ctor_get(x_536, 1); +lean_inc(x_538); +if (lean_is_exclusive(x_536)) { + lean_ctor_release(x_536, 0); + lean_ctor_release(x_536, 1); + x_539 = x_536; } else { - lean_dec_ref(x_542); - x_545 = lean_box(0); + lean_dec_ref(x_536); + x_539 = lean_box(0); } -x_546 = lean_ctor_get(x_543, 0); -lean_inc(x_546); -lean_dec(x_543); -x_547 = lean_environment_main_module(x_546); +x_540 = lean_ctor_get(x_537, 0); +lean_inc(x_540); +lean_dec(x_537); +x_541 = lean_environment_main_module(x_540); lean_inc(x_33); -x_548 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_548, 0, x_33); -lean_ctor_set(x_548, 1, x_537); -lean_ctor_set(x_548, 2, x_535); -x_549 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_548, 6); +x_542 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_542, 0, x_33); +lean_ctor_set(x_542, 1, x_531); +lean_ctor_set(x_542, 2, x_529); +x_543 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_542, 6); lean_inc(x_33); -x_550 = l_Lean_Syntax_node6(x_33, x_549, x_548, x_548, x_548, x_548, x_548, x_548); -x_551 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; +x_544 = l_Lean_Syntax_node6(x_33, x_543, x_542, x_542, x_542, x_542, x_542, x_542); +x_545 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; lean_inc(x_33); lean_ctor_set_tag(x_23, 2); -lean_ctor_set(x_23, 1, x_551); +lean_ctor_set(x_23, 1, x_545); lean_ctor_set(x_23, 0, x_33); -x_552 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +x_546 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_553 = l_Lean_addMacroScope(x_547, x_552, x_541); -x_554 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +x_547 = l_Lean_addMacroScope(x_541, x_546, x_535); +x_548 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; lean_inc(x_33); -x_555 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_555, 0, x_33); -lean_ctor_set(x_555, 1, x_554); -lean_ctor_set(x_555, 2, x_553); -lean_ctor_set(x_555, 3, x_524); -x_556 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_548); -lean_inc(x_555); +x_549 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_549, 0, x_33); +lean_ctor_set(x_549, 1, x_548); +lean_ctor_set(x_549, 2, x_547); +lean_ctor_set(x_549, 3, x_518); +x_550 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_542); +lean_inc(x_549); lean_inc(x_33); -x_557 = l_Lean_Syntax_node2(x_33, x_556, x_555, x_548); -x_558 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; -lean_inc_n(x_548, 2); +x_551 = l_Lean_Syntax_node2(x_33, x_550, x_549, x_542); +x_552 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; +lean_inc_n(x_542, 2); lean_inc(x_33); -x_559 = l_Lean_Syntax_node2(x_33, x_558, x_548, x_548); -x_560 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +x_553 = l_Lean_Syntax_node2(x_33, x_552, x_542, x_542); +x_554 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; lean_inc(x_33); lean_ctor_set_tag(x_19, 2); -lean_ctor_set(x_19, 1, x_560); +lean_ctor_set(x_19, 1, x_554); lean_ctor_set(x_19, 0, x_33); lean_inc(x_19); lean_inc(x_33); -x_561 = l_Lean_Syntax_node1(x_33, x_537, x_19); -x_562 = lean_array_size(x_21); -x_563 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_562, x_15, x_21); -x_564 = l_Array_append___rarg(x_535, x_563); -lean_dec(x_563); +x_555 = l_Lean_Syntax_node1(x_33, x_531, x_19); +x_556 = lean_array_size(x_21); +x_557 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_556, x_15, x_21); +x_558 = l_Array_append___rarg(x_529, x_557); +lean_dec(x_557); lean_inc(x_33); -x_565 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_565, 0, x_33); -lean_ctor_set(x_565, 1, x_537); -lean_ctor_set(x_565, 2, x_564); -x_566 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +x_559 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_559, 0, x_33); +lean_ctor_set(x_559, 1, x_531); +lean_ctor_set(x_559, 2, x_558); +x_560 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; lean_inc(x_33); -x_567 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_567, 0, x_33); -lean_ctor_set(x_567, 1, x_566); -x_568 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; +x_561 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_561, 0, x_33); +lean_ctor_set(x_561, 1, x_560); +x_562 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_569 = l_Lean_addMacroScope(x_547, x_568, x_541); -x_570 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_571 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; +x_563 = l_Lean_addMacroScope(x_541, x_562, x_535); +x_564 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_565 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; lean_inc(x_33); -x_572 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_572, 0, x_33); -lean_ctor_set(x_572, 1, x_570); -lean_ctor_set(x_572, 2, x_569); -lean_ctor_set(x_572, 3, x_571); -x_573 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_548); +x_566 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_566, 0, x_33); +lean_ctor_set(x_566, 1, x_564); +lean_ctor_set(x_566, 2, x_563); +lean_ctor_set(x_566, 3, x_565); +x_567 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; lean_inc(x_33); -x_574 = l_Lean_Syntax_node2(x_33, x_573, x_572, x_548); -x_575 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_33); -x_576 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_576, 0, x_33); -lean_ctor_set(x_576, 1, x_575); -x_577 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; +x_568 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_568, 0, x_33); +lean_ctor_set(x_568, 1, x_567); +x_569 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_578 = l_Lean_addMacroScope(x_547, x_577, x_541); -x_579 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_580 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +x_570 = l_Lean_addMacroScope(x_541, x_569, x_535); +x_571 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_572 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; lean_inc(x_33); -x_581 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_581, 0, x_33); -lean_ctor_set(x_581, 1, x_579); -lean_ctor_set(x_581, 2, x_578); -lean_ctor_set(x_581, 3, x_580); -lean_inc(x_548); +x_573 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_573, 0, x_33); +lean_ctor_set(x_573, 1, x_571); +lean_ctor_set(x_573, 2, x_570); +lean_ctor_set(x_573, 3, x_572); +lean_inc(x_568); lean_inc(x_33); -x_582 = l_Lean_Syntax_node2(x_33, x_573, x_581, x_548); -lean_inc(x_576); +x_574 = l_Lean_Syntax_node3(x_33, x_531, x_566, x_568, x_573); lean_inc(x_33); -x_583 = l_Lean_Syntax_node3(x_33, x_537, x_574, x_576, x_582); +x_575 = l_Lean_Syntax_node2(x_33, x_531, x_561, x_574); +x_576 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; lean_inc(x_33); -x_584 = l_Lean_Syntax_node2(x_33, x_537, x_567, x_583); -x_585 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +x_577 = l_Lean_Syntax_node1(x_33, x_576, x_575); +x_578 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; +lean_inc(x_542); lean_inc(x_33); -x_586 = l_Lean_Syntax_node1(x_33, x_585, x_584); -x_587 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; -lean_inc(x_548); +x_579 = l_Lean_Syntax_node7(x_33, x_578, x_23, x_551, x_553, x_555, x_559, x_542, x_577); +x_580 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; lean_inc(x_33); -x_588 = l_Lean_Syntax_node7(x_33, x_587, x_23, x_557, x_559, x_561, x_565, x_548, x_586); -x_589 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +x_581 = l_Lean_Syntax_node2(x_33, x_580, x_544, x_579); +x_582 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; lean_inc(x_33); -x_590 = l_Lean_Syntax_node2(x_33, x_589, x_550, x_588); -x_591 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +x_583 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_583, 0, x_33); +lean_ctor_set(x_583, 1, x_582); +x_584 = l_Array_append___rarg(x_529, x_3); lean_inc(x_33); -x_592 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_592, 0, x_33); -lean_ctor_set(x_592, 1, x_591); -x_593 = l_Array_append___rarg(x_535, x_3); +x_585 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_585, 0, x_33); +lean_ctor_set(x_585, 1, x_531); +lean_ctor_set(x_585, 2, x_584); +x_586 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; lean_inc(x_33); -x_594 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_594, 0, x_33); -lean_ctor_set(x_594, 1, x_537); -lean_ctor_set(x_594, 2, x_593); -x_595 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +x_587 = l_Lean_Syntax_node2(x_33, x_586, x_583, x_585); +x_588 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; lean_inc(x_33); -x_596 = l_Lean_Syntax_node2(x_33, x_595, x_592, x_594); -x_597 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +x_589 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_589, 0, x_33); +lean_ctor_set(x_589, 1, x_588); +x_590 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; lean_inc(x_33); -x_598 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_598, 0, x_33); -lean_ctor_set(x_598, 1, x_597); -x_599 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; +x_591 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_591, 0, x_33); +lean_ctor_set(x_591, 1, x_590); +x_592 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; lean_inc(x_33); -x_600 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_600, 0, x_33); -lean_ctor_set(x_600, 1, x_599); -x_601 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; +x_593 = l_Lean_Syntax_node1(x_33, x_592, x_591); lean_inc(x_33); -x_602 = l_Lean_Syntax_node1(x_33, x_601, x_600); +x_594 = l_Lean_Syntax_node1(x_33, x_531, x_593); +lean_inc_n(x_542, 5); lean_inc(x_33); -x_603 = l_Lean_Syntax_node1(x_33, x_537, x_602); -lean_inc_n(x_548, 5); +x_595 = l_Lean_Syntax_node6(x_33, x_543, x_542, x_542, x_542, x_542, x_542, x_594); +x_596 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_542); lean_inc(x_33); -x_604 = l_Lean_Syntax_node6(x_33, x_549, x_548, x_548, x_548, x_548, x_548, x_603); -x_605 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_548); +x_597 = l_Lean_Syntax_node1(x_33, x_596, x_542); +x_598 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; lean_inc(x_33); -x_606 = l_Lean_Syntax_node1(x_33, x_605, x_548); -x_607 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; +x_599 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_599, 0, x_33); +lean_ctor_set(x_599, 1, x_598); +x_600 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; lean_inc(x_33); -x_608 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_608, 0, x_33); -lean_ctor_set(x_608, 1, x_607); -x_609 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_33); -x_610 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_610, 0, x_33); -lean_ctor_set(x_610, 1, x_609); -x_611 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_601 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_601, 0, x_33); +lean_ctor_set(x_601, 1, x_600); +x_602 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_612 = l_Lean_addMacroScope(x_547, x_611, x_541); -x_613 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_614 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +x_603 = l_Lean_addMacroScope(x_541, x_602, x_535); +x_604 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_605 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; lean_inc(x_33); -x_615 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_615, 0, x_33); -lean_ctor_set(x_615, 1, x_613); -lean_ctor_set(x_615, 2, x_612); -lean_ctor_set(x_615, 3, x_614); +x_606 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_606, 0, x_33); +lean_ctor_set(x_606, 1, x_604); +lean_ctor_set(x_606, 2, x_603); +lean_ctor_set(x_606, 3, x_605); lean_inc(x_33); -x_616 = l_Lean_Syntax_node1(x_33, x_537, x_540); +x_607 = l_Lean_Syntax_node1(x_33, x_531, x_534); lean_inc(x_33); -x_617 = l_Lean_Syntax_node2(x_33, x_539, x_615, x_616); -x_618 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +x_608 = l_Lean_Syntax_node2(x_33, x_533, x_606, x_607); +x_609 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_601); +lean_inc(x_33); +x_610 = l_Lean_Syntax_node2(x_33, x_609, x_601, x_608); +x_611 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; lean_inc(x_610); +lean_inc(x_542); lean_inc(x_33); -x_619 = l_Lean_Syntax_node2(x_33, x_618, x_610, x_617); -x_620 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_619); -lean_inc(x_548); +x_612 = l_Lean_Syntax_node2(x_33, x_611, x_542, x_610); +x_613 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; lean_inc(x_33); -x_621 = l_Lean_Syntax_node2(x_33, x_620, x_548, x_619); -x_622 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +x_614 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_614, 0, x_33); +lean_ctor_set(x_614, 1, x_613); +x_615 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; lean_inc(x_33); -x_623 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_623, 0, x_33); -lean_ctor_set(x_623, 1, x_622); -x_624 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_33); -x_625 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_625, 0, x_33); -lean_ctor_set(x_625, 1, x_624); -x_626 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +x_616 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_616, 0, x_33); +lean_ctor_set(x_616, 1, x_615); +x_617 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_627 = l_Lean_addMacroScope(x_547, x_626, x_541); -x_628 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_629 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +x_618 = l_Lean_addMacroScope(x_541, x_617, x_535); +x_619 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_620 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; lean_inc(x_33); -x_630 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_630, 0, x_33); -lean_ctor_set(x_630, 1, x_628); -lean_ctor_set(x_630, 2, x_627); -lean_ctor_set(x_630, 3, x_629); -x_631 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_548); +x_621 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_621, 0, x_33); +lean_ctor_set(x_621, 1, x_619); +lean_ctor_set(x_621, 2, x_618); +lean_ctor_set(x_621, 3, x_620); +x_622 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_542); lean_inc(x_33); -x_632 = l_Lean_Syntax_node2(x_33, x_631, x_630, x_548); -x_633 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +x_623 = l_Lean_Syntax_node2(x_33, x_622, x_621, x_542); +x_624 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_634 = l_Lean_addMacroScope(x_547, x_633, x_541); -x_635 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; +x_625 = l_Lean_addMacroScope(x_541, x_624, x_535); +x_626 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; lean_inc(x_33); -x_636 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_636, 0, x_33); -lean_ctor_set(x_636, 1, x_635); -lean_ctor_set(x_636, 2, x_634); -lean_ctor_set(x_636, 3, x_524); -x_637 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_636); -lean_inc(x_623); +x_627 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_627, 0, x_33); +lean_ctor_set(x_627, 1, x_626); +lean_ctor_set(x_627, 2, x_625); +lean_ctor_set(x_627, 3, x_518); +x_628 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_627); +lean_inc(x_614); lean_inc(x_33); -x_638 = l_Lean_Syntax_node3(x_33, x_637, x_632, x_623, x_636); -x_639 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +x_629 = l_Lean_Syntax_node3(x_33, x_628, x_623, x_614, x_627); +x_630 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_640 = l_Lean_addMacroScope(x_547, x_639, x_541); -x_641 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_642 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +x_631 = l_Lean_addMacroScope(x_541, x_630, x_535); +x_632 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_633 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; lean_inc(x_33); -x_643 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_643, 0, x_33); -lean_ctor_set(x_643, 1, x_641); -lean_ctor_set(x_643, 2, x_640); -lean_ctor_set(x_643, 3, x_642); -lean_inc(x_548); +x_634 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_634, 0, x_33); +lean_ctor_set(x_634, 1, x_632); +lean_ctor_set(x_634, 2, x_631); +lean_ctor_set(x_634, 3, x_633); +lean_inc(x_542); lean_inc(x_33); -x_644 = l_Lean_Syntax_node2(x_33, x_631, x_643, x_548); -x_645 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +x_635 = l_Lean_Syntax_node2(x_33, x_622, x_634, x_542); +x_636 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_646 = l_Lean_addMacroScope(x_547, x_645, x_541); -x_647 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; +x_637 = l_Lean_addMacroScope(x_541, x_636, x_535); +x_638 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; lean_inc(x_33); -x_648 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_648, 0, x_33); -lean_ctor_set(x_648, 1, x_647); -lean_ctor_set(x_648, 2, x_646); -lean_ctor_set(x_648, 3, x_524); -lean_inc(x_648); -lean_inc(x_623); +x_639 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_639, 0, x_33); +lean_ctor_set(x_639, 1, x_638); +lean_ctor_set(x_639, 2, x_637); +lean_ctor_set(x_639, 3, x_518); +lean_inc(x_639); +lean_inc(x_614); lean_inc(x_33); -x_649 = l_Lean_Syntax_node3(x_33, x_637, x_644, x_623, x_648); +x_640 = l_Lean_Syntax_node3(x_33, x_628, x_635, x_614, x_639); lean_inc(x_33); -x_650 = l_Lean_Syntax_node3(x_33, x_537, x_638, x_576, x_649); -x_651 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_548); +x_641 = l_Lean_Syntax_node3(x_33, x_531, x_629, x_568, x_640); +x_642 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_542); lean_inc(x_33); -x_652 = l_Lean_Syntax_node1(x_33, x_651, x_548); -x_653 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; +x_643 = l_Lean_Syntax_node1(x_33, x_642, x_542); +x_644 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; lean_inc(x_33); -x_654 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_654, 0, x_33); -lean_ctor_set(x_654, 1, x_653); -x_655 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc_n(x_548, 2); +x_645 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_645, 0, x_33); +lean_ctor_set(x_645, 1, x_644); +x_646 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc_n(x_542, 2); lean_inc(x_33); -x_656 = l_Lean_Syntax_node6(x_33, x_655, x_625, x_548, x_650, x_652, x_548, x_654); -x_657 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_548, 2); +x_647 = l_Lean_Syntax_node6(x_33, x_646, x_616, x_542, x_641, x_643, x_542, x_645); +x_648 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_542, 2); lean_inc(x_33); -x_658 = l_Lean_Syntax_node2(x_33, x_657, x_548, x_548); -x_659 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; +x_649 = l_Lean_Syntax_node2(x_33, x_648, x_542, x_542); +x_650 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_660 = l_Lean_addMacroScope(x_547, x_659, x_541); -x_661 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; +x_651 = l_Lean_addMacroScope(x_541, x_650, x_535); +x_652 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; lean_inc(x_33); -x_662 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_662, 0, x_33); -lean_ctor_set(x_662, 1, x_661); -lean_ctor_set(x_662, 2, x_660); -lean_ctor_set(x_662, 3, x_524); -lean_inc(x_662); +x_653 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_653, 0, x_33); +lean_ctor_set(x_653, 1, x_652); +lean_ctor_set(x_653, 2, x_651); +lean_ctor_set(x_653, 3, x_518); +lean_inc(x_653); lean_inc(x_33); -x_663 = l_Lean_Syntax_node1(x_33, x_537, x_662); -x_664 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; +x_654 = l_Lean_Syntax_node1(x_33, x_531, x_653); +x_655 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; lean_inc(x_33); -x_665 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_665, 0, x_33); -lean_ctor_set(x_665, 1, x_664); -x_666 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; +x_656 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_656, 0, x_33); +lean_ctor_set(x_656, 1, x_655); +x_657 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_667 = l_Lean_addMacroScope(x_547, x_666, x_541); -x_668 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; +x_658 = l_Lean_addMacroScope(x_541, x_657, x_535); +x_659 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; lean_inc(x_33); -x_669 = lean_alloc_ctor(3, 4, 0); +x_660 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_660, 0, x_33); +lean_ctor_set(x_660, 1, x_659); +lean_ctor_set(x_660, 2, x_658); +lean_ctor_set(x_660, 3, x_518); +x_661 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; +lean_inc(x_33); +x_662 = l_Lean_Syntax_node1(x_33, x_661, x_660); +lean_inc(x_33); +x_663 = l_Lean_Syntax_node1(x_33, x_531, x_610); +x_664 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +lean_inc(x_647); +lean_inc(x_614); +lean_inc(x_542); +lean_inc(x_33); +x_665 = l_Lean_Syntax_node5(x_33, x_664, x_662, x_542, x_663, x_614, x_647); +x_666 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +lean_inc(x_33); +x_667 = l_Lean_Syntax_node1(x_33, x_666, x_665); +x_668 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; +lean_inc(x_33); +x_669 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_669, 0, x_33); lean_ctor_set(x_669, 1, x_668); -lean_ctor_set(x_669, 2, x_667); -lean_ctor_set(x_669, 3, x_524); -x_670 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; +x_670 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; +lean_inc(x_542); lean_inc(x_33); -x_671 = l_Lean_Syntax_node1(x_33, x_670, x_669); +x_671 = l_Lean_Syntax_node2(x_33, x_670, x_542, x_653); lean_inc(x_33); -x_672 = l_Lean_Syntax_node1(x_33, x_537, x_619); -x_673 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +x_672 = l_Lean_Syntax_node1(x_33, x_531, x_671); +x_673 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; +lean_inc(x_33); +x_674 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_674, 0, x_33); +lean_ctor_set(x_674, 1, x_673); +x_675 = lean_array_size(x_25); +x_676 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_518, x_675, x_15, x_25); +x_677 = lean_array_size(x_676); +x_678 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_677, x_15, x_676); +x_679 = l_Array_append___rarg(x_529, x_678); +lean_dec(x_678); +lean_inc(x_33); +x_680 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_680, 0, x_33); +lean_ctor_set(x_680, 1, x_531); +lean_ctor_set(x_680, 2, x_679); +x_681 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; +lean_inc(x_33); +x_682 = l_Lean_Syntax_node1(x_33, x_681, x_680); +x_683 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; +lean_inc(x_674); +lean_inc_n(x_542, 2); +lean_inc(x_669); +lean_inc(x_33); +x_684 = l_Lean_Syntax_node6(x_33, x_683, x_669, x_542, x_542, x_672, x_674, x_682); +x_685 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; +lean_inc(x_542); +lean_inc(x_667); lean_inc(x_656); -lean_inc(x_623); -lean_inc(x_548); lean_inc(x_33); -x_674 = l_Lean_Syntax_node5(x_33, x_673, x_671, x_548, x_672, x_623, x_656); -x_675 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +x_686 = l_Lean_Syntax_node4(x_33, x_685, x_656, x_667, x_542, x_684); +x_687 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_614); +lean_inc(x_542); lean_inc(x_33); -x_676 = l_Lean_Syntax_node1(x_33, x_675, x_674); -x_677 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; +x_688 = l_Lean_Syntax_node5(x_33, x_687, x_627, x_654, x_542, x_614, x_686); +x_689 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; lean_inc(x_33); -x_678 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_678, 0, x_33); -lean_ctor_set(x_678, 1, x_677); -x_679 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; -lean_inc(x_548); +x_690 = l_Lean_Syntax_node1(x_33, x_689, x_688); +x_691 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_649); +lean_inc_n(x_542, 2); lean_inc(x_33); -x_680 = l_Lean_Syntax_node2(x_33, x_679, x_548, x_662); -lean_inc(x_33); -x_681 = l_Lean_Syntax_node1(x_33, x_537, x_680); -x_682 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; -lean_inc(x_33); -x_683 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_683, 0, x_33); -lean_ctor_set(x_683, 1, x_682); -x_684 = lean_array_size(x_25); -x_685 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_524, x_684, x_15, x_25); -x_686 = lean_array_size(x_685); -x_687 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_686, x_15, x_685); -x_688 = l_Array_append___rarg(x_535, x_687); -lean_dec(x_687); -lean_inc(x_33); -x_689 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_689, 0, x_33); -lean_ctor_set(x_689, 1, x_537); -lean_ctor_set(x_689, 2, x_688); -x_690 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; -lean_inc(x_33); -x_691 = l_Lean_Syntax_node1(x_33, x_690, x_689); -x_692 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; -lean_inc(x_683); -lean_inc_n(x_548, 2); -lean_inc(x_678); -lean_inc(x_33); -x_693 = l_Lean_Syntax_node6(x_33, x_692, x_678, x_548, x_548, x_681, x_683, x_691); -x_694 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; -lean_inc(x_548); -lean_inc(x_676); -lean_inc(x_665); -lean_inc(x_33); -x_695 = l_Lean_Syntax_node4(x_33, x_694, x_665, x_676, x_548, x_693); -x_696 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_623); -lean_inc(x_548); -lean_inc(x_33); -x_697 = l_Lean_Syntax_node5(x_33, x_696, x_636, x_663, x_548, x_623, x_695); -x_698 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_33); -x_699 = l_Lean_Syntax_node1(x_33, x_698, x_697); -x_700 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_658); -lean_inc_n(x_548, 2); -lean_inc(x_33); -x_701 = l_Lean_Syntax_node4(x_33, x_700, x_548, x_548, x_699, x_658); -x_702 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +x_692 = l_Lean_Syntax_node4(x_33, x_691, x_542, x_542, x_690, x_649); +x_693 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_703 = l_Lean_addMacroScope(x_547, x_702, x_541); -x_704 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +x_694 = l_Lean_addMacroScope(x_541, x_693, x_535); +x_695 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; lean_inc(x_33); -x_705 = lean_alloc_ctor(3, 4, 0); +x_696 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_696, 0, x_33); +lean_ctor_set(x_696, 1, x_695); +lean_ctor_set(x_696, 2, x_694); +lean_ctor_set(x_696, 3, x_518); +lean_inc(x_33); +x_697 = l_Lean_Syntax_node1(x_33, x_531, x_696); +x_698 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_33); +x_699 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_699, 0, x_33); +lean_ctor_set(x_699, 1, x_698); +x_700 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; +lean_inc(x_33); +x_701 = l_Lean_Syntax_node2(x_33, x_700, x_656, x_667); +x_702 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_542); +lean_inc(x_33); +x_703 = l_Lean_Syntax_node2(x_33, x_702, x_701, x_542); +x_704 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_33); +x_705 = lean_alloc_ctor(2, 2, 0); lean_ctor_set(x_705, 0, x_33); lean_ctor_set(x_705, 1, x_704); -lean_ctor_set(x_705, 2, x_703); -lean_ctor_set(x_705, 3, x_524); -lean_inc(x_33); -x_706 = l_Lean_Syntax_node1(x_33, x_537, x_705); -x_707 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_33); -x_708 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_708, 0, x_33); -lean_ctor_set(x_708, 1, x_707); -x_709 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; -lean_inc(x_33); -x_710 = l_Lean_Syntax_node2(x_33, x_709, x_665, x_676); -x_711 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_548); -lean_inc(x_33); -x_712 = l_Lean_Syntax_node2(x_33, x_711, x_710, x_548); -x_713 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_33); -x_714 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_714, 0, x_33); -lean_ctor_set(x_714, 1, x_713); -x_715 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; +x_706 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; +lean_inc(x_535); lean_inc(x_541); -lean_inc(x_547); -x_716 = l_Lean_addMacroScope(x_547, x_715, x_541); -x_717 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; +x_707 = l_Lean_addMacroScope(x_541, x_706, x_535); +x_708 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; +lean_inc(x_33); +x_709 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_709, 0, x_33); +lean_ctor_set(x_709, 1, x_708); +lean_ctor_set(x_709, 2, x_707); +lean_ctor_set(x_709, 3, x_518); +lean_inc(x_33); +x_710 = l_Lean_Syntax_node2(x_33, x_609, x_601, x_549); +lean_inc(x_33); +x_711 = l_Lean_Syntax_node1(x_33, x_531, x_710); +x_712 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_33); +x_713 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_713, 0, x_33); +lean_ctor_set(x_713, 1, x_712); +x_714 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +lean_inc(x_535); +lean_inc(x_541); +x_715 = l_Lean_addMacroScope(x_541, x_714, x_535); +x_716 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_717 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; lean_inc(x_33); x_718 = lean_alloc_ctor(3, 4, 0); lean_ctor_set(x_718, 0, x_33); -lean_ctor_set(x_718, 1, x_717); -lean_ctor_set(x_718, 2, x_716); -lean_ctor_set(x_718, 3, x_524); +lean_ctor_set(x_718, 1, x_716); +lean_ctor_set(x_718, 2, x_715); +lean_ctor_set(x_718, 3, x_717); +lean_inc(x_697); lean_inc(x_33); -x_719 = l_Lean_Syntax_node2(x_33, x_618, x_610, x_555); +x_719 = l_Lean_Syntax_node2(x_33, x_533, x_718, x_697); +x_720 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; lean_inc(x_33); -x_720 = l_Lean_Syntax_node1(x_33, x_537, x_719); -x_721 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +x_721 = l_Lean_Syntax_node1(x_33, x_720, x_719); +x_722 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_709); lean_inc(x_33); -x_722 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_722, 0, x_33); -lean_ctor_set(x_722, 1, x_721); -x_723 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -lean_inc(x_541); -lean_inc(x_547); -x_724 = l_Lean_addMacroScope(x_547, x_723, x_541); -x_725 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_726 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; +x_723 = l_Lean_Syntax_node4(x_33, x_722, x_709, x_711, x_713, x_721); +x_724 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_542); lean_inc(x_33); -x_727 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_727, 0, x_33); -lean_ctor_set(x_727, 1, x_725); -lean_ctor_set(x_727, 2, x_724); -lean_ctor_set(x_727, 3, x_726); -lean_inc(x_706); +x_725 = l_Lean_Syntax_node3(x_33, x_724, x_705, x_542, x_723); +lean_inc(x_542); lean_inc(x_33); -x_728 = l_Lean_Syntax_node2(x_33, x_539, x_727, x_706); -x_729 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_726 = l_Lean_Syntax_node2(x_33, x_702, x_725, x_542); +x_727 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; +x_728 = l_Lean_addMacroScope(x_541, x_727, x_535); +x_729 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; +x_730 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; lean_inc(x_33); -x_730 = l_Lean_Syntax_node1(x_33, x_729, x_728); -x_731 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_718); +x_731 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_731, 0, x_33); +lean_ctor_set(x_731, 1, x_729); +lean_ctor_set(x_731, 2, x_728); +lean_ctor_set(x_731, 3, x_730); +x_732 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; lean_inc(x_33); -x_732 = l_Lean_Syntax_node4(x_33, x_731, x_718, x_720, x_722, x_730); -x_733 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_548); +x_733 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_733, 0, x_33); +lean_ctor_set(x_733, 1, x_732); +lean_inc(x_542); lean_inc(x_33); -x_734 = l_Lean_Syntax_node3(x_33, x_733, x_714, x_548, x_732); -lean_inc(x_548); +x_734 = l_Lean_Syntax_node2(x_33, x_670, x_542, x_709); lean_inc(x_33); -x_735 = l_Lean_Syntax_node2(x_33, x_711, x_734, x_548); -x_736 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; -x_737 = l_Lean_addMacroScope(x_547, x_736, x_541); -x_738 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; -x_739 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; +x_735 = l_Lean_Syntax_node1(x_33, x_531, x_734); +x_736 = lean_array_size(x_26); +x_737 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_518, x_736, x_15, x_26); +x_738 = lean_array_size(x_737); +x_739 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_738, x_15, x_737); +x_740 = l_Array_append___rarg(x_529, x_739); +lean_dec(x_739); lean_inc(x_33); -x_740 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_740, 0, x_33); -lean_ctor_set(x_740, 1, x_738); -lean_ctor_set(x_740, 2, x_737); -lean_ctor_set(x_740, 3, x_739); -x_741 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; +x_741 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_741, 0, x_33); +lean_ctor_set(x_741, 1, x_531); +lean_ctor_set(x_741, 2, x_740); lean_inc(x_33); -x_742 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_742, 0, x_33); -lean_ctor_set(x_742, 1, x_741); -lean_inc(x_548); +x_742 = l_Lean_Syntax_node1(x_33, x_681, x_741); +lean_inc_n(x_542, 2); lean_inc(x_33); -x_743 = l_Lean_Syntax_node2(x_33, x_679, x_548, x_718); +x_743 = l_Lean_Syntax_node6(x_33, x_683, x_669, x_542, x_542, x_735, x_674, x_742); +x_744 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; lean_inc(x_33); -x_744 = l_Lean_Syntax_node1(x_33, x_537, x_743); -x_745 = lean_array_size(x_26); -x_746 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_524, x_745, x_15, x_26); -x_747 = lean_array_size(x_746); -x_748 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_747, x_15, x_746); -x_749 = l_Array_append___rarg(x_535, x_748); -lean_dec(x_748); +x_745 = l_Lean_Syntax_node3(x_33, x_744, x_731, x_733, x_743); lean_inc(x_33); -x_750 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_750, 0, x_33); -lean_ctor_set(x_750, 1, x_537); -lean_ctor_set(x_750, 2, x_749); +x_746 = l_Lean_Syntax_node1(x_33, x_720, x_745); +lean_inc(x_542); lean_inc(x_33); -x_751 = l_Lean_Syntax_node1(x_33, x_690, x_750); -lean_inc_n(x_548, 2); +x_747 = l_Lean_Syntax_node2(x_33, x_702, x_746, x_542); lean_inc(x_33); -x_752 = l_Lean_Syntax_node6(x_33, x_692, x_678, x_548, x_548, x_744, x_683, x_751); -x_753 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; +x_748 = l_Lean_Syntax_node3(x_33, x_531, x_703, x_726, x_747); +x_749 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; lean_inc(x_33); -x_754 = l_Lean_Syntax_node3(x_33, x_753, x_740, x_742, x_752); +x_750 = l_Lean_Syntax_node1(x_33, x_749, x_748); +x_751 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; lean_inc(x_33); -x_755 = l_Lean_Syntax_node1(x_33, x_729, x_754); -lean_inc(x_548); +x_752 = l_Lean_Syntax_node2(x_33, x_751, x_699, x_750); +lean_inc(x_614); +lean_inc(x_542); lean_inc(x_33); -x_756 = l_Lean_Syntax_node2(x_33, x_711, x_755, x_548); +x_753 = l_Lean_Syntax_node5(x_33, x_687, x_639, x_697, x_542, x_614, x_752); lean_inc(x_33); -x_757 = l_Lean_Syntax_node3(x_33, x_537, x_712, x_735, x_756); -x_758 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +x_754 = l_Lean_Syntax_node1(x_33, x_689, x_753); +lean_inc(x_649); +lean_inc_n(x_542, 2); lean_inc(x_33); -x_759 = l_Lean_Syntax_node1(x_33, x_758, x_757); -x_760 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +x_755 = l_Lean_Syntax_node4(x_33, x_691, x_542, x_542, x_754, x_649); +lean_inc(x_542); lean_inc(x_33); -x_761 = l_Lean_Syntax_node2(x_33, x_760, x_708, x_759); -lean_inc(x_623); -lean_inc(x_548); +x_756 = l_Lean_Syntax_node3(x_33, x_531, x_692, x_542, x_755); +x_757 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; lean_inc(x_33); -x_762 = l_Lean_Syntax_node5(x_33, x_696, x_648, x_706, x_548, x_623, x_761); +x_758 = l_Lean_Syntax_node2(x_33, x_757, x_19, x_756); lean_inc(x_33); -x_763 = l_Lean_Syntax_node1(x_33, x_698, x_762); -lean_inc(x_658); -lean_inc_n(x_548, 2); +x_759 = l_Lean_Syntax_node1(x_33, x_531, x_758); +x_760 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; lean_inc(x_33); -x_764 = l_Lean_Syntax_node4(x_33, x_700, x_548, x_548, x_763, x_658); -lean_inc(x_548); +x_761 = l_Lean_Syntax_node4(x_33, x_760, x_614, x_647, x_649, x_759); +x_762 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_542); lean_inc(x_33); -x_765 = l_Lean_Syntax_node3(x_33, x_537, x_701, x_548, x_764); -x_766 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +x_763 = l_Lean_Syntax_node6(x_33, x_762, x_597, x_599, x_542, x_542, x_612, x_761); lean_inc(x_33); -x_767 = l_Lean_Syntax_node2(x_33, x_766, x_19, x_765); +x_764 = l_Lean_Syntax_node2(x_33, x_580, x_595, x_763); +x_765 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; lean_inc(x_33); -x_768 = l_Lean_Syntax_node1(x_33, x_537, x_767); -x_769 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_33); -x_770 = l_Lean_Syntax_node4(x_33, x_769, x_623, x_656, x_658, x_768); -x_771 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_548); -lean_inc(x_33); -x_772 = l_Lean_Syntax_node6(x_33, x_771, x_606, x_608, x_548, x_548, x_621, x_770); -lean_inc(x_33); -x_773 = l_Lean_Syntax_node2(x_33, x_589, x_604, x_772); -x_774 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_33); -x_775 = l_Lean_Syntax_node3(x_33, x_774, x_596, x_598, x_773); -x_776 = l_Lean_Syntax_node2(x_33, x_537, x_590, x_775); -if (lean_is_scalar(x_545)) { - x_777 = lean_alloc_ctor(0, 2, 0); +x_766 = l_Lean_Syntax_node3(x_33, x_765, x_587, x_589, x_764); +x_767 = l_Lean_Syntax_node2(x_33, x_531, x_581, x_766); +if (lean_is_scalar(x_539)) { + x_768 = lean_alloc_ctor(0, 2, 0); } else { - x_777 = x_545; + x_768 = x_539; } -lean_ctor_set(x_777, 0, x_776); -lean_ctor_set(x_777, 1, x_544); -return x_777; +lean_ctor_set(x_768, 0, x_767); +lean_ctor_set(x_768, 1, x_538); +return x_768; } } else { -uint8_t x_778; +uint8_t x_769; lean_free_object(x_23); lean_dec(x_26); lean_dec(x_25); @@ -12869,1380 +12786,1366 @@ lean_dec(x_21); lean_dec(x_10); lean_dec(x_9); lean_dec(x_1); -x_778 = !lean_is_exclusive(x_28); -if (x_778 == 0) +x_769 = !lean_is_exclusive(x_28); +if (x_769 == 0) { return x_28; } else { -lean_object* x_779; lean_object* x_780; lean_object* x_781; -x_779 = lean_ctor_get(x_28, 0); -x_780 = lean_ctor_get(x_28, 1); -lean_inc(x_780); -lean_inc(x_779); +lean_object* x_770; lean_object* x_771; lean_object* x_772; +x_770 = lean_ctor_get(x_28, 0); +x_771 = lean_ctor_get(x_28, 1); +lean_inc(x_771); +lean_inc(x_770); lean_dec(x_28); -x_781 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_781, 0, x_779); -lean_ctor_set(x_781, 1, x_780); -return x_781; +x_772 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_772, 0, x_770); +lean_ctor_set(x_772, 1, x_771); +return x_772; } } } else { -lean_object* x_782; lean_object* x_783; size_t x_784; lean_object* x_785; -x_782 = lean_ctor_get(x_23, 0); -x_783 = lean_ctor_get(x_23, 1); -lean_inc(x_783); -lean_inc(x_782); +lean_object* x_773; lean_object* x_774; size_t x_775; lean_object* x_776; +x_773 = lean_ctor_get(x_23, 0); +x_774 = lean_ctor_get(x_23, 1); +lean_inc(x_774); +lean_inc(x_773); lean_dec(x_23); -x_784 = lean_array_size(x_2); -x_785 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_784, x_15, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_18); +x_775 = lean_array_size(x_2); +x_776 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_775, x_15, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_18); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); -if (lean_obj_tag(x_785) == 0) +if (lean_obj_tag(x_776) == 0) { -lean_object* x_786; lean_object* x_787; lean_object* x_788; uint8_t x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; lean_object* x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; size_t x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; lean_object* x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; size_t x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; lean_object* x_943; lean_object* x_944; lean_object* x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; size_t x_955; lean_object* x_956; size_t x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; lean_object* x_1004; lean_object* x_1005; lean_object* x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; size_t x_1016; lean_object* x_1017; size_t x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; lean_object* x_1047; lean_object* x_1048; -x_786 = lean_ctor_get(x_785, 0); -lean_inc(x_786); -x_787 = lean_ctor_get(x_785, 1); -lean_inc(x_787); -lean_dec(x_785); -x_788 = lean_ctor_get(x_9, 5); +lean_object* x_777; lean_object* x_778; lean_object* x_779; uint8_t x_780; lean_object* x_781; lean_object* x_782; lean_object* x_783; lean_object* x_784; lean_object* x_785; lean_object* x_786; lean_object* x_787; lean_object* x_788; lean_object* x_789; lean_object* x_790; lean_object* x_791; lean_object* x_792; size_t x_793; lean_object* x_794; lean_object* x_795; lean_object* x_796; lean_object* x_797; lean_object* x_798; lean_object* x_799; lean_object* x_800; lean_object* x_801; lean_object* x_802; lean_object* x_803; lean_object* x_804; lean_object* x_805; lean_object* x_806; lean_object* x_807; lean_object* x_808; lean_object* x_809; lean_object* x_810; lean_object* x_811; lean_object* x_812; lean_object* x_813; lean_object* x_814; lean_object* x_815; lean_object* x_816; lean_object* x_817; lean_object* x_818; lean_object* x_819; lean_object* x_820; lean_object* x_821; lean_object* x_822; lean_object* x_823; size_t x_824; lean_object* x_825; lean_object* x_826; lean_object* x_827; lean_object* x_828; lean_object* x_829; lean_object* x_830; lean_object* x_831; lean_object* x_832; lean_object* x_833; lean_object* x_834; lean_object* x_835; lean_object* x_836; lean_object* x_837; lean_object* x_838; lean_object* x_839; lean_object* x_840; lean_object* x_841; lean_object* x_842; lean_object* x_843; lean_object* x_844; lean_object* x_845; lean_object* x_846; lean_object* x_847; lean_object* x_848; lean_object* x_849; lean_object* x_850; lean_object* x_851; lean_object* x_852; lean_object* x_853; lean_object* x_854; lean_object* x_855; lean_object* x_856; lean_object* x_857; lean_object* x_858; lean_object* x_859; lean_object* x_860; lean_object* x_861; lean_object* x_862; lean_object* x_863; lean_object* x_864; lean_object* x_865; lean_object* x_866; lean_object* x_867; lean_object* x_868; lean_object* x_869; lean_object* x_870; lean_object* x_871; lean_object* x_872; lean_object* x_873; lean_object* x_874; lean_object* x_875; lean_object* x_876; lean_object* x_877; lean_object* x_878; lean_object* x_879; lean_object* x_880; lean_object* x_881; lean_object* x_882; lean_object* x_883; lean_object* x_884; lean_object* x_885; lean_object* x_886; lean_object* x_887; lean_object* x_888; lean_object* x_889; lean_object* x_890; lean_object* x_891; lean_object* x_892; lean_object* x_893; lean_object* x_894; lean_object* x_895; lean_object* x_896; lean_object* x_897; lean_object* x_898; lean_object* x_899; lean_object* x_900; lean_object* x_901; lean_object* x_902; lean_object* x_903; lean_object* x_904; lean_object* x_905; lean_object* x_906; lean_object* x_907; lean_object* x_908; lean_object* x_909; lean_object* x_910; lean_object* x_911; lean_object* x_912; lean_object* x_913; lean_object* x_914; lean_object* x_915; lean_object* x_916; lean_object* x_917; lean_object* x_918; lean_object* x_919; lean_object* x_920; lean_object* x_921; lean_object* x_922; lean_object* x_923; lean_object* x_924; lean_object* x_925; lean_object* x_926; lean_object* x_927; lean_object* x_928; lean_object* x_929; lean_object* x_930; lean_object* x_931; lean_object* x_932; lean_object* x_933; lean_object* x_934; lean_object* x_935; lean_object* x_936; lean_object* x_937; lean_object* x_938; lean_object* x_939; lean_object* x_940; lean_object* x_941; lean_object* x_942; size_t x_943; lean_object* x_944; size_t x_945; lean_object* x_946; lean_object* x_947; lean_object* x_948; lean_object* x_949; lean_object* x_950; lean_object* x_951; lean_object* x_952; lean_object* x_953; lean_object* x_954; lean_object* x_955; lean_object* x_956; lean_object* x_957; lean_object* x_958; lean_object* x_959; lean_object* x_960; lean_object* x_961; lean_object* x_962; lean_object* x_963; lean_object* x_964; lean_object* x_965; lean_object* x_966; lean_object* x_967; lean_object* x_968; lean_object* x_969; lean_object* x_970; lean_object* x_971; lean_object* x_972; lean_object* x_973; lean_object* x_974; lean_object* x_975; lean_object* x_976; lean_object* x_977; lean_object* x_978; lean_object* x_979; lean_object* x_980; lean_object* x_981; lean_object* x_982; lean_object* x_983; lean_object* x_984; lean_object* x_985; lean_object* x_986; lean_object* x_987; lean_object* x_988; lean_object* x_989; lean_object* x_990; lean_object* x_991; lean_object* x_992; lean_object* x_993; lean_object* x_994; lean_object* x_995; lean_object* x_996; lean_object* x_997; lean_object* x_998; lean_object* x_999; lean_object* x_1000; lean_object* x_1001; lean_object* x_1002; lean_object* x_1003; size_t x_1004; lean_object* x_1005; size_t x_1006; lean_object* x_1007; lean_object* x_1008; lean_object* x_1009; lean_object* x_1010; lean_object* x_1011; lean_object* x_1012; lean_object* x_1013; lean_object* x_1014; lean_object* x_1015; lean_object* x_1016; lean_object* x_1017; lean_object* x_1018; lean_object* x_1019; lean_object* x_1020; lean_object* x_1021; lean_object* x_1022; lean_object* x_1023; lean_object* x_1024; lean_object* x_1025; lean_object* x_1026; lean_object* x_1027; lean_object* x_1028; lean_object* x_1029; lean_object* x_1030; lean_object* x_1031; lean_object* x_1032; lean_object* x_1033; lean_object* x_1034; lean_object* x_1035; lean_object* x_1036; +x_777 = lean_ctor_get(x_776, 0); +lean_inc(x_777); +x_778 = lean_ctor_get(x_776, 1); +lean_inc(x_778); +lean_dec(x_776); +x_779 = lean_ctor_get(x_9, 5); +lean_inc(x_779); +x_780 = 0; +x_781 = l_Lean_SourceInfo_fromRef(x_779, x_780); +lean_dec(x_779); +x_782 = lean_st_ref_get(x_10, x_778); +x_783 = lean_ctor_get(x_782, 1); +lean_inc(x_783); +if (lean_is_exclusive(x_782)) { + lean_ctor_release(x_782, 0); + lean_ctor_release(x_782, 1); + x_784 = x_782; +} else { + lean_dec_ref(x_782); + x_784 = lean_box(0); +} +x_785 = lean_box(0); +x_786 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_781); +if (lean_is_scalar(x_784)) { + x_787 = lean_alloc_ctor(2, 2, 0); +} else { + x_787 = x_784; + lean_ctor_set_tag(x_787, 2); +} +lean_ctor_set(x_787, 0, x_781); +lean_ctor_set(x_787, 1, x_786); +x_788 = lean_ctor_get(x_1, 0); lean_inc(x_788); -x_789 = 0; -x_790 = l_Lean_SourceInfo_fromRef(x_788, x_789); -lean_dec(x_788); -x_791 = lean_st_ref_get(x_10, x_787); -x_792 = lean_ctor_get(x_791, 1); -lean_inc(x_792); -if (lean_is_exclusive(x_791)) { - lean_ctor_release(x_791, 0); - lean_ctor_release(x_791, 1); - x_793 = x_791; -} else { - lean_dec_ref(x_791); - x_793 = lean_box(0); -} -x_794 = lean_box(0); -x_795 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; -lean_inc(x_790); -if (lean_is_scalar(x_793)) { - x_796 = lean_alloc_ctor(2, 2, 0); -} else { - x_796 = x_793; - lean_ctor_set_tag(x_796, 2); -} -lean_ctor_set(x_796, 0, x_790); -lean_ctor_set(x_796, 1, x_795); -x_797 = lean_ctor_get(x_1, 0); -lean_inc(x_797); lean_dec(x_1); -x_798 = lean_ctor_get(x_797, 0); -lean_inc(x_798); -lean_dec(x_797); -x_799 = lean_mk_syntax_ident(x_798); -x_800 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_790); -x_801 = l_Lean_Syntax_node2(x_790, x_800, x_796, x_799); -x_802 = lean_array_size(x_786); -x_803 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; -x_804 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15(x_803, x_802, x_15, x_786); -x_805 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -x_806 = l_Array_append___rarg(x_805, x_804); -lean_dec(x_804); -x_807 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -lean_inc(x_790); -x_808 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_808, 0, x_790); -lean_ctor_set(x_808, 1, x_807); -lean_ctor_set(x_808, 2, x_806); -x_809 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_790); -x_810 = l_Lean_Syntax_node2(x_790, x_809, x_801, x_808); -x_811 = lean_ctor_get(x_9, 10); -lean_inc(x_811); +x_789 = lean_ctor_get(x_788, 0); +lean_inc(x_789); +lean_dec(x_788); +x_790 = lean_mk_syntax_ident(x_789); +x_791 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_781); +x_792 = l_Lean_Syntax_node2(x_781, x_791, x_787, x_790); +x_793 = lean_array_size(x_777); +x_794 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; +x_795 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15(x_794, x_793, x_15, x_777); +x_796 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +x_797 = l_Array_append___rarg(x_796, x_795); +lean_dec(x_795); +x_798 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +lean_inc(x_781); +x_799 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_799, 0, x_781); +lean_ctor_set(x_799, 1, x_798); +lean_ctor_set(x_799, 2, x_797); +x_800 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_781); +x_801 = l_Lean_Syntax_node2(x_781, x_800, x_792, x_799); +x_802 = lean_ctor_get(x_9, 10); +lean_inc(x_802); lean_dec(x_9); -x_812 = lean_st_ref_get(x_10, x_792); +x_803 = lean_st_ref_get(x_10, x_783); lean_dec(x_10); -x_813 = lean_ctor_get(x_812, 0); -lean_inc(x_813); -x_814 = lean_ctor_get(x_812, 1); -lean_inc(x_814); -if (lean_is_exclusive(x_812)) { - lean_ctor_release(x_812, 0); - lean_ctor_release(x_812, 1); - x_815 = x_812; +x_804 = lean_ctor_get(x_803, 0); +lean_inc(x_804); +x_805 = lean_ctor_get(x_803, 1); +lean_inc(x_805); +if (lean_is_exclusive(x_803)) { + lean_ctor_release(x_803, 0); + lean_ctor_release(x_803, 1); + x_806 = x_803; } else { - lean_dec_ref(x_812); - x_815 = lean_box(0); + lean_dec_ref(x_803); + x_806 = lean_box(0); } -x_816 = lean_ctor_get(x_813, 0); -lean_inc(x_816); -lean_dec(x_813); -x_817 = lean_environment_main_module(x_816); -lean_inc(x_790); -x_818 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_818, 0, x_790); -lean_ctor_set(x_818, 1, x_807); -lean_ctor_set(x_818, 2, x_805); -x_819 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_818, 6); -lean_inc(x_790); -x_820 = l_Lean_Syntax_node6(x_790, x_819, x_818, x_818, x_818, x_818, x_818, x_818); -x_821 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; -lean_inc(x_790); -x_822 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_822, 0, x_790); -lean_ctor_set(x_822, 1, x_821); -x_823 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; -lean_inc(x_811); +x_807 = lean_ctor_get(x_804, 0); +lean_inc(x_807); +lean_dec(x_804); +x_808 = lean_environment_main_module(x_807); +lean_inc(x_781); +x_809 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_809, 0, x_781); +lean_ctor_set(x_809, 1, x_798); +lean_ctor_set(x_809, 2, x_796); +x_810 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_809, 6); +lean_inc(x_781); +x_811 = l_Lean_Syntax_node6(x_781, x_810, x_809, x_809, x_809, x_809, x_809, x_809); +x_812 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; +lean_inc(x_781); +x_813 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_813, 0, x_781); +lean_ctor_set(x_813, 1, x_812); +x_814 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_802); +lean_inc(x_808); +x_815 = l_Lean_addMacroScope(x_808, x_814, x_802); +x_816 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_781); +x_817 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_817, 0, x_781); +lean_ctor_set(x_817, 1, x_816); +lean_ctor_set(x_817, 2, x_815); +lean_ctor_set(x_817, 3, x_785); +x_818 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_809); lean_inc(x_817); -x_824 = l_Lean_addMacroScope(x_817, x_823, x_811); -x_825 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; -lean_inc(x_790); -x_826 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_826, 0, x_790); -lean_ctor_set(x_826, 1, x_825); -lean_ctor_set(x_826, 2, x_824); -lean_ctor_set(x_826, 3, x_794); -x_827 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_818); -lean_inc(x_826); -lean_inc(x_790); -x_828 = l_Lean_Syntax_node2(x_790, x_827, x_826, x_818); -x_829 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; -lean_inc_n(x_818, 2); -lean_inc(x_790); -x_830 = l_Lean_Syntax_node2(x_790, x_829, x_818, x_818); -x_831 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; -lean_inc(x_790); +lean_inc(x_781); +x_819 = l_Lean_Syntax_node2(x_781, x_818, x_817, x_809); +x_820 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; +lean_inc_n(x_809, 2); +lean_inc(x_781); +x_821 = l_Lean_Syntax_node2(x_781, x_820, x_809, x_809); +x_822 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +lean_inc(x_781); lean_ctor_set_tag(x_19, 2); -lean_ctor_set(x_19, 1, x_831); -lean_ctor_set(x_19, 0, x_790); +lean_ctor_set(x_19, 1, x_822); +lean_ctor_set(x_19, 0, x_781); lean_inc(x_19); -lean_inc(x_790); -x_832 = l_Lean_Syntax_node1(x_790, x_807, x_19); -x_833 = lean_array_size(x_21); -x_834 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_833, x_15, x_21); -x_835 = l_Array_append___rarg(x_805, x_834); -lean_dec(x_834); -lean_inc(x_790); -x_836 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_836, 0, x_790); -lean_ctor_set(x_836, 1, x_807); -lean_ctor_set(x_836, 2, x_835); -x_837 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; -lean_inc(x_790); -x_838 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_838, 0, x_790); -lean_ctor_set(x_838, 1, x_837); -x_839 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; -lean_inc(x_811); -lean_inc(x_817); -x_840 = l_Lean_addMacroScope(x_817, x_839, x_811); -x_841 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_842 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; -lean_inc(x_790); -x_843 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_843, 0, x_790); -lean_ctor_set(x_843, 1, x_841); -lean_ctor_set(x_843, 2, x_840); -lean_ctor_set(x_843, 3, x_842); -x_844 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_818); -lean_inc(x_790); -x_845 = l_Lean_Syntax_node2(x_790, x_844, x_843, x_818); -x_846 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_790); -x_847 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_847, 0, x_790); -lean_ctor_set(x_847, 1, x_846); -x_848 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_811); -lean_inc(x_817); -x_849 = l_Lean_addMacroScope(x_817, x_848, x_811); -x_850 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_851 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; -lean_inc(x_790); -x_852 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_852, 0, x_790); -lean_ctor_set(x_852, 1, x_850); -lean_ctor_set(x_852, 2, x_849); -lean_ctor_set(x_852, 3, x_851); -lean_inc(x_818); -lean_inc(x_790); -x_853 = l_Lean_Syntax_node2(x_790, x_844, x_852, x_818); -lean_inc(x_847); -lean_inc(x_790); -x_854 = l_Lean_Syntax_node3(x_790, x_807, x_845, x_847, x_853); -lean_inc(x_790); -x_855 = l_Lean_Syntax_node2(x_790, x_807, x_838, x_854); -x_856 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; -lean_inc(x_790); -x_857 = l_Lean_Syntax_node1(x_790, x_856, x_855); -x_858 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; -lean_inc(x_818); -lean_inc(x_790); -x_859 = l_Lean_Syntax_node7(x_790, x_858, x_822, x_828, x_830, x_832, x_836, x_818, x_857); -x_860 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_790); -x_861 = l_Lean_Syntax_node2(x_790, x_860, x_820, x_859); -x_862 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; -lean_inc(x_790); -x_863 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_863, 0, x_790); -lean_ctor_set(x_863, 1, x_862); -x_864 = l_Array_append___rarg(x_805, x_3); -lean_inc(x_790); -x_865 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_865, 0, x_790); -lean_ctor_set(x_865, 1, x_807); -lean_ctor_set(x_865, 2, x_864); -x_866 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -lean_inc(x_790); -x_867 = l_Lean_Syntax_node2(x_790, x_866, x_863, x_865); -x_868 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_790); +lean_inc(x_781); +x_823 = l_Lean_Syntax_node1(x_781, x_798, x_19); +x_824 = lean_array_size(x_21); +x_825 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_824, x_15, x_21); +x_826 = l_Array_append___rarg(x_796, x_825); +lean_dec(x_825); +lean_inc(x_781); +x_827 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_827, 0, x_781); +lean_ctor_set(x_827, 1, x_798); +lean_ctor_set(x_827, 2, x_826); +x_828 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +lean_inc(x_781); +x_829 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_829, 0, x_781); +lean_ctor_set(x_829, 1, x_828); +x_830 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_802); +lean_inc(x_808); +x_831 = l_Lean_addMacroScope(x_808, x_830, x_802); +x_832 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_833 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; +lean_inc(x_781); +x_834 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_834, 0, x_781); +lean_ctor_set(x_834, 1, x_832); +lean_ctor_set(x_834, 2, x_831); +lean_ctor_set(x_834, 3, x_833); +x_835 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +lean_inc(x_781); +x_836 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_836, 0, x_781); +lean_ctor_set(x_836, 1, x_835); +x_837 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_802); +lean_inc(x_808); +x_838 = l_Lean_addMacroScope(x_808, x_837, x_802); +x_839 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_840 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; +lean_inc(x_781); +x_841 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_841, 0, x_781); +lean_ctor_set(x_841, 1, x_839); +lean_ctor_set(x_841, 2, x_838); +lean_ctor_set(x_841, 3, x_840); +lean_inc(x_836); +lean_inc(x_781); +x_842 = l_Lean_Syntax_node3(x_781, x_798, x_834, x_836, x_841); +lean_inc(x_781); +x_843 = l_Lean_Syntax_node2(x_781, x_798, x_829, x_842); +x_844 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_781); +x_845 = l_Lean_Syntax_node1(x_781, x_844, x_843); +x_846 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; +lean_inc(x_809); +lean_inc(x_781); +x_847 = l_Lean_Syntax_node7(x_781, x_846, x_813, x_819, x_821, x_823, x_827, x_809, x_845); +x_848 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_781); +x_849 = l_Lean_Syntax_node2(x_781, x_848, x_811, x_847); +x_850 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_781); +x_851 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_851, 0, x_781); +lean_ctor_set(x_851, 1, x_850); +x_852 = l_Array_append___rarg(x_796, x_3); +lean_inc(x_781); +x_853 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_853, 0, x_781); +lean_ctor_set(x_853, 1, x_798); +lean_ctor_set(x_853, 2, x_852); +x_854 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_781); +x_855 = l_Lean_Syntax_node2(x_781, x_854, x_851, x_853); +x_856 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +lean_inc(x_781); +x_857 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_857, 0, x_781); +lean_ctor_set(x_857, 1, x_856); +x_858 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; +lean_inc(x_781); +x_859 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_859, 0, x_781); +lean_ctor_set(x_859, 1, x_858); +x_860 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; +lean_inc(x_781); +x_861 = l_Lean_Syntax_node1(x_781, x_860, x_859); +lean_inc(x_781); +x_862 = l_Lean_Syntax_node1(x_781, x_798, x_861); +lean_inc_n(x_809, 5); +lean_inc(x_781); +x_863 = l_Lean_Syntax_node6(x_781, x_810, x_809, x_809, x_809, x_809, x_809, x_862); +x_864 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_809); +lean_inc(x_781); +x_865 = l_Lean_Syntax_node1(x_781, x_864, x_809); +x_866 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +lean_inc(x_781); +x_867 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_867, 0, x_781); +lean_ctor_set(x_867, 1, x_866); +x_868 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +lean_inc(x_781); x_869 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_869, 0, x_790); +lean_ctor_set(x_869, 0, x_781); lean_ctor_set(x_869, 1, x_868); -x_870 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; -lean_inc(x_790); -x_871 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_871, 0, x_790); -lean_ctor_set(x_871, 1, x_870); -x_872 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; -lean_inc(x_790); -x_873 = l_Lean_Syntax_node1(x_790, x_872, x_871); -lean_inc(x_790); -x_874 = l_Lean_Syntax_node1(x_790, x_807, x_873); -lean_inc_n(x_818, 5); -lean_inc(x_790); -x_875 = l_Lean_Syntax_node6(x_790, x_819, x_818, x_818, x_818, x_818, x_818, x_874); -x_876 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_818); -lean_inc(x_790); -x_877 = l_Lean_Syntax_node1(x_790, x_876, x_818); -x_878 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_790); -x_879 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_879, 0, x_790); -lean_ctor_set(x_879, 1, x_878); -x_880 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_790); -x_881 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_881, 0, x_790); -lean_ctor_set(x_881, 1, x_880); -x_882 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; -lean_inc(x_811); -lean_inc(x_817); -x_883 = l_Lean_addMacroScope(x_817, x_882, x_811); -x_884 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_885 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; -lean_inc(x_790); -x_886 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_886, 0, x_790); -lean_ctor_set(x_886, 1, x_884); -lean_ctor_set(x_886, 2, x_883); -lean_ctor_set(x_886, 3, x_885); -lean_inc(x_790); -x_887 = l_Lean_Syntax_node1(x_790, x_807, x_810); -lean_inc(x_790); -x_888 = l_Lean_Syntax_node2(x_790, x_809, x_886, x_887); -x_889 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_881); -lean_inc(x_790); -x_890 = l_Lean_Syntax_node2(x_790, x_889, x_881, x_888); -x_891 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_890); -lean_inc(x_818); -lean_inc(x_790); -x_892 = l_Lean_Syntax_node2(x_790, x_891, x_818, x_890); -x_893 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_790); -x_894 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_894, 0, x_790); -lean_ctor_set(x_894, 1, x_893); -x_895 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_790); -x_896 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_896, 0, x_790); -lean_ctor_set(x_896, 1, x_895); -x_897 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; -lean_inc(x_811); -lean_inc(x_817); -x_898 = l_Lean_addMacroScope(x_817, x_897, x_811); -x_899 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_900 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; -lean_inc(x_790); -x_901 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_901, 0, x_790); -lean_ctor_set(x_901, 1, x_899); -lean_ctor_set(x_901, 2, x_898); -lean_ctor_set(x_901, 3, x_900); -x_902 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_818); -lean_inc(x_790); -x_903 = l_Lean_Syntax_node2(x_790, x_902, x_901, x_818); -x_904 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; -lean_inc(x_811); -lean_inc(x_817); -x_905 = l_Lean_addMacroScope(x_817, x_904, x_811); -x_906 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; -lean_inc(x_790); +x_870 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_802); +lean_inc(x_808); +x_871 = l_Lean_addMacroScope(x_808, x_870, x_802); +x_872 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_873 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_781); +x_874 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_874, 0, x_781); +lean_ctor_set(x_874, 1, x_872); +lean_ctor_set(x_874, 2, x_871); +lean_ctor_set(x_874, 3, x_873); +lean_inc(x_781); +x_875 = l_Lean_Syntax_node1(x_781, x_798, x_801); +lean_inc(x_781); +x_876 = l_Lean_Syntax_node2(x_781, x_800, x_874, x_875); +x_877 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_869); +lean_inc(x_781); +x_878 = l_Lean_Syntax_node2(x_781, x_877, x_869, x_876); +x_879 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; +lean_inc(x_878); +lean_inc(x_809); +lean_inc(x_781); +x_880 = l_Lean_Syntax_node2(x_781, x_879, x_809, x_878); +x_881 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +lean_inc(x_781); +x_882 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_882, 0, x_781); +lean_ctor_set(x_882, 1, x_881); +x_883 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; +lean_inc(x_781); +x_884 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_884, 0, x_781); +lean_ctor_set(x_884, 1, x_883); +x_885 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_802); +lean_inc(x_808); +x_886 = l_Lean_addMacroScope(x_808, x_885, x_802); +x_887 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_888 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_781); +x_889 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_889, 0, x_781); +lean_ctor_set(x_889, 1, x_887); +lean_ctor_set(x_889, 2, x_886); +lean_ctor_set(x_889, 3, x_888); +x_890 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_809); +lean_inc(x_781); +x_891 = l_Lean_Syntax_node2(x_781, x_890, x_889, x_809); +x_892 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_802); +lean_inc(x_808); +x_893 = l_Lean_addMacroScope(x_808, x_892, x_802); +x_894 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +lean_inc(x_781); +x_895 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_895, 0, x_781); +lean_ctor_set(x_895, 1, x_894); +lean_ctor_set(x_895, 2, x_893); +lean_ctor_set(x_895, 3, x_785); +x_896 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_895); +lean_inc(x_882); +lean_inc(x_781); +x_897 = l_Lean_Syntax_node3(x_781, x_896, x_891, x_882, x_895); +x_898 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_802); +lean_inc(x_808); +x_899 = l_Lean_addMacroScope(x_808, x_898, x_802); +x_900 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_901 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_781); +x_902 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_902, 0, x_781); +lean_ctor_set(x_902, 1, x_900); +lean_ctor_set(x_902, 2, x_899); +lean_ctor_set(x_902, 3, x_901); +lean_inc(x_809); +lean_inc(x_781); +x_903 = l_Lean_Syntax_node2(x_781, x_890, x_902, x_809); +x_904 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_802); +lean_inc(x_808); +x_905 = l_Lean_addMacroScope(x_808, x_904, x_802); +x_906 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_781); x_907 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_907, 0, x_790); +lean_ctor_set(x_907, 0, x_781); lean_ctor_set(x_907, 1, x_906); lean_ctor_set(x_907, 2, x_905); -lean_ctor_set(x_907, 3, x_794); -x_908 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_ctor_set(x_907, 3, x_785); lean_inc(x_907); -lean_inc(x_894); -lean_inc(x_790); -x_909 = l_Lean_Syntax_node3(x_790, x_908, x_903, x_894, x_907); -x_910 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; -lean_inc(x_811); -lean_inc(x_817); -x_911 = l_Lean_addMacroScope(x_817, x_910, x_811); -x_912 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_913 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; -lean_inc(x_790); -x_914 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_914, 0, x_790); -lean_ctor_set(x_914, 1, x_912); -lean_ctor_set(x_914, 2, x_911); -lean_ctor_set(x_914, 3, x_913); -lean_inc(x_818); -lean_inc(x_790); -x_915 = l_Lean_Syntax_node2(x_790, x_902, x_914, x_818); -x_916 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; -lean_inc(x_811); -lean_inc(x_817); -x_917 = l_Lean_addMacroScope(x_817, x_916, x_811); -x_918 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; -lean_inc(x_790); -x_919 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_919, 0, x_790); -lean_ctor_set(x_919, 1, x_918); -lean_ctor_set(x_919, 2, x_917); -lean_ctor_set(x_919, 3, x_794); -lean_inc(x_919); -lean_inc(x_894); -lean_inc(x_790); -x_920 = l_Lean_Syntax_node3(x_790, x_908, x_915, x_894, x_919); -lean_inc(x_790); -x_921 = l_Lean_Syntax_node3(x_790, x_807, x_909, x_847, x_920); -x_922 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_818); -lean_inc(x_790); -x_923 = l_Lean_Syntax_node1(x_790, x_922, x_818); -x_924 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_790); -x_925 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_925, 0, x_790); -lean_ctor_set(x_925, 1, x_924); -x_926 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc_n(x_818, 2); -lean_inc(x_790); -x_927 = l_Lean_Syntax_node6(x_790, x_926, x_896, x_818, x_921, x_923, x_818, x_925); -x_928 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_818, 2); -lean_inc(x_790); -x_929 = l_Lean_Syntax_node2(x_790, x_928, x_818, x_818); -x_930 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; -lean_inc(x_811); -lean_inc(x_817); -x_931 = l_Lean_addMacroScope(x_817, x_930, x_811); -x_932 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; -lean_inc(x_790); -x_933 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_933, 0, x_790); -lean_ctor_set(x_933, 1, x_932); -lean_ctor_set(x_933, 2, x_931); -lean_ctor_set(x_933, 3, x_794); -lean_inc(x_933); -lean_inc(x_790); -x_934 = l_Lean_Syntax_node1(x_790, x_807, x_933); -x_935 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; -lean_inc(x_790); -x_936 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_936, 0, x_790); -lean_ctor_set(x_936, 1, x_935); -x_937 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; -lean_inc(x_811); -lean_inc(x_817); -x_938 = l_Lean_addMacroScope(x_817, x_937, x_811); -x_939 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; -lean_inc(x_790); -x_940 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_940, 0, x_790); -lean_ctor_set(x_940, 1, x_939); -lean_ctor_set(x_940, 2, x_938); -lean_ctor_set(x_940, 3, x_794); -x_941 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; -lean_inc(x_790); -x_942 = l_Lean_Syntax_node1(x_790, x_941, x_940); -lean_inc(x_790); -x_943 = l_Lean_Syntax_node1(x_790, x_807, x_890); -x_944 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; -lean_inc(x_927); -lean_inc(x_894); -lean_inc(x_818); -lean_inc(x_790); -x_945 = l_Lean_Syntax_node5(x_790, x_944, x_942, x_818, x_943, x_894, x_927); -x_946 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; -lean_inc(x_790); -x_947 = l_Lean_Syntax_node1(x_790, x_946, x_945); -x_948 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; -lean_inc(x_790); -x_949 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_949, 0, x_790); -lean_ctor_set(x_949, 1, x_948); -x_950 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; -lean_inc(x_818); -lean_inc(x_790); -x_951 = l_Lean_Syntax_node2(x_790, x_950, x_818, x_933); -lean_inc(x_790); -x_952 = l_Lean_Syntax_node1(x_790, x_807, x_951); -x_953 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; -lean_inc(x_790); -x_954 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_954, 0, x_790); -lean_ctor_set(x_954, 1, x_953); -x_955 = lean_array_size(x_782); -x_956 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_794, x_955, x_15, x_782); -x_957 = lean_array_size(x_956); -x_958 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_957, x_15, x_956); -x_959 = l_Array_append___rarg(x_805, x_958); -lean_dec(x_958); -lean_inc(x_790); -x_960 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_960, 0, x_790); -lean_ctor_set(x_960, 1, x_807); -lean_ctor_set(x_960, 2, x_959); -x_961 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; -lean_inc(x_790); -x_962 = l_Lean_Syntax_node1(x_790, x_961, x_960); -x_963 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; -lean_inc(x_954); -lean_inc_n(x_818, 2); -lean_inc(x_949); -lean_inc(x_790); -x_964 = l_Lean_Syntax_node6(x_790, x_963, x_949, x_818, x_818, x_952, x_954, x_962); -x_965 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; -lean_inc(x_818); -lean_inc(x_947); -lean_inc(x_936); -lean_inc(x_790); -x_966 = l_Lean_Syntax_node4(x_790, x_965, x_936, x_947, x_818, x_964); -x_967 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_894); -lean_inc(x_818); -lean_inc(x_790); -x_968 = l_Lean_Syntax_node5(x_790, x_967, x_907, x_934, x_818, x_894, x_966); -x_969 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_790); -x_970 = l_Lean_Syntax_node1(x_790, x_969, x_968); -x_971 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_929); -lean_inc_n(x_818, 2); -lean_inc(x_790); -x_972 = l_Lean_Syntax_node4(x_790, x_971, x_818, x_818, x_970, x_929); -x_973 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; -lean_inc(x_811); -lean_inc(x_817); -x_974 = l_Lean_addMacroScope(x_817, x_973, x_811); -x_975 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_790); -x_976 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_976, 0, x_790); -lean_ctor_set(x_976, 1, x_975); -lean_ctor_set(x_976, 2, x_974); -lean_ctor_set(x_976, 3, x_794); -lean_inc(x_790); -x_977 = l_Lean_Syntax_node1(x_790, x_807, x_976); -x_978 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_790); -x_979 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_979, 0, x_790); -lean_ctor_set(x_979, 1, x_978); -x_980 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; -lean_inc(x_790); -x_981 = l_Lean_Syntax_node2(x_790, x_980, x_936, x_947); -x_982 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_818); -lean_inc(x_790); -x_983 = l_Lean_Syntax_node2(x_790, x_982, x_981, x_818); -x_984 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_790); -x_985 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_985, 0, x_790); -lean_ctor_set(x_985, 1, x_984); -x_986 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; -lean_inc(x_811); -lean_inc(x_817); -x_987 = l_Lean_addMacroScope(x_817, x_986, x_811); -x_988 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; -lean_inc(x_790); -x_989 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_989, 0, x_790); -lean_ctor_set(x_989, 1, x_988); -lean_ctor_set(x_989, 2, x_987); -lean_ctor_set(x_989, 3, x_794); -lean_inc(x_790); -x_990 = l_Lean_Syntax_node2(x_790, x_889, x_881, x_826); -lean_inc(x_790); -x_991 = l_Lean_Syntax_node1(x_790, x_807, x_990); -x_992 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; -lean_inc(x_790); -x_993 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_993, 0, x_790); -lean_ctor_set(x_993, 1, x_992); -x_994 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -lean_inc(x_811); -lean_inc(x_817); -x_995 = l_Lean_addMacroScope(x_817, x_994, x_811); -x_996 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_997 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; -lean_inc(x_790); -x_998 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_998, 0, x_790); -lean_ctor_set(x_998, 1, x_996); -lean_ctor_set(x_998, 2, x_995); -lean_ctor_set(x_998, 3, x_997); +lean_inc(x_882); +lean_inc(x_781); +x_908 = l_Lean_Syntax_node3(x_781, x_896, x_903, x_882, x_907); +lean_inc(x_781); +x_909 = l_Lean_Syntax_node3(x_781, x_798, x_897, x_836, x_908); +x_910 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_809); +lean_inc(x_781); +x_911 = l_Lean_Syntax_node1(x_781, x_910, x_809); +x_912 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_781); +x_913 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_913, 0, x_781); +lean_ctor_set(x_913, 1, x_912); +x_914 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc_n(x_809, 2); +lean_inc(x_781); +x_915 = l_Lean_Syntax_node6(x_781, x_914, x_884, x_809, x_909, x_911, x_809, x_913); +x_916 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_809, 2); +lean_inc(x_781); +x_917 = l_Lean_Syntax_node2(x_781, x_916, x_809, x_809); +x_918 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; +lean_inc(x_802); +lean_inc(x_808); +x_919 = l_Lean_addMacroScope(x_808, x_918, x_802); +x_920 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; +lean_inc(x_781); +x_921 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_921, 0, x_781); +lean_ctor_set(x_921, 1, x_920); +lean_ctor_set(x_921, 2, x_919); +lean_ctor_set(x_921, 3, x_785); +lean_inc(x_921); +lean_inc(x_781); +x_922 = l_Lean_Syntax_node1(x_781, x_798, x_921); +x_923 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; +lean_inc(x_781); +x_924 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_924, 0, x_781); +lean_ctor_set(x_924, 1, x_923); +x_925 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; +lean_inc(x_802); +lean_inc(x_808); +x_926 = l_Lean_addMacroScope(x_808, x_925, x_802); +x_927 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; +lean_inc(x_781); +x_928 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_928, 0, x_781); +lean_ctor_set(x_928, 1, x_927); +lean_ctor_set(x_928, 2, x_926); +lean_ctor_set(x_928, 3, x_785); +x_929 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; +lean_inc(x_781); +x_930 = l_Lean_Syntax_node1(x_781, x_929, x_928); +lean_inc(x_781); +x_931 = l_Lean_Syntax_node1(x_781, x_798, x_878); +x_932 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +lean_inc(x_915); +lean_inc(x_882); +lean_inc(x_809); +lean_inc(x_781); +x_933 = l_Lean_Syntax_node5(x_781, x_932, x_930, x_809, x_931, x_882, x_915); +x_934 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +lean_inc(x_781); +x_935 = l_Lean_Syntax_node1(x_781, x_934, x_933); +x_936 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; +lean_inc(x_781); +x_937 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_937, 0, x_781); +lean_ctor_set(x_937, 1, x_936); +x_938 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; +lean_inc(x_809); +lean_inc(x_781); +x_939 = l_Lean_Syntax_node2(x_781, x_938, x_809, x_921); +lean_inc(x_781); +x_940 = l_Lean_Syntax_node1(x_781, x_798, x_939); +x_941 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; +lean_inc(x_781); +x_942 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_942, 0, x_781); +lean_ctor_set(x_942, 1, x_941); +x_943 = lean_array_size(x_773); +x_944 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_785, x_943, x_15, x_773); +x_945 = lean_array_size(x_944); +x_946 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_945, x_15, x_944); +x_947 = l_Array_append___rarg(x_796, x_946); +lean_dec(x_946); +lean_inc(x_781); +x_948 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_948, 0, x_781); +lean_ctor_set(x_948, 1, x_798); +lean_ctor_set(x_948, 2, x_947); +x_949 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; +lean_inc(x_781); +x_950 = l_Lean_Syntax_node1(x_781, x_949, x_948); +x_951 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; +lean_inc(x_942); +lean_inc_n(x_809, 2); +lean_inc(x_937); +lean_inc(x_781); +x_952 = l_Lean_Syntax_node6(x_781, x_951, x_937, x_809, x_809, x_940, x_942, x_950); +x_953 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; +lean_inc(x_809); +lean_inc(x_935); +lean_inc(x_924); +lean_inc(x_781); +x_954 = l_Lean_Syntax_node4(x_781, x_953, x_924, x_935, x_809, x_952); +x_955 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_882); +lean_inc(x_809); +lean_inc(x_781); +x_956 = l_Lean_Syntax_node5(x_781, x_955, x_895, x_922, x_809, x_882, x_954); +x_957 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_781); +x_958 = l_Lean_Syntax_node1(x_781, x_957, x_956); +x_959 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_917); +lean_inc_n(x_809, 2); +lean_inc(x_781); +x_960 = l_Lean_Syntax_node4(x_781, x_959, x_809, x_809, x_958, x_917); +x_961 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_802); +lean_inc(x_808); +x_962 = l_Lean_addMacroScope(x_808, x_961, x_802); +x_963 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_781); +x_964 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_964, 0, x_781); +lean_ctor_set(x_964, 1, x_963); +lean_ctor_set(x_964, 2, x_962); +lean_ctor_set(x_964, 3, x_785); +lean_inc(x_781); +x_965 = l_Lean_Syntax_node1(x_781, x_798, x_964); +x_966 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_781); +x_967 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_967, 0, x_781); +lean_ctor_set(x_967, 1, x_966); +x_968 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; +lean_inc(x_781); +x_969 = l_Lean_Syntax_node2(x_781, x_968, x_924, x_935); +x_970 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_809); +lean_inc(x_781); +x_971 = l_Lean_Syntax_node2(x_781, x_970, x_969, x_809); +x_972 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_781); +x_973 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_973, 0, x_781); +lean_ctor_set(x_973, 1, x_972); +x_974 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; +lean_inc(x_802); +lean_inc(x_808); +x_975 = l_Lean_addMacroScope(x_808, x_974, x_802); +x_976 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; +lean_inc(x_781); +x_977 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_977, 0, x_781); +lean_ctor_set(x_977, 1, x_976); +lean_ctor_set(x_977, 2, x_975); +lean_ctor_set(x_977, 3, x_785); +lean_inc(x_781); +x_978 = l_Lean_Syntax_node2(x_781, x_877, x_869, x_817); +lean_inc(x_781); +x_979 = l_Lean_Syntax_node1(x_781, x_798, x_978); +x_980 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_781); +x_981 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_981, 0, x_781); +lean_ctor_set(x_981, 1, x_980); +x_982 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +lean_inc(x_802); +lean_inc(x_808); +x_983 = l_Lean_addMacroScope(x_808, x_982, x_802); +x_984 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_985 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; +lean_inc(x_781); +x_986 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_986, 0, x_781); +lean_ctor_set(x_986, 1, x_984); +lean_ctor_set(x_986, 2, x_983); +lean_ctor_set(x_986, 3, x_985); +lean_inc(x_965); +lean_inc(x_781); +x_987 = l_Lean_Syntax_node2(x_781, x_800, x_986, x_965); +x_988 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; +lean_inc(x_781); +x_989 = l_Lean_Syntax_node1(x_781, x_988, x_987); +x_990 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; lean_inc(x_977); -lean_inc(x_790); -x_999 = l_Lean_Syntax_node2(x_790, x_809, x_998, x_977); -x_1000 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_790); -x_1001 = l_Lean_Syntax_node1(x_790, x_1000, x_999); -x_1002 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_989); -lean_inc(x_790); -x_1003 = l_Lean_Syntax_node4(x_790, x_1002, x_989, x_991, x_993, x_1001); -x_1004 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_818); -lean_inc(x_790); -x_1005 = l_Lean_Syntax_node3(x_790, x_1004, x_985, x_818, x_1003); -lean_inc(x_818); -lean_inc(x_790); -x_1006 = l_Lean_Syntax_node2(x_790, x_982, x_1005, x_818); -x_1007 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; -x_1008 = l_Lean_addMacroScope(x_817, x_1007, x_811); -x_1009 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; -x_1010 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; -lean_inc(x_790); -x_1011 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1011, 0, x_790); -lean_ctor_set(x_1011, 1, x_1009); -lean_ctor_set(x_1011, 2, x_1008); -lean_ctor_set(x_1011, 3, x_1010); -x_1012 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; -lean_inc(x_790); -x_1013 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1013, 0, x_790); -lean_ctor_set(x_1013, 1, x_1012); -lean_inc(x_818); -lean_inc(x_790); -x_1014 = l_Lean_Syntax_node2(x_790, x_950, x_818, x_989); -lean_inc(x_790); -x_1015 = l_Lean_Syntax_node1(x_790, x_807, x_1014); -x_1016 = lean_array_size(x_783); -x_1017 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_794, x_1016, x_15, x_783); -x_1018 = lean_array_size(x_1017); -x_1019 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_1018, x_15, x_1017); -x_1020 = l_Array_append___rarg(x_805, x_1019); -lean_dec(x_1019); -lean_inc(x_790); -x_1021 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1021, 0, x_790); -lean_ctor_set(x_1021, 1, x_807); -lean_ctor_set(x_1021, 2, x_1020); -lean_inc(x_790); -x_1022 = l_Lean_Syntax_node1(x_790, x_961, x_1021); -lean_inc_n(x_818, 2); -lean_inc(x_790); -x_1023 = l_Lean_Syntax_node6(x_790, x_963, x_949, x_818, x_818, x_1015, x_954, x_1022); -x_1024 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; -lean_inc(x_790); -x_1025 = l_Lean_Syntax_node3(x_790, x_1024, x_1011, x_1013, x_1023); -lean_inc(x_790); -x_1026 = l_Lean_Syntax_node1(x_790, x_1000, x_1025); -lean_inc(x_818); -lean_inc(x_790); -x_1027 = l_Lean_Syntax_node2(x_790, x_982, x_1026, x_818); -lean_inc(x_790); -x_1028 = l_Lean_Syntax_node3(x_790, x_807, x_983, x_1006, x_1027); -x_1029 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; -lean_inc(x_790); -x_1030 = l_Lean_Syntax_node1(x_790, x_1029, x_1028); -x_1031 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; -lean_inc(x_790); -x_1032 = l_Lean_Syntax_node2(x_790, x_1031, x_979, x_1030); -lean_inc(x_894); -lean_inc(x_818); -lean_inc(x_790); -x_1033 = l_Lean_Syntax_node5(x_790, x_967, x_919, x_977, x_818, x_894, x_1032); -lean_inc(x_790); -x_1034 = l_Lean_Syntax_node1(x_790, x_969, x_1033); -lean_inc(x_929); -lean_inc_n(x_818, 2); -lean_inc(x_790); -x_1035 = l_Lean_Syntax_node4(x_790, x_971, x_818, x_818, x_1034, x_929); -lean_inc(x_818); -lean_inc(x_790); -x_1036 = l_Lean_Syntax_node3(x_790, x_807, x_972, x_818, x_1035); -x_1037 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; -lean_inc(x_790); -x_1038 = l_Lean_Syntax_node2(x_790, x_1037, x_19, x_1036); -lean_inc(x_790); -x_1039 = l_Lean_Syntax_node1(x_790, x_807, x_1038); -x_1040 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_790); -x_1041 = l_Lean_Syntax_node4(x_790, x_1040, x_894, x_927, x_929, x_1039); -x_1042 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_818); -lean_inc(x_790); -x_1043 = l_Lean_Syntax_node6(x_790, x_1042, x_877, x_879, x_818, x_818, x_892, x_1041); -lean_inc(x_790); -x_1044 = l_Lean_Syntax_node2(x_790, x_860, x_875, x_1043); -x_1045 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_790); -x_1046 = l_Lean_Syntax_node3(x_790, x_1045, x_867, x_869, x_1044); -x_1047 = l_Lean_Syntax_node2(x_790, x_807, x_861, x_1046); -if (lean_is_scalar(x_815)) { - x_1048 = lean_alloc_ctor(0, 2, 0); +lean_inc(x_781); +x_991 = l_Lean_Syntax_node4(x_781, x_990, x_977, x_979, x_981, x_989); +x_992 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_809); +lean_inc(x_781); +x_993 = l_Lean_Syntax_node3(x_781, x_992, x_973, x_809, x_991); +lean_inc(x_809); +lean_inc(x_781); +x_994 = l_Lean_Syntax_node2(x_781, x_970, x_993, x_809); +x_995 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; +x_996 = l_Lean_addMacroScope(x_808, x_995, x_802); +x_997 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; +x_998 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; +lean_inc(x_781); +x_999 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_999, 0, x_781); +lean_ctor_set(x_999, 1, x_997); +lean_ctor_set(x_999, 2, x_996); +lean_ctor_set(x_999, 3, x_998); +x_1000 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; +lean_inc(x_781); +x_1001 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1001, 0, x_781); +lean_ctor_set(x_1001, 1, x_1000); +lean_inc(x_809); +lean_inc(x_781); +x_1002 = l_Lean_Syntax_node2(x_781, x_938, x_809, x_977); +lean_inc(x_781); +x_1003 = l_Lean_Syntax_node1(x_781, x_798, x_1002); +x_1004 = lean_array_size(x_774); +x_1005 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_785, x_1004, x_15, x_774); +x_1006 = lean_array_size(x_1005); +x_1007 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_1006, x_15, x_1005); +x_1008 = l_Array_append___rarg(x_796, x_1007); +lean_dec(x_1007); +lean_inc(x_781); +x_1009 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1009, 0, x_781); +lean_ctor_set(x_1009, 1, x_798); +lean_ctor_set(x_1009, 2, x_1008); +lean_inc(x_781); +x_1010 = l_Lean_Syntax_node1(x_781, x_949, x_1009); +lean_inc_n(x_809, 2); +lean_inc(x_781); +x_1011 = l_Lean_Syntax_node6(x_781, x_951, x_937, x_809, x_809, x_1003, x_942, x_1010); +x_1012 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; +lean_inc(x_781); +x_1013 = l_Lean_Syntax_node3(x_781, x_1012, x_999, x_1001, x_1011); +lean_inc(x_781); +x_1014 = l_Lean_Syntax_node1(x_781, x_988, x_1013); +lean_inc(x_809); +lean_inc(x_781); +x_1015 = l_Lean_Syntax_node2(x_781, x_970, x_1014, x_809); +lean_inc(x_781); +x_1016 = l_Lean_Syntax_node3(x_781, x_798, x_971, x_994, x_1015); +x_1017 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +lean_inc(x_781); +x_1018 = l_Lean_Syntax_node1(x_781, x_1017, x_1016); +x_1019 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_781); +x_1020 = l_Lean_Syntax_node2(x_781, x_1019, x_967, x_1018); +lean_inc(x_882); +lean_inc(x_809); +lean_inc(x_781); +x_1021 = l_Lean_Syntax_node5(x_781, x_955, x_907, x_965, x_809, x_882, x_1020); +lean_inc(x_781); +x_1022 = l_Lean_Syntax_node1(x_781, x_957, x_1021); +lean_inc(x_917); +lean_inc_n(x_809, 2); +lean_inc(x_781); +x_1023 = l_Lean_Syntax_node4(x_781, x_959, x_809, x_809, x_1022, x_917); +lean_inc(x_809); +lean_inc(x_781); +x_1024 = l_Lean_Syntax_node3(x_781, x_798, x_960, x_809, x_1023); +x_1025 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +lean_inc(x_781); +x_1026 = l_Lean_Syntax_node2(x_781, x_1025, x_19, x_1024); +lean_inc(x_781); +x_1027 = l_Lean_Syntax_node1(x_781, x_798, x_1026); +x_1028 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; +lean_inc(x_781); +x_1029 = l_Lean_Syntax_node4(x_781, x_1028, x_882, x_915, x_917, x_1027); +x_1030 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_809); +lean_inc(x_781); +x_1031 = l_Lean_Syntax_node6(x_781, x_1030, x_865, x_867, x_809, x_809, x_880, x_1029); +lean_inc(x_781); +x_1032 = l_Lean_Syntax_node2(x_781, x_848, x_863, x_1031); +x_1033 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_781); +x_1034 = l_Lean_Syntax_node3(x_781, x_1033, x_855, x_857, x_1032); +x_1035 = l_Lean_Syntax_node2(x_781, x_798, x_849, x_1034); +if (lean_is_scalar(x_806)) { + x_1036 = lean_alloc_ctor(0, 2, 0); } else { - x_1048 = x_815; + x_1036 = x_806; } -lean_ctor_set(x_1048, 0, x_1047); -lean_ctor_set(x_1048, 1, x_814); -return x_1048; +lean_ctor_set(x_1036, 0, x_1035); +lean_ctor_set(x_1036, 1, x_805); +return x_1036; } else { -lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; lean_object* x_1052; -lean_dec(x_783); -lean_dec(x_782); +lean_object* x_1037; lean_object* x_1038; lean_object* x_1039; lean_object* x_1040; +lean_dec(x_774); +lean_dec(x_773); lean_free_object(x_19); lean_dec(x_21); lean_dec(x_10); lean_dec(x_9); lean_dec(x_1); -x_1049 = lean_ctor_get(x_785, 0); -lean_inc(x_1049); -x_1050 = lean_ctor_get(x_785, 1); -lean_inc(x_1050); -if (lean_is_exclusive(x_785)) { - lean_ctor_release(x_785, 0); - lean_ctor_release(x_785, 1); - x_1051 = x_785; +x_1037 = lean_ctor_get(x_776, 0); +lean_inc(x_1037); +x_1038 = lean_ctor_get(x_776, 1); +lean_inc(x_1038); +if (lean_is_exclusive(x_776)) { + lean_ctor_release(x_776, 0); + lean_ctor_release(x_776, 1); + x_1039 = x_776; } else { - lean_dec_ref(x_785); - x_1051 = lean_box(0); + lean_dec_ref(x_776); + x_1039 = lean_box(0); } -if (lean_is_scalar(x_1051)) { - x_1052 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1039)) { + x_1040 = lean_alloc_ctor(1, 2, 0); } else { - x_1052 = x_1051; + x_1040 = x_1039; } -lean_ctor_set(x_1052, 0, x_1049); -lean_ctor_set(x_1052, 1, x_1050); -return x_1052; +lean_ctor_set(x_1040, 0, x_1037); +lean_ctor_set(x_1040, 1, x_1038); +return x_1040; } } } else { -lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; size_t x_1059; lean_object* x_1060; -x_1053 = lean_ctor_get(x_19, 0); -x_1054 = lean_ctor_get(x_19, 1); -lean_inc(x_1054); -lean_inc(x_1053); +lean_object* x_1041; lean_object* x_1042; lean_object* x_1043; lean_object* x_1044; lean_object* x_1045; lean_object* x_1046; size_t x_1047; lean_object* x_1048; +x_1041 = lean_ctor_get(x_19, 0); +x_1042 = lean_ctor_get(x_19, 1); +lean_inc(x_1042); +lean_inc(x_1041); lean_dec(x_19); -x_1055 = l_Array_unzip___rarg(x_1054); -lean_dec(x_1054); -x_1056 = lean_ctor_get(x_1055, 0); -lean_inc(x_1056); -x_1057 = lean_ctor_get(x_1055, 1); -lean_inc(x_1057); -if (lean_is_exclusive(x_1055)) { - lean_ctor_release(x_1055, 0); - lean_ctor_release(x_1055, 1); - x_1058 = x_1055; +x_1043 = l_Array_unzip___rarg(x_1042); +lean_dec(x_1042); +x_1044 = lean_ctor_get(x_1043, 0); +lean_inc(x_1044); +x_1045 = lean_ctor_get(x_1043, 1); +lean_inc(x_1045); +if (lean_is_exclusive(x_1043)) { + lean_ctor_release(x_1043, 0); + lean_ctor_release(x_1043, 1); + x_1046 = x_1043; } else { - lean_dec_ref(x_1055); - x_1058 = lean_box(0); + lean_dec_ref(x_1043); + x_1046 = lean_box(0); } -x_1059 = lean_array_size(x_2); -x_1060 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_1059, x_15, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_18); +x_1047 = lean_array_size(x_2); +x_1048 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__2(x_1047, x_15, x_2, x_5, x_6, x_7, x_8, x_9, x_10, x_18); lean_dec(x_8); lean_dec(x_6); lean_dec(x_5); -if (lean_obj_tag(x_1060) == 0) +if (lean_obj_tag(x_1048) == 0) { -lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; uint8_t x_1064; lean_object* x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; size_t x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; lean_object* x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; size_t x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; lean_object* x_1216; lean_object* x_1217; lean_object* x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; size_t x_1231; lean_object* x_1232; size_t x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; lean_object* x_1277; lean_object* x_1278; lean_object* x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; size_t x_1292; lean_object* x_1293; size_t x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; lean_object* x_1314; lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; lean_object* x_1318; lean_object* x_1319; lean_object* x_1320; lean_object* x_1321; lean_object* x_1322; lean_object* x_1323; lean_object* x_1324; +lean_object* x_1049; lean_object* x_1050; lean_object* x_1051; uint8_t x_1052; lean_object* x_1053; lean_object* x_1054; lean_object* x_1055; lean_object* x_1056; lean_object* x_1057; lean_object* x_1058; lean_object* x_1059; lean_object* x_1060; lean_object* x_1061; lean_object* x_1062; lean_object* x_1063; lean_object* x_1064; size_t x_1065; lean_object* x_1066; lean_object* x_1067; lean_object* x_1068; lean_object* x_1069; lean_object* x_1070; lean_object* x_1071; lean_object* x_1072; lean_object* x_1073; lean_object* x_1074; lean_object* x_1075; lean_object* x_1076; lean_object* x_1077; lean_object* x_1078; lean_object* x_1079; lean_object* x_1080; lean_object* x_1081; lean_object* x_1082; lean_object* x_1083; lean_object* x_1084; lean_object* x_1085; lean_object* x_1086; lean_object* x_1087; lean_object* x_1088; lean_object* x_1089; lean_object* x_1090; lean_object* x_1091; lean_object* x_1092; lean_object* x_1093; lean_object* x_1094; lean_object* x_1095; lean_object* x_1096; size_t x_1097; lean_object* x_1098; lean_object* x_1099; lean_object* x_1100; lean_object* x_1101; lean_object* x_1102; lean_object* x_1103; lean_object* x_1104; lean_object* x_1105; lean_object* x_1106; lean_object* x_1107; lean_object* x_1108; lean_object* x_1109; lean_object* x_1110; lean_object* x_1111; lean_object* x_1112; lean_object* x_1113; lean_object* x_1114; lean_object* x_1115; lean_object* x_1116; lean_object* x_1117; lean_object* x_1118; lean_object* x_1119; lean_object* x_1120; lean_object* x_1121; lean_object* x_1122; lean_object* x_1123; lean_object* x_1124; lean_object* x_1125; lean_object* x_1126; lean_object* x_1127; lean_object* x_1128; lean_object* x_1129; lean_object* x_1130; lean_object* x_1131; lean_object* x_1132; lean_object* x_1133; lean_object* x_1134; lean_object* x_1135; lean_object* x_1136; lean_object* x_1137; lean_object* x_1138; lean_object* x_1139; lean_object* x_1140; lean_object* x_1141; lean_object* x_1142; lean_object* x_1143; lean_object* x_1144; lean_object* x_1145; lean_object* x_1146; lean_object* x_1147; lean_object* x_1148; lean_object* x_1149; lean_object* x_1150; lean_object* x_1151; lean_object* x_1152; lean_object* x_1153; lean_object* x_1154; lean_object* x_1155; lean_object* x_1156; lean_object* x_1157; lean_object* x_1158; lean_object* x_1159; lean_object* x_1160; lean_object* x_1161; lean_object* x_1162; lean_object* x_1163; lean_object* x_1164; lean_object* x_1165; lean_object* x_1166; lean_object* x_1167; lean_object* x_1168; lean_object* x_1169; lean_object* x_1170; lean_object* x_1171; lean_object* x_1172; lean_object* x_1173; lean_object* x_1174; lean_object* x_1175; lean_object* x_1176; lean_object* x_1177; lean_object* x_1178; lean_object* x_1179; lean_object* x_1180; lean_object* x_1181; lean_object* x_1182; lean_object* x_1183; lean_object* x_1184; lean_object* x_1185; lean_object* x_1186; lean_object* x_1187; lean_object* x_1188; lean_object* x_1189; lean_object* x_1190; lean_object* x_1191; lean_object* x_1192; lean_object* x_1193; lean_object* x_1194; lean_object* x_1195; lean_object* x_1196; lean_object* x_1197; lean_object* x_1198; lean_object* x_1199; lean_object* x_1200; lean_object* x_1201; lean_object* x_1202; lean_object* x_1203; lean_object* x_1204; lean_object* x_1205; lean_object* x_1206; lean_object* x_1207; lean_object* x_1208; lean_object* x_1209; lean_object* x_1210; lean_object* x_1211; lean_object* x_1212; lean_object* x_1213; lean_object* x_1214; lean_object* x_1215; size_t x_1216; lean_object* x_1217; size_t x_1218; lean_object* x_1219; lean_object* x_1220; lean_object* x_1221; lean_object* x_1222; lean_object* x_1223; lean_object* x_1224; lean_object* x_1225; lean_object* x_1226; lean_object* x_1227; lean_object* x_1228; lean_object* x_1229; lean_object* x_1230; lean_object* x_1231; lean_object* x_1232; lean_object* x_1233; lean_object* x_1234; lean_object* x_1235; lean_object* x_1236; lean_object* x_1237; lean_object* x_1238; lean_object* x_1239; lean_object* x_1240; lean_object* x_1241; lean_object* x_1242; lean_object* x_1243; lean_object* x_1244; lean_object* x_1245; lean_object* x_1246; lean_object* x_1247; lean_object* x_1248; lean_object* x_1249; lean_object* x_1250; lean_object* x_1251; lean_object* x_1252; lean_object* x_1253; lean_object* x_1254; lean_object* x_1255; lean_object* x_1256; lean_object* x_1257; lean_object* x_1258; lean_object* x_1259; lean_object* x_1260; lean_object* x_1261; lean_object* x_1262; lean_object* x_1263; lean_object* x_1264; lean_object* x_1265; lean_object* x_1266; lean_object* x_1267; lean_object* x_1268; lean_object* x_1269; lean_object* x_1270; lean_object* x_1271; lean_object* x_1272; lean_object* x_1273; lean_object* x_1274; lean_object* x_1275; lean_object* x_1276; size_t x_1277; lean_object* x_1278; size_t x_1279; lean_object* x_1280; lean_object* x_1281; lean_object* x_1282; lean_object* x_1283; lean_object* x_1284; lean_object* x_1285; lean_object* x_1286; lean_object* x_1287; lean_object* x_1288; lean_object* x_1289; lean_object* x_1290; lean_object* x_1291; lean_object* x_1292; lean_object* x_1293; lean_object* x_1294; lean_object* x_1295; lean_object* x_1296; lean_object* x_1297; lean_object* x_1298; lean_object* x_1299; lean_object* x_1300; lean_object* x_1301; lean_object* x_1302; lean_object* x_1303; lean_object* x_1304; lean_object* x_1305; lean_object* x_1306; lean_object* x_1307; lean_object* x_1308; lean_object* x_1309; +x_1049 = lean_ctor_get(x_1048, 0); +lean_inc(x_1049); +x_1050 = lean_ctor_get(x_1048, 1); +lean_inc(x_1050); +lean_dec(x_1048); +x_1051 = lean_ctor_get(x_9, 5); +lean_inc(x_1051); +x_1052 = 0; +x_1053 = l_Lean_SourceInfo_fromRef(x_1051, x_1052); +lean_dec(x_1051); +x_1054 = lean_st_ref_get(x_10, x_1050); +x_1055 = lean_ctor_get(x_1054, 1); +lean_inc(x_1055); +if (lean_is_exclusive(x_1054)) { + lean_ctor_release(x_1054, 0); + lean_ctor_release(x_1054, 1); + x_1056 = x_1054; +} else { + lean_dec_ref(x_1054); + x_1056 = lean_box(0); +} +x_1057 = lean_box(0); +x_1058 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__60; +lean_inc(x_1053); +if (lean_is_scalar(x_1056)) { + x_1059 = lean_alloc_ctor(2, 2, 0); +} else { + x_1059 = x_1056; + lean_ctor_set_tag(x_1059, 2); +} +lean_ctor_set(x_1059, 0, x_1053); +lean_ctor_set(x_1059, 1, x_1058); +x_1060 = lean_ctor_get(x_1, 0); +lean_inc(x_1060); +lean_dec(x_1); x_1061 = lean_ctor_get(x_1060, 0); lean_inc(x_1061); -x_1062 = lean_ctor_get(x_1060, 1); -lean_inc(x_1062); lean_dec(x_1060); -x_1063 = lean_ctor_get(x_9, 5); -lean_inc(x_1063); -x_1064 = 0; -x_1065 = l_Lean_SourceInfo_fromRef(x_1063, x_1064); -lean_dec(x_1063); -x_1066 = lean_st_ref_get(x_10, x_1062); -x_1067 = lean_ctor_get(x_1066, 1); -lean_inc(x_1067); -if (lean_is_exclusive(x_1066)) { - lean_ctor_release(x_1066, 0); - lean_ctor_release(x_1066, 1); - x_1068 = x_1066; -} else { - lean_dec_ref(x_1066); - x_1068 = lean_box(0); -} -x_1069 = lean_box(0); -x_1070 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__62; -lean_inc(x_1065); -if (lean_is_scalar(x_1068)) { - x_1071 = lean_alloc_ctor(2, 2, 0); -} else { - x_1071 = x_1068; - lean_ctor_set_tag(x_1071, 2); -} -lean_ctor_set(x_1071, 0, x_1065); +x_1062 = lean_mk_syntax_ident(x_1061); +x_1063 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; +lean_inc(x_1053); +x_1064 = l_Lean_Syntax_node2(x_1053, x_1063, x_1059, x_1062); +x_1065 = lean_array_size(x_1049); +x_1066 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; +x_1067 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15(x_1066, x_1065, x_15, x_1049); +x_1068 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; +x_1069 = l_Array_append___rarg(x_1068, x_1067); +lean_dec(x_1067); +x_1070 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; +lean_inc(x_1053); +x_1071 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1071, 0, x_1053); lean_ctor_set(x_1071, 1, x_1070); -x_1072 = lean_ctor_get(x_1, 0); -lean_inc(x_1072); -lean_dec(x_1); -x_1073 = lean_ctor_get(x_1072, 0); -lean_inc(x_1073); -lean_dec(x_1072); -x_1074 = lean_mk_syntax_ident(x_1073); -x_1075 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__61; -lean_inc(x_1065); -x_1076 = l_Lean_Syntax_node2(x_1065, x_1075, x_1071, x_1074); -x_1077 = lean_array_size(x_1061); -x_1078 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__1; -x_1079 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__15(x_1078, x_1077, x_15, x_1061); -x_1080 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__18; -x_1081 = l_Array_append___rarg(x_1080, x_1079); -lean_dec(x_1079); -x_1082 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__17; -lean_inc(x_1065); -x_1083 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1083, 0, x_1065); -lean_ctor_set(x_1083, 1, x_1082); -lean_ctor_set(x_1083, 2, x_1081); -x_1084 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; -lean_inc(x_1065); -x_1085 = l_Lean_Syntax_node2(x_1065, x_1084, x_1076, x_1083); -x_1086 = lean_ctor_get(x_9, 10); -lean_inc(x_1086); +lean_ctor_set(x_1071, 2, x_1069); +x_1072 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__24; +lean_inc(x_1053); +x_1073 = l_Lean_Syntax_node2(x_1053, x_1072, x_1064, x_1071); +x_1074 = lean_ctor_get(x_9, 10); +lean_inc(x_1074); lean_dec(x_9); -x_1087 = lean_st_ref_get(x_10, x_1067); +x_1075 = lean_st_ref_get(x_10, x_1055); lean_dec(x_10); -x_1088 = lean_ctor_get(x_1087, 0); -lean_inc(x_1088); -x_1089 = lean_ctor_get(x_1087, 1); +x_1076 = lean_ctor_get(x_1075, 0); +lean_inc(x_1076); +x_1077 = lean_ctor_get(x_1075, 1); +lean_inc(x_1077); +if (lean_is_exclusive(x_1075)) { + lean_ctor_release(x_1075, 0); + lean_ctor_release(x_1075, 1); + x_1078 = x_1075; +} else { + lean_dec_ref(x_1075); + x_1078 = lean_box(0); +} +x_1079 = lean_ctor_get(x_1076, 0); +lean_inc(x_1079); +lean_dec(x_1076); +x_1080 = lean_environment_main_module(x_1079); +lean_inc(x_1053); +x_1081 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1081, 0, x_1053); +lean_ctor_set(x_1081, 1, x_1070); +lean_ctor_set(x_1081, 2, x_1068); +x_1082 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; +lean_inc_n(x_1081, 6); +lean_inc(x_1053); +x_1083 = l_Lean_Syntax_node6(x_1053, x_1082, x_1081, x_1081, x_1081, x_1081, x_1081, x_1081); +x_1084 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; +lean_inc(x_1053); +if (lean_is_scalar(x_1046)) { + x_1085 = lean_alloc_ctor(2, 2, 0); +} else { + x_1085 = x_1046; + lean_ctor_set_tag(x_1085, 2); +} +lean_ctor_set(x_1085, 0, x_1053); +lean_ctor_set(x_1085, 1, x_1084); +x_1086 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; +lean_inc(x_1074); +lean_inc(x_1080); +x_1087 = l_Lean_addMacroScope(x_1080, x_1086, x_1074); +x_1088 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; +lean_inc(x_1053); +x_1089 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1089, 0, x_1053); +lean_ctor_set(x_1089, 1, x_1088); +lean_ctor_set(x_1089, 2, x_1087); +lean_ctor_set(x_1089, 3, x_1057); +x_1090 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; +lean_inc(x_1081); lean_inc(x_1089); -if (lean_is_exclusive(x_1087)) { - lean_ctor_release(x_1087, 0); - lean_ctor_release(x_1087, 1); - x_1090 = x_1087; -} else { - lean_dec_ref(x_1087); - x_1090 = lean_box(0); -} -x_1091 = lean_ctor_get(x_1088, 0); -lean_inc(x_1091); -lean_dec(x_1088); -x_1092 = lean_environment_main_module(x_1091); -lean_inc(x_1065); -x_1093 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1093, 0, x_1065); -lean_ctor_set(x_1093, 1, x_1082); -lean_ctor_set(x_1093, 2, x_1080); -x_1094 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__8; -lean_inc_n(x_1093, 6); -lean_inc(x_1065); -x_1095 = l_Lean_Syntax_node6(x_1065, x_1094, x_1093, x_1093, x_1093, x_1093, x_1093, x_1093); -x_1096 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__2; -lean_inc(x_1065); -if (lean_is_scalar(x_1058)) { - x_1097 = lean_alloc_ctor(2, 2, 0); -} else { - x_1097 = x_1058; - lean_ctor_set_tag(x_1097, 2); -} -lean_ctor_set(x_1097, 0, x_1065); -lean_ctor_set(x_1097, 1, x_1096); -x_1098 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__17; -lean_inc(x_1086); -lean_inc(x_1092); -x_1099 = l_Lean_addMacroScope(x_1092, x_1098, x_1086); -x_1100 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__16; -lean_inc(x_1065); -x_1101 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1101, 0, x_1065); -lean_ctor_set(x_1101, 1, x_1100); -lean_ctor_set(x_1101, 2, x_1099); -lean_ctor_set(x_1101, 3, x_1069); -x_1102 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__14; -lean_inc(x_1093); -lean_inc(x_1101); -lean_inc(x_1065); -x_1103 = l_Lean_Syntax_node2(x_1065, x_1102, x_1101, x_1093); -x_1104 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; -lean_inc_n(x_1093, 2); -lean_inc(x_1065); -x_1105 = l_Lean_Syntax_node2(x_1065, x_1104, x_1093, x_1093); -x_1106 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; -lean_inc(x_1065); -x_1107 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1107, 0, x_1065); -lean_ctor_set(x_1107, 1, x_1106); -lean_inc(x_1107); -lean_inc(x_1065); -x_1108 = l_Lean_Syntax_node1(x_1065, x_1082, x_1107); -x_1109 = lean_array_size(x_1053); -x_1110 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_1109, x_15, x_1053); -x_1111 = l_Array_append___rarg(x_1080, x_1110); -lean_dec(x_1110); -lean_inc(x_1065); -x_1112 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1112, 0, x_1065); -lean_ctor_set(x_1112, 1, x_1082); -lean_ctor_set(x_1112, 2, x_1111); -x_1113 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; -lean_inc(x_1065); -x_1114 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1114, 0, x_1065); -lean_ctor_set(x_1114, 1, x_1113); -x_1115 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__28; -lean_inc(x_1086); -lean_inc(x_1092); -x_1116 = l_Lean_addMacroScope(x_1092, x_1115, x_1086); -x_1117 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__27; -x_1118 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__33; -lean_inc(x_1065); -x_1119 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1119, 0, x_1065); -lean_ctor_set(x_1119, 1, x_1117); -lean_ctor_set(x_1119, 2, x_1116); -lean_ctor_set(x_1119, 3, x_1118); -x_1120 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; -lean_inc(x_1093); -lean_inc(x_1065); -x_1121 = l_Lean_Syntax_node2(x_1065, x_1120, x_1119, x_1093); -x_1122 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; -lean_inc(x_1065); -x_1123 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1123, 0, x_1065); -lean_ctor_set(x_1123, 1, x_1122); -x_1124 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__37; -lean_inc(x_1086); -lean_inc(x_1092); -x_1125 = l_Lean_addMacroScope(x_1092, x_1124, x_1086); -x_1126 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__36; -x_1127 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; -lean_inc(x_1065); -x_1128 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1128, 0, x_1065); -lean_ctor_set(x_1128, 1, x_1126); -lean_ctor_set(x_1128, 2, x_1125); -lean_ctor_set(x_1128, 3, x_1127); -lean_inc(x_1093); -lean_inc(x_1065); -x_1129 = l_Lean_Syntax_node2(x_1065, x_1120, x_1128, x_1093); -lean_inc(x_1123); -lean_inc(x_1065); -x_1130 = l_Lean_Syntax_node3(x_1065, x_1082, x_1121, x_1123, x_1129); -lean_inc(x_1065); -x_1131 = l_Lean_Syntax_node2(x_1065, x_1082, x_1114, x_1130); -x_1132 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; -lean_inc(x_1065); -x_1133 = l_Lean_Syntax_node1(x_1065, x_1132, x_1131); -x_1134 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; -lean_inc(x_1093); -lean_inc(x_1065); -x_1135 = l_Lean_Syntax_node7(x_1065, x_1134, x_1097, x_1103, x_1105, x_1108, x_1112, x_1093, x_1133); -x_1136 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; -lean_inc(x_1065); -x_1137 = l_Lean_Syntax_node2(x_1065, x_1136, x_1095, x_1135); -x_1138 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; -lean_inc(x_1065); -x_1139 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1139, 0, x_1065); -lean_ctor_set(x_1139, 1, x_1138); -x_1140 = l_Array_append___rarg(x_1080, x_3); -lean_inc(x_1065); -x_1141 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1141, 0, x_1065); -lean_ctor_set(x_1141, 1, x_1082); -lean_ctor_set(x_1141, 2, x_1140); -x_1142 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; -lean_inc(x_1065); -x_1143 = l_Lean_Syntax_node2(x_1065, x_1142, x_1139, x_1141); -x_1144 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; -lean_inc(x_1065); -x_1145 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1145, 0, x_1065); -lean_ctor_set(x_1145, 1, x_1144); -x_1146 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; -lean_inc(x_1065); -x_1147 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1147, 0, x_1065); -lean_ctor_set(x_1147, 1, x_1146); -x_1148 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; -lean_inc(x_1065); -x_1149 = l_Lean_Syntax_node1(x_1065, x_1148, x_1147); -lean_inc(x_1065); -x_1150 = l_Lean_Syntax_node1(x_1065, x_1082, x_1149); -lean_inc_n(x_1093, 5); -lean_inc(x_1065); -x_1151 = l_Lean_Syntax_node6(x_1065, x_1094, x_1093, x_1093, x_1093, x_1093, x_1093, x_1150); +lean_inc(x_1053); +x_1091 = l_Lean_Syntax_node2(x_1053, x_1090, x_1089, x_1081); +x_1092 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__5; +lean_inc_n(x_1081, 2); +lean_inc(x_1053); +x_1093 = l_Lean_Syntax_node2(x_1053, x_1092, x_1081, x_1081); +x_1094 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__18; +lean_inc(x_1053); +x_1095 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1095, 0, x_1053); +lean_ctor_set(x_1095, 1, x_1094); +lean_inc(x_1095); +lean_inc(x_1053); +x_1096 = l_Lean_Syntax_node1(x_1053, x_1070, x_1095); +x_1097 = lean_array_size(x_1041); +x_1098 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__16(x_1097, x_15, x_1041); +x_1099 = l_Array_append___rarg(x_1068, x_1098); +lean_dec(x_1098); +lean_inc(x_1053); +x_1100 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1100, 0, x_1053); +lean_ctor_set(x_1100, 1, x_1070); +lean_ctor_set(x_1100, 2, x_1099); +x_1101 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__23; +lean_inc(x_1053); +x_1102 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1102, 0, x_1053); +lean_ctor_set(x_1102, 1, x_1101); +x_1103 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__26; +lean_inc(x_1074); +lean_inc(x_1080); +x_1104 = l_Lean_addMacroScope(x_1080, x_1103, x_1074); +x_1105 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__25; +x_1106 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__31; +lean_inc(x_1053); +x_1107 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1107, 0, x_1053); +lean_ctor_set(x_1107, 1, x_1105); +lean_ctor_set(x_1107, 2, x_1104); +lean_ctor_set(x_1107, 3, x_1106); +x_1108 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__32; +lean_inc(x_1053); +x_1109 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1109, 0, x_1053); +lean_ctor_set(x_1109, 1, x_1108); +x_1110 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__35; +lean_inc(x_1074); +lean_inc(x_1080); +x_1111 = l_Lean_addMacroScope(x_1080, x_1110, x_1074); +x_1112 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__34; +x_1113 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__40; +lean_inc(x_1053); +x_1114 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1114, 0, x_1053); +lean_ctor_set(x_1114, 1, x_1112); +lean_ctor_set(x_1114, 2, x_1111); +lean_ctor_set(x_1114, 3, x_1113); +lean_inc(x_1109); +lean_inc(x_1053); +x_1115 = l_Lean_Syntax_node3(x_1053, x_1070, x_1107, x_1109, x_1114); +lean_inc(x_1053); +x_1116 = l_Lean_Syntax_node2(x_1053, x_1070, x_1102, x_1115); +x_1117 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__22; +lean_inc(x_1053); +x_1118 = l_Lean_Syntax_node1(x_1053, x_1117, x_1116); +x_1119 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__3; +lean_inc(x_1081); +lean_inc(x_1053); +x_1120 = l_Lean_Syntax_node7(x_1053, x_1119, x_1085, x_1091, x_1093, x_1096, x_1100, x_1081, x_1118); +x_1121 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__6; +lean_inc(x_1053); +x_1122 = l_Lean_Syntax_node2(x_1053, x_1121, x_1083, x_1120); +x_1123 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__43; +lean_inc(x_1053); +x_1124 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1124, 0, x_1053); +lean_ctor_set(x_1124, 1, x_1123); +x_1125 = l_Array_append___rarg(x_1068, x_3); +lean_inc(x_1053); +x_1126 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1126, 0, x_1053); +lean_ctor_set(x_1126, 1, x_1070); +lean_ctor_set(x_1126, 2, x_1125); +x_1127 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; +lean_inc(x_1053); +x_1128 = l_Lean_Syntax_node2(x_1053, x_1127, x_1124, x_1126); +x_1129 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__41; +lean_inc(x_1053); +x_1130 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1130, 0, x_1053); +lean_ctor_set(x_1130, 1, x_1129); +x_1131 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__4; +lean_inc(x_1053); +x_1132 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1132, 0, x_1053); +lean_ctor_set(x_1132, 1, x_1131); +x_1133 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__5; +lean_inc(x_1053); +x_1134 = l_Lean_Syntax_node1(x_1053, x_1133, x_1132); +lean_inc(x_1053); +x_1135 = l_Lean_Syntax_node1(x_1053, x_1070, x_1134); +lean_inc_n(x_1081, 5); +lean_inc(x_1053); +x_1136 = l_Lean_Syntax_node6(x_1053, x_1082, x_1081, x_1081, x_1081, x_1081, x_1081, x_1135); +x_1137 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; +lean_inc(x_1081); +lean_inc(x_1053); +x_1138 = l_Lean_Syntax_node1(x_1053, x_1137, x_1081); +x_1139 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__45; +lean_inc(x_1053); +x_1140 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1140, 0, x_1053); +lean_ctor_set(x_1140, 1, x_1139); +x_1141 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; +lean_inc(x_1053); +x_1142 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1142, 0, x_1053); +lean_ctor_set(x_1142, 1, x_1141); +x_1143 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; +lean_inc(x_1074); +lean_inc(x_1080); +x_1144 = l_Lean_addMacroScope(x_1080, x_1143, x_1074); +x_1145 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; +x_1146 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__57; +lean_inc(x_1053); +x_1147 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1147, 0, x_1053); +lean_ctor_set(x_1147, 1, x_1145); +lean_ctor_set(x_1147, 2, x_1144); +lean_ctor_set(x_1147, 3, x_1146); +lean_inc(x_1053); +x_1148 = l_Lean_Syntax_node1(x_1053, x_1070, x_1073); +lean_inc(x_1053); +x_1149 = l_Lean_Syntax_node2(x_1053, x_1072, x_1147, x_1148); +x_1150 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; +lean_inc(x_1142); +lean_inc(x_1053); +x_1151 = l_Lean_Syntax_node2(x_1053, x_1150, x_1142, x_1149); x_1152 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__50; -lean_inc(x_1093); -lean_inc(x_1065); -x_1153 = l_Lean_Syntax_node1(x_1065, x_1152, x_1093); -x_1154 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__47; -lean_inc(x_1065); +lean_inc(x_1151); +lean_inc(x_1081); +lean_inc(x_1053); +x_1153 = l_Lean_Syntax_node2(x_1053, x_1152, x_1081, x_1151); +x_1154 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; +lean_inc(x_1053); x_1155 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1155, 0, x_1065); +lean_ctor_set(x_1155, 0, x_1053); lean_ctor_set(x_1155, 1, x_1154); -x_1156 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__8; -lean_inc(x_1065); +x_1156 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__68; +lean_inc(x_1053); x_1157 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1157, 0, x_1065); +lean_ctor_set(x_1157, 0, x_1053); lean_ctor_set(x_1157, 1, x_1156); -x_1158 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; -lean_inc(x_1086); -lean_inc(x_1092); -x_1159 = l_Lean_addMacroScope(x_1092, x_1158, x_1086); -x_1160 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; -x_1161 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__59; -lean_inc(x_1065); +x_1158 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; +lean_inc(x_1074); +lean_inc(x_1080); +x_1159 = l_Lean_addMacroScope(x_1080, x_1158, x_1074); +x_1160 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; +x_1161 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; +lean_inc(x_1053); x_1162 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1162, 0, x_1065); +lean_ctor_set(x_1162, 0, x_1053); lean_ctor_set(x_1162, 1, x_1160); lean_ctor_set(x_1162, 2, x_1159); lean_ctor_set(x_1162, 3, x_1161); -lean_inc(x_1065); -x_1163 = l_Lean_Syntax_node1(x_1065, x_1082, x_1085); -lean_inc(x_1065); -x_1164 = l_Lean_Syntax_node2(x_1065, x_1084, x_1162, x_1163); -x_1165 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__3___closed__7; -lean_inc(x_1157); -lean_inc(x_1065); -x_1166 = l_Lean_Syntax_node2(x_1065, x_1165, x_1157, x_1164); -x_1167 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; -lean_inc(x_1166); -lean_inc(x_1093); -lean_inc(x_1065); -x_1168 = l_Lean_Syntax_node2(x_1065, x_1167, x_1093, x_1166); -x_1169 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__19; -lean_inc(x_1065); -x_1170 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1170, 0, x_1065); -lean_ctor_set(x_1170, 1, x_1169); -x_1171 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; -lean_inc(x_1065); -x_1172 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1172, 0, x_1065); -lean_ctor_set(x_1172, 1, x_1171); -x_1173 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__27; -lean_inc(x_1086); -lean_inc(x_1092); -x_1174 = l_Lean_addMacroScope(x_1092, x_1173, x_1086); -x_1175 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__26; -x_1176 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__32; -lean_inc(x_1065); -x_1177 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1177, 0, x_1065); -lean_ctor_set(x_1177, 1, x_1175); -lean_ctor_set(x_1177, 2, x_1174); -lean_ctor_set(x_1177, 3, x_1176); -x_1178 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; -lean_inc(x_1093); -lean_inc(x_1065); -x_1179 = l_Lean_Syntax_node2(x_1065, x_1178, x_1177, x_1093); -x_1180 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; -lean_inc(x_1086); -lean_inc(x_1092); -x_1181 = l_Lean_addMacroScope(x_1092, x_1180, x_1086); -x_1182 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__72; -lean_inc(x_1065); -x_1183 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1183, 0, x_1065); -lean_ctor_set(x_1183, 1, x_1182); -lean_ctor_set(x_1183, 2, x_1181); -lean_ctor_set(x_1183, 3, x_1069); -x_1184 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; -lean_inc(x_1183); -lean_inc(x_1170); -lean_inc(x_1065); -x_1185 = l_Lean_Syntax_node3(x_1065, x_1184, x_1179, x_1170, x_1183); -x_1186 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; -lean_inc(x_1086); -lean_inc(x_1092); -x_1187 = l_Lean_addMacroScope(x_1092, x_1186, x_1086); -x_1188 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; -x_1189 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; -lean_inc(x_1065); -x_1190 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1190, 0, x_1065); -lean_ctor_set(x_1190, 1, x_1188); -lean_ctor_set(x_1190, 2, x_1187); -lean_ctor_set(x_1190, 3, x_1189); -lean_inc(x_1093); -lean_inc(x_1065); -x_1191 = l_Lean_Syntax_node2(x_1065, x_1178, x_1190, x_1093); -x_1192 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; -lean_inc(x_1086); -lean_inc(x_1092); -x_1193 = l_Lean_addMacroScope(x_1092, x_1192, x_1086); -x_1194 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__75; -lean_inc(x_1065); -x_1195 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1195, 0, x_1065); -lean_ctor_set(x_1195, 1, x_1194); -lean_ctor_set(x_1195, 2, x_1193); -lean_ctor_set(x_1195, 3, x_1069); -lean_inc(x_1195); -lean_inc(x_1170); -lean_inc(x_1065); -x_1196 = l_Lean_Syntax_node3(x_1065, x_1184, x_1191, x_1170, x_1195); -lean_inc(x_1065); -x_1197 = l_Lean_Syntax_node3(x_1065, x_1082, x_1185, x_1123, x_1196); -x_1198 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__78; -lean_inc(x_1093); -lean_inc(x_1065); -x_1199 = l_Lean_Syntax_node1(x_1065, x_1198, x_1093); -x_1200 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__79; -lean_inc(x_1065); -x_1201 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1201, 0, x_1065); +x_1163 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__15; +lean_inc(x_1081); +lean_inc(x_1053); +x_1164 = l_Lean_Syntax_node2(x_1053, x_1163, x_1162, x_1081); +x_1165 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__71; +lean_inc(x_1074); +lean_inc(x_1080); +x_1166 = l_Lean_addMacroScope(x_1080, x_1165, x_1074); +x_1167 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__70; +lean_inc(x_1053); +x_1168 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1168, 0, x_1053); +lean_ctor_set(x_1168, 1, x_1167); +lean_ctor_set(x_1168, 2, x_1166); +lean_ctor_set(x_1168, 3, x_1057); +x_1169 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__13; +lean_inc(x_1168); +lean_inc(x_1155); +lean_inc(x_1053); +x_1170 = l_Lean_Syntax_node3(x_1053, x_1169, x_1164, x_1155, x_1168); +x_1171 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__41; +lean_inc(x_1074); +lean_inc(x_1080); +x_1172 = l_Lean_addMacroScope(x_1080, x_1171, x_1074); +x_1173 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__40; +x_1174 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__44; +lean_inc(x_1053); +x_1175 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1175, 0, x_1053); +lean_ctor_set(x_1175, 1, x_1173); +lean_ctor_set(x_1175, 2, x_1172); +lean_ctor_set(x_1175, 3, x_1174); +lean_inc(x_1081); +lean_inc(x_1053); +x_1176 = l_Lean_Syntax_node2(x_1053, x_1163, x_1175, x_1081); +x_1177 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__74; +lean_inc(x_1074); +lean_inc(x_1080); +x_1178 = l_Lean_addMacroScope(x_1080, x_1177, x_1074); +x_1179 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__73; +lean_inc(x_1053); +x_1180 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1180, 0, x_1053); +lean_ctor_set(x_1180, 1, x_1179); +lean_ctor_set(x_1180, 2, x_1178); +lean_ctor_set(x_1180, 3, x_1057); +lean_inc(x_1180); +lean_inc(x_1155); +lean_inc(x_1053); +x_1181 = l_Lean_Syntax_node3(x_1053, x_1169, x_1176, x_1155, x_1180); +lean_inc(x_1053); +x_1182 = l_Lean_Syntax_node3(x_1053, x_1070, x_1170, x_1109, x_1181); +x_1183 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__76; +lean_inc(x_1081); +lean_inc(x_1053); +x_1184 = l_Lean_Syntax_node1(x_1053, x_1183, x_1081); +x_1185 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__77; +lean_inc(x_1053); +x_1186 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1186, 0, x_1053); +lean_ctor_set(x_1186, 1, x_1185); +x_1187 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; +lean_inc_n(x_1081, 2); +lean_inc(x_1053); +x_1188 = l_Lean_Syntax_node6(x_1053, x_1187, x_1157, x_1081, x_1182, x_1184, x_1081, x_1186); +x_1189 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__80; +lean_inc_n(x_1081, 2); +lean_inc(x_1053); +x_1190 = l_Lean_Syntax_node2(x_1053, x_1189, x_1081, x_1081); +x_1191 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; +lean_inc(x_1074); +lean_inc(x_1080); +x_1192 = l_Lean_addMacroScope(x_1080, x_1191, x_1074); +x_1193 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; +lean_inc(x_1053); +x_1194 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1194, 0, x_1053); +lean_ctor_set(x_1194, 1, x_1193); +lean_ctor_set(x_1194, 2, x_1192); +lean_ctor_set(x_1194, 3, x_1057); +lean_inc(x_1194); +lean_inc(x_1053); +x_1195 = l_Lean_Syntax_node1(x_1053, x_1070, x_1194); +x_1196 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; +lean_inc(x_1053); +x_1197 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1197, 0, x_1053); +lean_ctor_set(x_1197, 1, x_1196); +x_1198 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; +lean_inc(x_1074); +lean_inc(x_1080); +x_1199 = l_Lean_addMacroScope(x_1080, x_1198, x_1074); +x_1200 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; +lean_inc(x_1053); +x_1201 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1201, 0, x_1053); lean_ctor_set(x_1201, 1, x_1200); -x_1202 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__69; -lean_inc_n(x_1093, 2); -lean_inc(x_1065); -x_1203 = l_Lean_Syntax_node6(x_1065, x_1202, x_1172, x_1093, x_1197, x_1199, x_1093, x_1201); -x_1204 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; -lean_inc_n(x_1093, 2); -lean_inc(x_1065); -x_1205 = l_Lean_Syntax_node2(x_1065, x_1204, x_1093, x_1093); -x_1206 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__8; -lean_inc(x_1086); -lean_inc(x_1092); -x_1207 = l_Lean_addMacroScope(x_1092, x_1206, x_1086); -x_1208 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__7; -lean_inc(x_1065); -x_1209 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1209, 0, x_1065); -lean_ctor_set(x_1209, 1, x_1208); -lean_ctor_set(x_1209, 2, x_1207); -lean_ctor_set(x_1209, 3, x_1069); -lean_inc(x_1209); -lean_inc(x_1065); -x_1210 = l_Lean_Syntax_node1(x_1065, x_1082, x_1209); -x_1211 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__9; -lean_inc(x_1065); -x_1212 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1212, 0, x_1065); -lean_ctor_set(x_1212, 1, x_1211); -x_1213 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__19; -lean_inc(x_1086); -lean_inc(x_1092); -x_1214 = l_Lean_addMacroScope(x_1092, x_1213, x_1086); -x_1215 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__18; -lean_inc(x_1065); -x_1216 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1216, 0, x_1065); -lean_ctor_set(x_1216, 1, x_1215); -lean_ctor_set(x_1216, 2, x_1214); -lean_ctor_set(x_1216, 3, x_1069); -x_1217 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; -lean_inc(x_1065); -x_1218 = l_Lean_Syntax_node1(x_1065, x_1217, x_1216); -lean_inc(x_1065); -x_1219 = l_Lean_Syntax_node1(x_1065, x_1082, x_1166); -x_1220 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; -lean_inc(x_1203); -lean_inc(x_1170); -lean_inc(x_1093); -lean_inc(x_1065); -x_1221 = l_Lean_Syntax_node5(x_1065, x_1220, x_1218, x_1093, x_1219, x_1170, x_1203); -x_1222 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; -lean_inc(x_1065); -x_1223 = l_Lean_Syntax_node1(x_1065, x_1222, x_1221); -x_1224 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; -lean_inc(x_1065); -x_1225 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1225, 0, x_1065); -lean_ctor_set(x_1225, 1, x_1224); -x_1226 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; -lean_inc(x_1093); -lean_inc(x_1065); -x_1227 = l_Lean_Syntax_node2(x_1065, x_1226, x_1093, x_1209); -lean_inc(x_1065); -x_1228 = l_Lean_Syntax_node1(x_1065, x_1082, x_1227); -x_1229 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; -lean_inc(x_1065); -x_1230 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1230, 0, x_1065); -lean_ctor_set(x_1230, 1, x_1229); -x_1231 = lean_array_size(x_1056); -x_1232 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_1069, x_1231, x_15, x_1056); -x_1233 = lean_array_size(x_1232); -x_1234 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_1233, x_15, x_1232); -x_1235 = l_Array_append___rarg(x_1080, x_1234); -lean_dec(x_1234); -lean_inc(x_1065); -x_1236 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1236, 0, x_1065); -lean_ctor_set(x_1236, 1, x_1082); -lean_ctor_set(x_1236, 2, x_1235); -x_1237 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; -lean_inc(x_1065); -x_1238 = l_Lean_Syntax_node1(x_1065, x_1237, x_1236); -x_1239 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; -lean_inc(x_1230); -lean_inc_n(x_1093, 2); -lean_inc(x_1225); -lean_inc(x_1065); -x_1240 = l_Lean_Syntax_node6(x_1065, x_1239, x_1225, x_1093, x_1093, x_1228, x_1230, x_1238); -x_1241 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; -lean_inc(x_1093); -lean_inc(x_1223); -lean_inc(x_1212); -lean_inc(x_1065); -x_1242 = l_Lean_Syntax_node4(x_1065, x_1241, x_1212, x_1223, x_1093, x_1240); -x_1243 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__90; -lean_inc(x_1170); -lean_inc(x_1093); -lean_inc(x_1065); -x_1244 = l_Lean_Syntax_node5(x_1065, x_1243, x_1183, x_1210, x_1093, x_1170, x_1242); -x_1245 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; -lean_inc(x_1065); -x_1246 = l_Lean_Syntax_node1(x_1065, x_1245, x_1244); -x_1247 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; -lean_inc(x_1205); -lean_inc_n(x_1093, 2); -lean_inc(x_1065); -x_1248 = l_Lean_Syntax_node4(x_1065, x_1247, x_1093, x_1093, x_1246, x_1205); -x_1249 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; -lean_inc(x_1086); -lean_inc(x_1092); -x_1250 = l_Lean_addMacroScope(x_1092, x_1249, x_1086); -x_1251 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; -lean_inc(x_1065); -x_1252 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1252, 0, x_1065); -lean_ctor_set(x_1252, 1, x_1251); -lean_ctor_set(x_1252, 2, x_1250); -lean_ctor_set(x_1252, 3, x_1069); -lean_inc(x_1065); -x_1253 = l_Lean_Syntax_node1(x_1065, x_1082, x_1252); -x_1254 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__104; -lean_inc(x_1065); -x_1255 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1255, 0, x_1065); -lean_ctor_set(x_1255, 1, x_1254); -x_1256 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; -lean_inc(x_1065); -x_1257 = l_Lean_Syntax_node2(x_1065, x_1256, x_1212, x_1223); -x_1258 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; -lean_inc(x_1093); -lean_inc(x_1065); -x_1259 = l_Lean_Syntax_node2(x_1065, x_1258, x_1257, x_1093); -x_1260 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; -lean_inc(x_1065); -x_1261 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1261, 0, x_1065); -lean_ctor_set(x_1261, 1, x_1260); -x_1262 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; -lean_inc(x_1086); -lean_inc(x_1092); -x_1263 = l_Lean_addMacroScope(x_1092, x_1262, x_1086); -x_1264 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; -lean_inc(x_1065); -x_1265 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1265, 0, x_1065); -lean_ctor_set(x_1265, 1, x_1264); -lean_ctor_set(x_1265, 2, x_1263); -lean_ctor_set(x_1265, 3, x_1069); -lean_inc(x_1065); -x_1266 = l_Lean_Syntax_node2(x_1065, x_1165, x_1157, x_1101); -lean_inc(x_1065); -x_1267 = l_Lean_Syntax_node1(x_1065, x_1082, x_1266); -x_1268 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; -lean_inc(x_1065); -x_1269 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1269, 0, x_1065); -lean_ctor_set(x_1269, 1, x_1268); -x_1270 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__119; -lean_inc(x_1086); -lean_inc(x_1092); -x_1271 = l_Lean_addMacroScope(x_1092, x_1270, x_1086); -x_1272 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__118; -x_1273 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122; -lean_inc(x_1065); -x_1274 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1274, 0, x_1065); -lean_ctor_set(x_1274, 1, x_1272); -lean_ctor_set(x_1274, 2, x_1271); -lean_ctor_set(x_1274, 3, x_1273); -lean_inc(x_1253); -lean_inc(x_1065); -x_1275 = l_Lean_Syntax_node2(x_1065, x_1084, x_1274, x_1253); -x_1276 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; -lean_inc(x_1065); -x_1277 = l_Lean_Syntax_node1(x_1065, x_1276, x_1275); -x_1278 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; -lean_inc(x_1265); -lean_inc(x_1065); -x_1279 = l_Lean_Syntax_node4(x_1065, x_1278, x_1265, x_1267, x_1269, x_1277); -x_1280 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__111; -lean_inc(x_1093); -lean_inc(x_1065); -x_1281 = l_Lean_Syntax_node3(x_1065, x_1280, x_1261, x_1093, x_1279); -lean_inc(x_1093); -lean_inc(x_1065); -x_1282 = l_Lean_Syntax_node2(x_1065, x_1258, x_1281, x_1093); -x_1283 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; -x_1284 = l_Lean_addMacroScope(x_1092, x_1283, x_1086); -x_1285 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; -x_1286 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; -lean_inc(x_1065); -x_1287 = lean_alloc_ctor(3, 4, 0); -lean_ctor_set(x_1287, 0, x_1065); -lean_ctor_set(x_1287, 1, x_1285); -lean_ctor_set(x_1287, 2, x_1284); -lean_ctor_set(x_1287, 3, x_1286); -x_1288 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; -lean_inc(x_1065); -x_1289 = lean_alloc_ctor(2, 2, 0); -lean_ctor_set(x_1289, 0, x_1065); -lean_ctor_set(x_1289, 1, x_1288); -lean_inc(x_1093); -lean_inc(x_1065); -x_1290 = l_Lean_Syntax_node2(x_1065, x_1226, x_1093, x_1265); -lean_inc(x_1065); -x_1291 = l_Lean_Syntax_node1(x_1065, x_1082, x_1290); -x_1292 = lean_array_size(x_1057); -x_1293 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_1069, x_1292, x_15, x_1057); -x_1294 = lean_array_size(x_1293); -x_1295 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_1294, x_15, x_1293); -x_1296 = l_Array_append___rarg(x_1080, x_1295); -lean_dec(x_1295); -lean_inc(x_1065); -x_1297 = lean_alloc_ctor(1, 3, 0); -lean_ctor_set(x_1297, 0, x_1065); -lean_ctor_set(x_1297, 1, x_1082); -lean_ctor_set(x_1297, 2, x_1296); -lean_inc(x_1065); -x_1298 = l_Lean_Syntax_node1(x_1065, x_1237, x_1297); -lean_inc_n(x_1093, 2); -lean_inc(x_1065); -x_1299 = l_Lean_Syntax_node6(x_1065, x_1239, x_1225, x_1093, x_1093, x_1291, x_1230, x_1298); -x_1300 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; -lean_inc(x_1065); -x_1301 = l_Lean_Syntax_node3(x_1065, x_1300, x_1287, x_1289, x_1299); -lean_inc(x_1065); -x_1302 = l_Lean_Syntax_node1(x_1065, x_1276, x_1301); -lean_inc(x_1093); -lean_inc(x_1065); -x_1303 = l_Lean_Syntax_node2(x_1065, x_1258, x_1302, x_1093); -lean_inc(x_1065); -x_1304 = l_Lean_Syntax_node3(x_1065, x_1082, x_1259, x_1282, x_1303); -x_1305 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; -lean_inc(x_1065); -x_1306 = l_Lean_Syntax_node1(x_1065, x_1305, x_1304); -x_1307 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; -lean_inc(x_1065); -x_1308 = l_Lean_Syntax_node2(x_1065, x_1307, x_1255, x_1306); -lean_inc(x_1170); -lean_inc(x_1093); -lean_inc(x_1065); -x_1309 = l_Lean_Syntax_node5(x_1065, x_1243, x_1195, x_1253, x_1093, x_1170, x_1308); -lean_inc(x_1065); -x_1310 = l_Lean_Syntax_node1(x_1065, x_1245, x_1309); -lean_inc(x_1205); -lean_inc_n(x_1093, 2); -lean_inc(x_1065); -x_1311 = l_Lean_Syntax_node4(x_1065, x_1247, x_1093, x_1093, x_1310, x_1205); -lean_inc(x_1093); -lean_inc(x_1065); -x_1312 = l_Lean_Syntax_node3(x_1065, x_1082, x_1248, x_1093, x_1311); -x_1313 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; -lean_inc(x_1065); -x_1314 = l_Lean_Syntax_node2(x_1065, x_1313, x_1107, x_1312); -lean_inc(x_1065); -x_1315 = l_Lean_Syntax_node1(x_1065, x_1082, x_1314); -x_1316 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__67; -lean_inc(x_1065); -x_1317 = l_Lean_Syntax_node4(x_1065, x_1316, x_1170, x_1203, x_1205, x_1315); -x_1318 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__48; -lean_inc(x_1093); -lean_inc(x_1065); -x_1319 = l_Lean_Syntax_node6(x_1065, x_1318, x_1153, x_1155, x_1093, x_1093, x_1168, x_1317); -lean_inc(x_1065); -x_1320 = l_Lean_Syntax_node2(x_1065, x_1136, x_1151, x_1319); -x_1321 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__44; -lean_inc(x_1065); -x_1322 = l_Lean_Syntax_node3(x_1065, x_1321, x_1143, x_1145, x_1320); -x_1323 = l_Lean_Syntax_node2(x_1065, x_1082, x_1137, x_1322); -if (lean_is_scalar(x_1090)) { - x_1324 = lean_alloc_ctor(0, 2, 0); +lean_ctor_set(x_1201, 2, x_1199); +lean_ctor_set(x_1201, 3, x_1057); +x_1202 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__16; +lean_inc(x_1053); +x_1203 = l_Lean_Syntax_node1(x_1053, x_1202, x_1201); +lean_inc(x_1053); +x_1204 = l_Lean_Syntax_node1(x_1053, x_1070, x_1151); +x_1205 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__14; +lean_inc(x_1188); +lean_inc(x_1155); +lean_inc(x_1081); +lean_inc(x_1053); +x_1206 = l_Lean_Syntax_node5(x_1053, x_1205, x_1203, x_1081, x_1204, x_1155, x_1188); +x_1207 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__12; +lean_inc(x_1053); +x_1208 = l_Lean_Syntax_node1(x_1053, x_1207, x_1206); +x_1209 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__20; +lean_inc(x_1053); +x_1210 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1210, 0, x_1053); +lean_ctor_set(x_1210, 1, x_1209); +x_1211 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__23; +lean_inc(x_1081); +lean_inc(x_1053); +x_1212 = l_Lean_Syntax_node2(x_1053, x_1211, x_1081, x_1194); +lean_inc(x_1053); +x_1213 = l_Lean_Syntax_node1(x_1053, x_1070, x_1212); +x_1214 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__24; +lean_inc(x_1053); +x_1215 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1215, 0, x_1053); +lean_ctor_set(x_1215, 1, x_1214); +x_1216 = lean_array_size(x_1044); +x_1217 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__17(x_1057, x_1216, x_15, x_1044); +x_1218 = lean_array_size(x_1217); +x_1219 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_1218, x_15, x_1217); +x_1220 = l_Array_append___rarg(x_1068, x_1219); +lean_dec(x_1219); +lean_inc(x_1053); +x_1221 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1221, 0, x_1053); +lean_ctor_set(x_1221, 1, x_1070); +lean_ctor_set(x_1221, 2, x_1220); +x_1222 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__26; +lean_inc(x_1053); +x_1223 = l_Lean_Syntax_node1(x_1053, x_1222, x_1221); +x_1224 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__21; +lean_inc(x_1215); +lean_inc_n(x_1081, 2); +lean_inc(x_1210); +lean_inc(x_1053); +x_1225 = l_Lean_Syntax_node6(x_1053, x_1224, x_1210, x_1081, x_1081, x_1213, x_1215, x_1223); +x_1226 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__10; +lean_inc(x_1081); +lean_inc(x_1208); +lean_inc(x_1197); +lean_inc(x_1053); +x_1227 = l_Lean_Syntax_node4(x_1053, x_1226, x_1197, x_1208, x_1081, x_1225); +x_1228 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__88; +lean_inc(x_1155); +lean_inc(x_1081); +lean_inc(x_1053); +x_1229 = l_Lean_Syntax_node5(x_1053, x_1228, x_1168, x_1195, x_1081, x_1155, x_1227); +x_1230 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__86; +lean_inc(x_1053); +x_1231 = l_Lean_Syntax_node1(x_1053, x_1230, x_1229); +x_1232 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__84; +lean_inc(x_1190); +lean_inc_n(x_1081, 2); +lean_inc(x_1053); +x_1233 = l_Lean_Syntax_node4(x_1053, x_1232, x_1081, x_1081, x_1231, x_1190); +x_1234 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__101; +lean_inc(x_1074); +lean_inc(x_1080); +x_1235 = l_Lean_addMacroScope(x_1080, x_1234, x_1074); +x_1236 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__100; +lean_inc(x_1053); +x_1237 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1237, 0, x_1053); +lean_ctor_set(x_1237, 1, x_1236); +lean_ctor_set(x_1237, 2, x_1235); +lean_ctor_set(x_1237, 3, x_1057); +lean_inc(x_1053); +x_1238 = l_Lean_Syntax_node1(x_1053, x_1070, x_1237); +x_1239 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__102; +lean_inc(x_1053); +x_1240 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1240, 0, x_1053); +lean_ctor_set(x_1240, 1, x_1239); +x_1241 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__28; +lean_inc(x_1053); +x_1242 = l_Lean_Syntax_node2(x_1053, x_1241, x_1197, x_1208); +x_1243 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__107; +lean_inc(x_1081); +lean_inc(x_1053); +x_1244 = l_Lean_Syntax_node2(x_1053, x_1243, x_1242, x_1081); +x_1245 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__110; +lean_inc(x_1053); +x_1246 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1246, 0, x_1053); +lean_ctor_set(x_1246, 1, x_1245); +x_1247 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__31; +lean_inc(x_1074); +lean_inc(x_1080); +x_1248 = l_Lean_addMacroScope(x_1080, x_1247, x_1074); +x_1249 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__30; +lean_inc(x_1053); +x_1250 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1250, 0, x_1053); +lean_ctor_set(x_1250, 1, x_1249); +lean_ctor_set(x_1250, 2, x_1248); +lean_ctor_set(x_1250, 3, x_1057); +lean_inc(x_1053); +x_1251 = l_Lean_Syntax_node2(x_1053, x_1150, x_1142, x_1089); +lean_inc(x_1053); +x_1252 = l_Lean_Syntax_node1(x_1053, x_1070, x_1251); +x_1253 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__22; +lean_inc(x_1053); +x_1254 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1254, 0, x_1053); +lean_ctor_set(x_1254, 1, x_1253); +x_1255 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__117; +lean_inc(x_1074); +lean_inc(x_1080); +x_1256 = l_Lean_addMacroScope(x_1080, x_1255, x_1074); +x_1257 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__116; +x_1258 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__120; +lean_inc(x_1053); +x_1259 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1259, 0, x_1053); +lean_ctor_set(x_1259, 1, x_1257); +lean_ctor_set(x_1259, 2, x_1256); +lean_ctor_set(x_1259, 3, x_1258); +lean_inc(x_1238); +lean_inc(x_1053); +x_1260 = l_Lean_Syntax_node2(x_1053, x_1072, x_1259, x_1238); +x_1261 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__114; +lean_inc(x_1053); +x_1262 = l_Lean_Syntax_node1(x_1053, x_1261, x_1260); +x_1263 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__112; +lean_inc(x_1250); +lean_inc(x_1053); +x_1264 = l_Lean_Syntax_node4(x_1053, x_1263, x_1250, x_1252, x_1254, x_1262); +x_1265 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__109; +lean_inc(x_1081); +lean_inc(x_1053); +x_1266 = l_Lean_Syntax_node3(x_1053, x_1265, x_1246, x_1081, x_1264); +lean_inc(x_1081); +lean_inc(x_1053); +x_1267 = l_Lean_Syntax_node2(x_1053, x_1243, x_1266, x_1081); +x_1268 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__36; +x_1269 = l_Lean_addMacroScope(x_1080, x_1268, x_1074); +x_1270 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__35; +x_1271 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__40; +lean_inc(x_1053); +x_1272 = lean_alloc_ctor(3, 4, 0); +lean_ctor_set(x_1272, 0, x_1053); +lean_ctor_set(x_1272, 1, x_1270); +lean_ctor_set(x_1272, 2, x_1269); +lean_ctor_set(x_1272, 3, x_1271); +x_1273 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__41; +lean_inc(x_1053); +x_1274 = lean_alloc_ctor(2, 2, 0); +lean_ctor_set(x_1274, 0, x_1053); +lean_ctor_set(x_1274, 1, x_1273); +lean_inc(x_1081); +lean_inc(x_1053); +x_1275 = l_Lean_Syntax_node2(x_1053, x_1211, x_1081, x_1250); +lean_inc(x_1053); +x_1276 = l_Lean_Syntax_node1(x_1053, x_1070, x_1275); +x_1277 = lean_array_size(x_1045); +x_1278 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__19(x_1057, x_1277, x_15, x_1045); +x_1279 = lean_array_size(x_1278); +x_1280 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___spec__18(x_1279, x_15, x_1278); +x_1281 = l_Array_append___rarg(x_1068, x_1280); +lean_dec(x_1280); +lean_inc(x_1053); +x_1282 = lean_alloc_ctor(1, 3, 0); +lean_ctor_set(x_1282, 0, x_1053); +lean_ctor_set(x_1282, 1, x_1070); +lean_ctor_set(x_1282, 2, x_1281); +lean_inc(x_1053); +x_1283 = l_Lean_Syntax_node1(x_1053, x_1222, x_1282); +lean_inc_n(x_1081, 2); +lean_inc(x_1053); +x_1284 = l_Lean_Syntax_node6(x_1053, x_1224, x_1210, x_1081, x_1081, x_1276, x_1215, x_1283); +x_1285 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInductiveInstance___lambda__1___closed__33; +lean_inc(x_1053); +x_1286 = l_Lean_Syntax_node3(x_1053, x_1285, x_1272, x_1274, x_1284); +lean_inc(x_1053); +x_1287 = l_Lean_Syntax_node1(x_1053, x_1261, x_1286); +lean_inc(x_1081); +lean_inc(x_1053); +x_1288 = l_Lean_Syntax_node2(x_1053, x_1243, x_1287, x_1081); +lean_inc(x_1053); +x_1289 = l_Lean_Syntax_node3(x_1053, x_1070, x_1244, x_1267, x_1288); +x_1290 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__105; +lean_inc(x_1053); +x_1291 = l_Lean_Syntax_node1(x_1053, x_1290, x_1289); +x_1292 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__103; +lean_inc(x_1053); +x_1293 = l_Lean_Syntax_node2(x_1053, x_1292, x_1240, x_1291); +lean_inc(x_1155); +lean_inc(x_1081); +lean_inc(x_1053); +x_1294 = l_Lean_Syntax_node5(x_1053, x_1228, x_1180, x_1238, x_1081, x_1155, x_1293); +lean_inc(x_1053); +x_1295 = l_Lean_Syntax_node1(x_1053, x_1230, x_1294); +lean_inc(x_1190); +lean_inc_n(x_1081, 2); +lean_inc(x_1053); +x_1296 = l_Lean_Syntax_node4(x_1053, x_1232, x_1081, x_1081, x_1295, x_1190); +lean_inc(x_1081); +lean_inc(x_1053); +x_1297 = l_Lean_Syntax_node3(x_1053, x_1070, x_1233, x_1081, x_1296); +x_1298 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__82; +lean_inc(x_1053); +x_1299 = l_Lean_Syntax_node2(x_1053, x_1298, x_1095, x_1297); +lean_inc(x_1053); +x_1300 = l_Lean_Syntax_node1(x_1053, x_1070, x_1299); +x_1301 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__65; +lean_inc(x_1053); +x_1302 = l_Lean_Syntax_node4(x_1053, x_1301, x_1155, x_1188, x_1190, x_1300); +x_1303 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__46; +lean_inc(x_1081); +lean_inc(x_1053); +x_1304 = l_Lean_Syntax_node6(x_1053, x_1303, x_1138, x_1140, x_1081, x_1081, x_1153, x_1302); +lean_inc(x_1053); +x_1305 = l_Lean_Syntax_node2(x_1053, x_1121, x_1136, x_1304); +x_1306 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__42; +lean_inc(x_1053); +x_1307 = l_Lean_Syntax_node3(x_1053, x_1306, x_1128, x_1130, x_1305); +x_1308 = l_Lean_Syntax_node2(x_1053, x_1070, x_1122, x_1307); +if (lean_is_scalar(x_1078)) { + x_1309 = lean_alloc_ctor(0, 2, 0); } else { - x_1324 = x_1090; + x_1309 = x_1078; } -lean_ctor_set(x_1324, 0, x_1323); -lean_ctor_set(x_1324, 1, x_1089); -return x_1324; +lean_ctor_set(x_1309, 0, x_1308); +lean_ctor_set(x_1309, 1, x_1077); +return x_1309; } else { -lean_object* x_1325; lean_object* x_1326; lean_object* x_1327; lean_object* x_1328; -lean_dec(x_1058); -lean_dec(x_1057); -lean_dec(x_1056); -lean_dec(x_1053); +lean_object* x_1310; lean_object* x_1311; lean_object* x_1312; lean_object* x_1313; +lean_dec(x_1046); +lean_dec(x_1045); +lean_dec(x_1044); +lean_dec(x_1041); lean_dec(x_10); lean_dec(x_9); lean_dec(x_1); -x_1325 = lean_ctor_get(x_1060, 0); -lean_inc(x_1325); -x_1326 = lean_ctor_get(x_1060, 1); -lean_inc(x_1326); -if (lean_is_exclusive(x_1060)) { - lean_ctor_release(x_1060, 0); - lean_ctor_release(x_1060, 1); - x_1327 = x_1060; +x_1310 = lean_ctor_get(x_1048, 0); +lean_inc(x_1310); +x_1311 = lean_ctor_get(x_1048, 1); +lean_inc(x_1311); +if (lean_is_exclusive(x_1048)) { + lean_ctor_release(x_1048, 0); + lean_ctor_release(x_1048, 1); + x_1312 = x_1048; } else { - lean_dec_ref(x_1060); - x_1327 = lean_box(0); + lean_dec_ref(x_1048); + x_1312 = lean_box(0); } -if (lean_is_scalar(x_1327)) { - x_1328 = lean_alloc_ctor(1, 2, 0); +if (lean_is_scalar(x_1312)) { + x_1313 = lean_alloc_ctor(1, 2, 0); } else { - x_1328 = x_1327; + x_1313 = x_1312; } -lean_ctor_set(x_1328, 0, x_1325); -lean_ctor_set(x_1328, 1, x_1326); -return x_1328; +lean_ctor_set(x_1313, 0, x_1310); +lean_ctor_set(x_1313, 1, x_1311); +return x_1313; } } } else { -uint8_t x_1329; +uint8_t x_1314; lean_dec(x_10); lean_dec(x_9); lean_dec(x_8); @@ -14251,23 +14154,23 @@ lean_dec(x_6); lean_dec(x_5); lean_dec(x_2); lean_dec(x_1); -x_1329 = !lean_is_exclusive(x_16); -if (x_1329 == 0) +x_1314 = !lean_is_exclusive(x_16); +if (x_1314 == 0) { return x_16; } else { -lean_object* x_1330; lean_object* x_1331; lean_object* x_1332; -x_1330 = lean_ctor_get(x_16, 0); -x_1331 = lean_ctor_get(x_16, 1); -lean_inc(x_1331); -lean_inc(x_1330); +lean_object* x_1315; lean_object* x_1316; lean_object* x_1317; +x_1315 = lean_ctor_get(x_16, 0); +x_1316 = lean_ctor_get(x_16, 1); +lean_inc(x_1316); +lean_inc(x_1315); lean_dec(x_16); -x_1332 = lean_alloc_ctor(1, 2, 0); -lean_ctor_set(x_1332, 0, x_1330); -lean_ctor_set(x_1332, 1, x_1331); -return x_1332; +x_1317 = lean_alloc_ctor(1, 2, 0); +lean_ctor_set(x_1317, 0, x_1315); +lean_ctor_set(x_1317, 1, x_1316); +return x_1317; } } } @@ -15111,7 +15014,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = lean_box(0); -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__55; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_2); lean_ctor_set(x_3, 1, x_1); @@ -15123,7 +15026,7 @@ _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; x_1 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__5___closed__4; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__58; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__56; x_3 = lean_alloc_ctor(1, 2, 0); lean_ctor_set(x_3, 0, x_1); lean_ctor_set(x_3, 1, x_2); @@ -15200,9 +15103,9 @@ x_32 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_32, 0, x_21); lean_ctor_set(x_32, 1, x_30); lean_ctor_set(x_32, 2, x_31); -x_33 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_33 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; x_34 = l_Lean_addMacroScope(x_28, x_33, x_22); -x_35 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; +x_35 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; x_36 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__5___closed__5; lean_inc(x_21); x_37 = lean_alloc_ctor(3, 4, 0); @@ -15257,9 +15160,9 @@ x_59 = lean_alloc_ctor(1, 3, 0); lean_ctor_set(x_59, 0, x_21); lean_ctor_set(x_59, 1, x_57); lean_ctor_set(x_59, 2, x_58); -x_60 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__54; +x_60 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__52; x_61 = l_Lean_addMacroScope(x_54, x_60, x_22); -x_62 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; +x_62 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__51; x_63 = l_Array_mapMUnsafe_map___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___spec__5___closed__5; lean_inc(x_21); x_64 = lean_alloc_ctor(3, 4, 0); @@ -16012,7 +15915,7 @@ lean_dec(x_1); return x_5; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__1() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__1() { _start: { lean_object* x_1; @@ -16020,7 +15923,7 @@ x_1 = lean_alloc_closure((void*)(l___private_Lean_Server_Rpc_Deriving_0__Lean_Se return x_1; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__2() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__2() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; @@ -16030,27 +15933,27 @@ x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__3() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__3() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__2; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__2; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__28; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__4() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__4() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__3; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__3; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__29; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__5() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__5() { _start: { lean_object* x_1; @@ -16058,17 +15961,17 @@ x_1 = lean_mk_string_unchecked("initFn", 6, 6); return x_1; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__6() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__6() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__4; -x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__5; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__4; +x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__5; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__7() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__7() { _start: { lean_object* x_1; @@ -16076,37 +15979,37 @@ x_1 = lean_mk_string_unchecked("_@", 2, 2); return x_1; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__8() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__8() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__6; -x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__7; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__6; +x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__7; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__9() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__9() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__8; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__8; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__4; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__10() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__10() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__9; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__9; x_2 = l_Array_forIn_x27Unsafe_loop___at___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___spec__1___closed__28; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__11() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__11() { _start: { lean_object* x_1; @@ -16114,27 +16017,27 @@ x_1 = lean_mk_string_unchecked("Rpc", 3, 3); return x_1; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__12() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__12() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__10; -x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__11; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__10; +x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__11; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__13() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__13() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__12; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__12; x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__2; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__14() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__14() { _start: { lean_object* x_1; @@ -16142,32 +16045,32 @@ x_1 = lean_mk_string_unchecked("_hyg", 4, 4); return x_1; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__15() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__15() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__13; -x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__14; +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__13; +x_2 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__14; x_3 = l_Lean_Name_str___override(x_1, x_2); return x_3; } } -static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__16() { +static lean_object* _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__16() { _start: { lean_object* x_1; lean_object* x_2; lean_object* x_3; -x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__15; -x_2 = lean_unsigned_to_nat(4847u); +x_1 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__15; +x_2 = lean_unsigned_to_nat(4819u); x_3 = l_Lean_Name_num___override(x_1, x_2); return x_3; } } -LEAN_EXPORT lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847_(lean_object* x_1) { +LEAN_EXPORT lean_object* l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819_(lean_object* x_1) { _start: { lean_object* x_2; lean_object* x_3; lean_object* x_4; -x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__55; -x_3 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__1; +x_2 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__53; +x_3 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__1; x_4 = l_Lean_Elab_registerDerivingHandler(x_2, x_3, x_1); if (lean_obj_tag(x_4) == 0) { @@ -16177,7 +16080,7 @@ lean_inc(x_5); lean_dec(x_4); x_6 = l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__3; x_7 = 0; -x_8 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__16; +x_8 = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__16; x_9 = l_Lean_registerTraceClass(x_6, x_7, x_8, x_5); return x_9; } @@ -16618,10 +16521,6 @@ l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructure lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__121); l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122 = _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122(); lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__122); -l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__123 = _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__123(); -lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__123); -l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124 = _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124(); -lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___lambda__1___closed__124); l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__1 = _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__1(); lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__1); l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__2 = _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveStructureInstance___closed__2(); @@ -16798,39 +16697,39 @@ l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance_ lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___closed__1); l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___closed__2 = _init_l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___closed__2(); lean_mark_persistent(l___private_Lean_Server_Rpc_Deriving_0__Lean_Server_RpcEncodable_deriveInstance___closed__2); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__1 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__1(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__1); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__2 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__2(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__2); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__3 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__3(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__3); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__4 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__4(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__4); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__5 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__5(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__5); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__6 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__6(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__6); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__7 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__7(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__7); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__8 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__8(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__8); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__9 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__9(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__9); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__10 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__10(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__10); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__11 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__11(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__11); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__12 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__12(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__12); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__13 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__13(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__13); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__14 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__14(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__14); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__15 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__15(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__15); -l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__16 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__16(); -lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847____closed__16); -res = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4847_(lean_io_mk_world()); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__1 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__1(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__1); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__2 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__2(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__2); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__3 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__3(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__3); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__4 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__4(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__4); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__5 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__5(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__5); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__6 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__6(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__6); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__7 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__7(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__7); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__8 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__8(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__8); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__9 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__9(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__9); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__10 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__10(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__10); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__11 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__11(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__11); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__12 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__12(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__12); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__13 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__13(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__13); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__14 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__14(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__14); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__15 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__15(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__15); +l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__16 = _init_l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__16(); +lean_mark_persistent(l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819____closed__16); +res = l_Lean_Server_RpcEncodable_initFn____x40_Lean_Server_Rpc_Deriving___hyg_4819_(lean_io_mk_world()); if (lean_io_result_is_error(res)) return res; lean_dec_ref(res); return lean_io_result_mk_ok(lean_box(0)); diff --git a/stage0/stdlib/Lean/Server/Watchdog.c b/stage0/stdlib/Lean/Server/Watchdog.c index 0d6899e731..deff88139b 100644 --- a/stage0/stdlib/Lean/Server/Watchdog.c +++ b/stage0/stdlib/Lean/Server/Watchdog.c @@ -406,6 +406,7 @@ LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_parseParams___at_Lean_Server_Wat lean_object* lean_get_stdin(lean_object*); static lean_object* l_Lean_Json_toStructured_x3f___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__4___closed__4; LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleCallHierarchyIncomingCalls_collapseSameIncomingCalls___lambda__1(lean_object*); +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); lean_object* l_System_FilePath_addExtension(lean_object*, lean_object*); static lean_object* l_IO_FS_Stream_readNotificationAs___at_Lean_Server_Watchdog_initAndRunWatchdogAux___spec__2___closed__33; lean_object* lean_get_stderr(lean_object*); @@ -848,7 +849,6 @@ lean_object* lean_array_uset(lean_object*, size_t, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls___spec__7___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Server_Watchdog_handleRename___lambda__1___closed__3; lean_object* l___private_Lean_Data_Lsp_LanguageFeatures_0__Lean_Lsp_fromJsonCallHierarchyPrepareParams____x40_Lean_Data_Lsp_LanguageFeatures___hyg_5738_(lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Server_Watchdog_handleIleanInfoUpdate(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Server_Watchdog_handleCallHierarchyOutgoingCalls_collapseSameOutgoingCalls___spec__10___boxed(lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Array_anyMUnsafe_any___at_Lean_Server_Watchdog_handleDidChangeWatchedFiles___spec__2___boxed(lean_object*, lean_object*, lean_object*, lean_object*); @@ -46221,7 +46221,7 @@ lean_inc(x_23); x_27 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__2(x_23, x_26); x_28 = l_IO_FS_Stream_readRequestAs___at_Lean_Server_Watchdog_initAndRunWatchdog___spec__2___closed__3; lean_inc(x_23); -x_29 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_23, x_28); +x_29 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_23, x_28); x_30 = l_IO_FS_Stream_readRequestAs___at_Lean_Server_Watchdog_initAndRunWatchdog___spec__2___closed__4; lean_inc(x_23); x_31 = l_Lean_Json_getObjValAs_x3f___at_Lean_Lsp_instFromJsonInitializeParams___spec__3(x_23, x_30); diff --git a/stage0/stdlib/Lean/Util/Profiler.c b/stage0/stdlib/Lean/Util/Profiler.c index 7746964e0b..b622694c49 100644 --- a/stage0/stdlib/Lean/Util/Profiler.c +++ b/stage0/stdlib/Lean/Util/Profiler.c @@ -14,6 +14,7 @@ extern "C" { #endif static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonFrameTable____x40_Lean_Util_Profiler___hyg_2112____closed__10; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(lean_object*, lean_object*); lean_object* l_Lean_JsonNumber_fromNat(lean_object*); LEAN_EXPORT lean_object* l_Array_foldlMUnsafe_fold___at_Lean_Firefox_Profile_collide___spec__3(lean_object*, size_t, size_t, lean_object*); static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonFuncTable____x40_Lean_Util_Profiler___hyg_1585____closed__6; @@ -265,7 +266,6 @@ lean_object* lean_nat_to_int(lean_object*); lean_object* lean_nat_div(lean_object*, lean_object*); extern lean_object* l_instInhabitedFloat; static lean_object* l_Lean_Firefox_Profile_collide___closed__7; -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(lean_object*, lean_object*); static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonFuncTable____x40_Lean_Util_Profiler___hyg_1585____closed__18; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonProfile____x40_Lean_Util_Profiler___hyg_3535____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonStackTable____x40_Lean_Util_Profiler___hyg_807____closed__2; @@ -334,6 +334,7 @@ LEAN_EXPORT lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJson static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonCategory____x40_Lean_Util_Profiler___hyg_44____closed__15; static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonFrameTable____x40_Lean_Util_Profiler___hyg_2112____closed__3; static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonResourceTable____x40_Lean_Util_Profiler___hyg_2658____closed__10; +lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(lean_object*, lean_object*); static lean_object* l_Lean_Firefox_instFromJsonThread___closed__1; static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonSamplesTable____x40_Lean_Util_Profiler___hyg_1172____closed__9; static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonProfileMeta____x40_Lean_Util_Profiler___hyg_333____closed__6; @@ -624,7 +625,6 @@ static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonStack static lean_object* l_Lean_Firefox_Profile_export___closed__8; LEAN_EXPORT lean_object* l_Std_Range_forIn_x27_loop___at___private_Lean_Util_Profiler_0__Lean_Firefox_collideThreads_collideSamples___spec__1(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); lean_object* lean_array_uset(lean_object*, size_t, lean_object*); -lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(lean_object*, lean_object*); static lean_object* l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonProfile____x40_Lean_Util_Profiler___hyg_3535____closed__15; LEAN_EXPORT lean_object* l_Lean_Json_getObjValAs_x3f___at___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonStackTable____x40_Lean_Util_Profiler___hyg_807____spec__1___boxed(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Std_DHashMap_Internal_Raw_u2080_expand_go___at___private_Lean_Util_Profiler_0__Lean_Firefox_addTrace_go___spec__10(lean_object*, lean_object*, lean_object*); @@ -1048,7 +1048,7 @@ _start: lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonCategory____x40_Lean_Util_Profiler___hyg_44____closed__1; lean_inc(x_1); -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -1086,7 +1086,7 @@ lean_inc(x_12); lean_dec(x_3); x_13 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonCategory____x40_Lean_Util_Profiler___hyg_44____closed__15; lean_inc(x_1); -x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_13); +x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_13); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -2374,7 +2374,7 @@ lean_inc(x_45); lean_dec(x_36); x_46 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonProfileMeta____x40_Lean_Util_Profiler___hyg_333____closed__25; lean_inc(x_1); -x_47 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_46); +x_47 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_46); if (lean_obj_tag(x_47) == 0) { uint8_t x_48; @@ -4912,7 +4912,7 @@ lean_inc(x_34); lean_dec(x_25); x_35 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonSamplesTable____x40_Lean_Util_Profiler___hyg_1172____closed__20; lean_inc(x_1); -x_36 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_35); +x_36 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_35); if (lean_obj_tag(x_36) == 0) { uint8_t x_37; @@ -8075,7 +8075,7 @@ _start: lean_object* x_2; lean_object* x_3; x_2 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonCategory____x40_Lean_Util_Profiler___hyg_44____closed__1; lean_inc(x_1); -x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_2); +x_3 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_2); if (lean_obj_tag(x_3) == 0) { uint8_t x_4; @@ -8113,7 +8113,7 @@ lean_inc(x_12); lean_dec(x_3); x_13 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonProfileMeta____x40_Lean_Util_Profiler___hyg_333____closed__20; lean_inc(x_1); -x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__1(x_1, x_13); +x_14 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__1(x_1, x_13); if (lean_obj_tag(x_14) == 0) { uint8_t x_15; @@ -8152,7 +8152,7 @@ lean_inc(x_23); lean_dec(x_14); x_24 = l___private_Lean_Util_Profiler_0__Lean_Firefox_fromJsonThread____x40_Lean_Util_Profiler___hyg_2917____closed__9; lean_inc(x_1); -x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2727____spec__4(x_1, x_24); +x_25 = l_Lean_Json_getObjValAs_x3f___at___private_Lean_Message_0__Lean_fromJsonBaseMessage____x40_Lean_Message___hyg_2790____spec__4(x_1, x_24); if (lean_obj_tag(x_25) == 0) { uint8_t x_26; diff --git a/stage0/stdlib/Lean/Widget/Diff.c b/stage0/stdlib/Lean/Widget/Diff.c index 3aa2934778..d9dde85fc9 100644 --- a/stage0/stdlib/Lean/Widget/Diff.c +++ b/stage0/stdlib/Lean/Widget/Diff.c @@ -83,6 +83,7 @@ LEAN_EXPORT lean_object* l_List_foldlM___at_Lean_Widget_diffInteractiveGoals___s static lean_object* l_Lean_Widget_diffInteractiveGoals___closed__1; LEAN_EXPORT lean_object* l_Lean_Widget_exprDiffCore_piDiff___lambda__2(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); static lean_object* l_Lean_Widget_diffInteractiveGoal___closed__8; +lean_object* l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t lean_expr_eqv(lean_object*, lean_object*); lean_object* l_Lean_SubExpr_Pos_toString(lean_object*); lean_object* l_Array_zip___rarg(lean_object*, lean_object*); @@ -192,7 +193,6 @@ static lean_object* l_Array_forIn_x27Unsafe_loop___at_Lean_Widget_diffHypotheses static lean_object* l_Lean_Widget_ExprDiffTag_toString___closed__1; lean_object* lean_array_mk(lean_object*); LEAN_EXPORT uint8_t l_Array_mapMUnsafe_map___at_Lean_Widget_diffInteractiveGoals___spec__3___lambda__3(lean_object*, lean_object*); -lean_object* l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(lean_object*, uint8_t, lean_object*, lean_object*, uint8_t, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); uint8_t l_Lean_Name_quickCmp(lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Widget_addDiffTags___lambda__1___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); LEAN_EXPORT lean_object* l_Lean_Widget_exprDiffCore_piDiff___lambda__3___boxed(lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*, lean_object*); @@ -4268,7 +4268,7 @@ lean_closure_set(x_50, 1, x_24); lean_closure_set(x_50, 2, x_16); lean_closure_set(x_50, 3, x_28); x_51 = 0; -x_52 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_10, x_13, x_11, x_50, x_51, x_3, x_4, x_5, x_6, x_34); +x_52 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_10, x_13, x_11, x_50, x_51, x_3, x_4, x_5, x_6, x_34); if (lean_obj_tag(x_52) == 0) { uint8_t x_53; @@ -4374,7 +4374,7 @@ lean_closure_set(x_79, 1, x_24); lean_closure_set(x_79, 2, x_16); lean_closure_set(x_79, 3, x_28); x_80 = 0; -x_81 = l_Lean_Meta_withLocalDecl___at___private_Lean_Meta_SynthInstance_0__Lean_Meta_SynthInstance_removeUnusedArguments_x3f___spec__2___rarg(x_10, x_13, x_11, x_79, x_80, x_3, x_4, x_5, x_6, x_62); +x_81 = l_Lean_Meta_withLocalDecl___at_Lean_Meta_addPPExplicitToExposeDiff_visit___spec__3___rarg(x_10, x_13, x_11, x_79, x_80, x_3, x_4, x_5, x_6, x_62); if (lean_obj_tag(x_81) == 0) { lean_object* x_82; lean_object* x_83; lean_object* x_84; lean_object* x_85;