From a313ce8036b60ddf262c7f1500e500abc8ace10c Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 7 Aug 2024 17:45:10 +0200 Subject: [PATCH 01/14] Derive Show for SMT result types --- booster/library/Booster/SMT/Interface.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/booster/library/Booster/SMT/Interface.hs b/booster/library/Booster/SMT/Interface.hs index e131435080..d321e00c9e 100644 --- a/booster/library/Booster/SMT/Interface.hs +++ b/booster/library/Booster/SMT/Interface.hs @@ -191,7 +191,7 @@ finaliseSolver ctxt = do pattern IsUnknown :: unknown -> Either unknown b pattern IsUnknown u = Left u -newtype IsSat' a = IsSat' (Maybe a) deriving (Functor) +newtype IsSat' a = IsSat' (Maybe a) deriving (Functor, Show) type IsSatResult a = Either Text (IsSat' a) @@ -345,7 +345,7 @@ getModelFor ctxt ps subst mkComment :: Pretty (PrettyWithModifiers '[Decoded] a) => a -> BS.ByteString mkComment = BS.pack . Pretty.renderDefault . pretty' @'[Decoded] -newtype IsValid' = IsValid' Bool +newtype IsValid' = IsValid' Bool deriving (Show) type IsValidResult = Either (Maybe Text) IsValid' From 0c0e2030cfbdb0c9c3e412507710f9e830af54e6 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 7 Aug 2024 17:48:08 +0200 Subject: [PATCH 02/14] Check consistency of the pattern's constraints before evaluating it --- .../library/Booster/Pattern/ApplyEquations.hs | 33 +++++++++++++++++-- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/booster/library/Booster/Pattern/ApplyEquations.hs b/booster/library/Booster/Pattern/ApplyEquations.hs index a410afebe0..e8645ffa6f 100644 --- a/booster/library/Booster/Pattern/ApplyEquations.hs +++ b/booster/library/Booster/Pattern/ApplyEquations.hs @@ -457,15 +457,39 @@ evaluatePattern :: evaluatePattern def mLlvmLibrary smtSolver cache pat = runEquationT def mLlvmLibrary smtSolver cache pat.constraints . evaluatePattern' $ pat +-- version for internal nested evaluation -- version for internal nested evaluation evaluatePattern' :: LoggerMIO io => Pattern -> EquationT io Pattern -evaluatePattern' pat@Pattern{term, ceilConditions} = withPatternContext pat $ do +evaluatePattern' pat@Pattern{term, constraints, ceilConditions} = withPatternContext pat $ do + solver <- (.smtSolver) <$> getConfig + -- check the pattern's constraints for satisfiability to ensure they are consistent + consistent <- + withContext CtxConstraint $ do + withContext CtxDetail . withTermContext (coerce $ collapseAndBools constraints) $ pure () + consistent <- SMT.isSat solver (Set.toList constraints) + withContext CtxConstraint $ + logMessage $ + "Constraints consistency check returns: " <> show consistent + pure consistent + case consistent of + SMT.IsUnsat -> do + -- the constraints are unsatisfiable, which means that the patten is Bottom + throw . SideConditionFalse . collapseAndBools $ constraints + SMT.IsUnknown{} -> do + -- unlikely case of an Unknown response to a consistency check. + -- continue to preserver the old behaviour. + withContext CtxConstraint . logWarn . Text.pack $ + "Constraints consistency UNKNOWN: " <> show consistent + pure () + SMT.IsSat{} -> + -- constraints are consistent, continue + pure () + newTerm <- withTermContext term $ evaluateTerm' BottomUp term `catch_` keepTopLevelResults - -- after evaluating the term, evaluate all (existing and - -- newly-acquired) constraints, once + -- after evaluating the term, evaluate all (existing and newly-acquired) constraints, once traverse_ simplifyAssumedPredicate . predicates =<< getState -- this may yield additional new constraints, left unevaluated evaluatedConstraints <- predicates <$> getState @@ -482,6 +506,9 @@ evaluatePattern' pat@Pattern{term, ceilConditions} = withPatternContext pat $ do pure partialResult err -> throw err + collapseAndBools :: Set Predicate -> Predicate + collapseAndBools = coerce . foldAndBool . map coerce . Set.toList + -- evaluate the given predicate assuming all others simplifyAssumedPredicate :: LoggerMIO io => Predicate -> EquationT io () simplifyAssumedPredicate p = do From 5999a66f8a97aa8e1c4dc7de19af558a4ed59bd4 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Mon, 5 Aug 2024 17:08:43 +0200 Subject: [PATCH 03/14] Check pattern consistency before starting rewriting in `"execute"` --- booster/library/Booster/JsonRpc.hs | 62 +++++++++++++------ booster/library/Booster/Pattern/Rewrite.hs | 19 +++--- .../Test/Booster/Pattern/Rewrite.hs | 8 +-- 3 files changed, 56 insertions(+), 33 deletions(-) diff --git a/booster/library/Booster/JsonRpc.hs b/booster/library/Booster/JsonRpc.hs index 12a493738b..2dfd2d40a5 100644 --- a/booster/library/Booster/JsonRpc.hs +++ b/booster/library/Booster/JsonRpc.hs @@ -147,26 +147,48 @@ respond stateVar request = solver <- maybe (SMT.noSolver) (SMT.initSolver def) mSMTOptions - logger <- getLogger - prettyModifiers <- getPrettyModifiers - let rewriteConfig = - RewriteConfig - { definition = def - , llvmApi = mLlvmLibrary - , smtSolver = solver - , varsToAvoid = substVars - , doTracing - , logger - , prettyModifiers - , mbMaxDepth = mbDepth - , mbSimplify = rewriteOpts.interimSimplification - , cutLabels = cutPoints - , terminalLabels = terminals - } - result <- - performRewrite rewriteConfig substPat - SMT.finaliseSolver solver - pure $ execResponse req result substitution unsupported + -- check input pattern's consistency before starting rewriting + evaluatedInitialPattern <- + ApplyEquations.evaluatePattern + def + mLlvmLibrary + solver + mempty + substPat + + case evaluatedInitialPattern of + (Left ApplyEquations.SideConditionFalse{}, _) -> do + -- input pattern's constraints are Bottom, return Vacuous + pure $ + execResponse + req + (0, mempty, RewriteTrivial substPat) + substitution + unsupported + (Left other, _) -> + pure . Left . RpcError.backendError $ RpcError.Aborted (Text.pack . constructorName $ other) + (Right newPattern, simplifierCache) -> do + logger <- getLogger + prettyModifiers <- getPrettyModifiers + let rewriteConfig = + RewriteConfig + { definition = def + , llvmApi = mLlvmLibrary + , smtSolver = solver + , varsToAvoid = substVars + , doTracing + , logger + , prettyModifiers + , mbMaxDepth = mbDepth + , mbSimplify = rewriteOpts.interimSimplification + , cutLabels = cutPoints + , terminalLabels = terminals + } + + result <- + performRewrite rewriteConfig simplifierCache newPattern + SMT.finaliseSolver solver + pure $ execResponse req result substitution unsupported RpcTypes.AddModule RpcTypes.AddModuleRequest{_module, nameAsId = nameAsId'} -> Booster.Log.withContext CtxAddModule $ runExceptT $ do -- block other request executions while modifying the server state state <- liftIO $ takeMVar stateVar diff --git a/booster/library/Booster/Pattern/Rewrite.hs b/booster/library/Booster/Pattern/Rewrite.hs index 626ecd4d6d..40ef772b82 100644 --- a/booster/library/Booster/Pattern/Rewrite.hs +++ b/booster/library/Booster/Pattern/Rewrite.hs @@ -715,9 +715,10 @@ performRewrite :: forall io. LoggerMIO io => RewriteConfig -> + SimplifierCache -> Pattern -> io (Natural, Seq (RewriteTrace ()), RewriteResult Pattern) -performRewrite rewriteConfig pat = do +performRewrite rewriteConfig initialCache pat = do (rr, RewriteStepsState{counter, traces}) <- flip runStateT rewriteStart $ doSteps False pat pure (counter, traces, rr) @@ -733,6 +734,14 @@ performRewrite rewriteConfig pat = do , terminalLabels } = rewriteConfig + rewriteStart :: RewriteStepsState + rewriteStart = + RewriteStepsState + { counter = 0 + , traces = mempty + , simplifierCache = initialCache + } + logDepth = withContext CtxDepth . logMessage depthReached n = maybe False (n >=) mbMaxDepth @@ -930,11 +939,3 @@ data RewriteStepsState = RewriteStepsState , traces :: !(Seq (RewriteTrace ())) , simplifierCache :: SimplifierCache } - -rewriteStart :: RewriteStepsState -rewriteStart = - RewriteStepsState - { counter = 0 - , traces = mempty - , simplifierCache = mempty - } diff --git a/booster/unit-tests/Test/Booster/Pattern/Rewrite.hs b/booster/unit-tests/Test/Booster/Pattern/Rewrite.hs index f5ea728fb0..24ae5ffb96 100644 --- a/booster/unit-tests/Test/Booster/Pattern/Rewrite.hs +++ b/booster/unit-tests/Test/Booster/Pattern/Rewrite.hs @@ -274,7 +274,7 @@ runRewrite t = do conf <- testConf (counter, _, res) <- runNoLoggingT $ - performRewrite conf $ + performRewrite conf mempty $ Pattern_ t pure (counter, fmap (.term) res) @@ -418,7 +418,7 @@ supportsDepthControl = rewritesToDepth (MaxDepth depth) (Steps n) t t' f = do conf <- testConf (counter, _, res) <- - runNoLoggingT $ performRewrite conf{mbMaxDepth = Just depth} $ Pattern_ t + runNoLoggingT $ performRewrite conf{mbMaxDepth = Just depth} mempty $ Pattern_ t (counter, fmap (.term) res) @?= (n, f t') supportsCutPoints :: TestTree @@ -472,7 +472,7 @@ supportsCutPoints = conf <- testConf (counter, _, res) <- runNoLoggingT $ - performRewrite conf{cutLabels = [lbl]} $ + performRewrite conf{cutLabels = [lbl]} mempty $ Pattern_ t (counter, fmap (.term) res) @?= (n, f t') @@ -504,5 +504,5 @@ supportsTerminalRules = rewritesToTerminal lbl (Steps n) t t' f = do conf <- testConf (counter, _, res) <- - runNoLoggingT $ performRewrite conf{terminalLabels = [lbl]} $ Pattern_ t + runNoLoggingT $ performRewrite conf{terminalLabels = [lbl]} mempty $ Pattern_ t (counter, fmap (.term) res) @?= (n, f t') From 2f75bc2ce759b73ae183657881e1592b9c3adeb5 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Thu, 8 Aug 2024 08:40:33 +0200 Subject: [PATCH 04/14] Fix frontend warning in collectiontest.k --- booster/test/rpc-integration/resources/collectiontest.k | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booster/test/rpc-integration/resources/collectiontest.k b/booster/test/rpc-integration/resources/collectiontest.k index a959b848a9..4eb7764e51 100644 --- a/booster/test/rpc-integration/resources/collectiontest.k +++ b/booster/test/rpc-integration/resources/collectiontest.k @@ -5,7 +5,7 @@ module COLLECTIONTEST imports LIST imports MAP - syntax State ::= State(Collection, Int) [klabel(State), symbol] + syntax State ::= State(Collection, Int) [symbol(State)] syntax Collection ::= Set // | List | Map From 0de9517e1a46df7c29f76c959263c93484c69bcc Mon Sep 17 00:00:00 2001 From: Jost Berthold Date: Thu, 1 Aug 2024 11:36:03 +1000 Subject: [PATCH 05/14] Invert `--no-fallback-simplify` and `--no-post-exec-simplify` (new default: no simplification) * Introduces options `--fallback-simplify` and `--post-exec-simplify` to perform said simplifications (before fallbacks and after execute) in `kore-rpc-booster` * The old `--no-fallback-simplify` and `--no-post-exec-simplify` options are still accepted but not doing anything any more. --- booster/tools/booster/Server.hs | 28 ++++++++++++++++++---------- 1 file changed, 18 insertions(+), 10 deletions(-) diff --git a/booster/tools/booster/Server.hs b/booster/tools/booster/Server.hs index c007532e94..95064a962a 100644 --- a/booster/tools/booster/Server.hs +++ b/booster/tools/booster/Server.hs @@ -408,6 +408,7 @@ data CLProxyOptions = CLProxyOptions { clOptions :: CLOptions , proxyOptions :: ProxyOptions } + deriving stock (Show) data ProxyOptions = ProxyOptions { forceFallback :: Maybe Depth @@ -421,6 +422,7 @@ data ProxyOptions = ProxyOptions , simplifyBeforeFallback :: Bool -- ^ whether to run a simplification before fall-back execute requests } + deriving stock (Show) parserInfoModifiers :: InfoMod options parserInfoModifiers = @@ -458,17 +460,23 @@ clProxyOptionsParser = <> help "Halt reasons for which requests should be re-executed with kore-rpc" <> showDefaultWith (intercalate "," . map show) ) - <*> flag - True - False - ( long "no-post-exec-simplify" - <> help "disable post-exec simplification" + <*> ( switch (long "post-exec-simplify" <> help "simplify after execution") + <|> ( flag + True + False + ( long "no-post-exec-simplify" + <> help "Deprecated: used to disable post-exec simplification (which is now the default)" + ) + ) ) - <*> flag - True - False - ( long "no-fallback-simplify" - <> help "disable simplification before fallback requests" + <*> ( switch (long "fallback-simplify" <> help "run a simplification before fallback requests") + <|> ( flag + True + False + ( long "no-fallback-simplify" + <> help "Deprecated: used to disable simplification before fallback requests (now the default)" + ) + ) ) reasonReader :: String -> Either String HaltReason From 41e93b1e24431dd8ce18b2e30d499857ad725f7a Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 7 Aug 2024 19:13:37 +0200 Subject: [PATCH 06/14] Update integration tests Separate booster-dev and kore-rpc-booster responses for collectiontest.k Separate kore-rpc-dev and kore-rpc-booster responses for test-vacuous Separate kore-rpc-dev and kore-rpc-booster responses for test-diamond Separate kore-rpc-dev and kore-rpc-booster responses for test-substitution Remove redundant booster-dev responses for test-substitutions Update test-3934-smt Update test-issue3764-vacuous-branch Update output for test-log-simplify-json --- .../test-3934-smt/response-008.json | 4404 +- .../response-from-12.booster-dev | 594 + .../test-collectiontest/response-from-12.json | 20 +- .../response-infeasible-branching.json | 50 +- ...esponse-infeasible-branching.kore-rpc-dev} | 79 +- .../response-branch-after-one.json | 39816 +++++++++++++-- .../response-branch-in-zero.json | 39861 ++++++++++++++-- .../simplify-log.txt.golden | 18 +- .../test-substitutions/README.md | 9 +- .../response-circular-equations.booster-dev | 62 +- .../response-concrete-substitution.json | 48 +- ...sponse-concrete-substitution.kore-rpc-dev} | 48 +- ...onse-symbolic-bottom-predicate.booster-dev | 240 - .../response-symbolic-bottom-predicate.json | 125 +- .../response-symbolic-substitution.json | 44 +- ...sponse-symbolic-substitution.kore-rpc-dev} | 44 +- .../response-symbolic-two-substitutions.json | 12 +- .../rpc-integration/test-vacuous/README.md | 2 +- .../response-vacuous-at-branch.kore-rpc-dev | 100 + ...on => response-vacuous-not-rewritten.json} | 47 +- ...sponse-vacuous-not-rewritten.kore-rpc-dev} | 0 .../response-vacuous-var-at-branch.json | 48 +- .../response-vacuous-without-rewrite.json | 43 +- ...te => state-vacuous-not-rewritten.execute} | 0 scripts/booster-integration-tests.sh | 4 +- 25 files changed, 73870 insertions(+), 11848 deletions(-) create mode 100644 booster/test/rpc-integration/test-collectiontest/response-from-12.booster-dev rename booster/test/rpc-integration/{test-substitutions/response-symbolic-two-substitutions.booster-dev => test-diamond/response-infeasible-branching.kore-rpc-dev} (63%) rename booster/test/rpc-integration/test-substitutions/{response-concrete-substitution.booster-dev => response-concrete-substitution.kore-rpc-dev} (81%) delete mode 100644 booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.booster-dev rename booster/test/rpc-integration/test-substitutions/{response-symbolic-substitution.booster-dev => response-symbolic-substitution.kore-rpc-dev} (82%) create mode 100644 booster/test/rpc-integration/test-vacuous/response-vacuous-at-branch.kore-rpc-dev rename booster/test/rpc-integration/test-vacuous/{response-vacuous-but-rewritten.json => response-vacuous-not-rewritten.json} (84%) rename booster/test/rpc-integration/test-vacuous/{response-vacuous-but-rewritten.kore-rpc-dev => response-vacuous-not-rewritten.kore-rpc-dev} (100%) rename booster/test/rpc-integration/test-vacuous/{state-vacuous-but-rewritten.execute => state-vacuous-not-rewritten.execute} (100%) diff --git a/booster/test/rpc-integration/test-3934-smt/response-008.json b/booster/test/rpc-integration/test-3934-smt/response-008.json index 98e9dca69e..7b9edb7ba9 100644 --- a/booster/test/rpc-integration/test-3934-smt/response-008.json +++ b/booster/test/rpc-integration/test-3934-smt/response-008.json @@ -9,62 +9,112 @@ "format": "KORE", "version": 1, "term": { - "tag": "App", - "name": "Lbl'-LT-'generatedTop'-GT-'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { "tag": "App", - "name": "Lbl'-LT-'kevm'-GT-'", + "name": "Lbl'-LT-'generatedTop'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'k'-GT-'", + "name": "Lbl'-LT-'kevm'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "kseq", + "name": "Lbl'-LT-'k'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], + "name": "kseq", + "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'Unds'-Int'Unds'", - "sorts": [], + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], "args": [ { "tag": "App", - "name": "LblCmem'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int", + "name": "Lbl'Unds'-Int'Unds'", "sorts": [], "args": [ { "tag": "App", - "name": "LblLONDON'Unds'EVM", + "name": "LblCmem'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int", "sorts": [], - "args": [] + "args": [ + { + "tag": "App", + "name": "LblLONDON'Unds'EVM", + "sorts": [], + "args": [] + }, + { + "tag": "App", + "name": "Lbl'Hash'memoryUsageUpdate'LParUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMEMORYUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "64" + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + } + ] + } + ] }, { "tag": "App", - "name": "Lbl'Hash'memoryUsageUpdate'LParUndsCommUndsCommUndsRParUnds'EVM'Unds'Int'Unds'Int'Unds'Int'Unds'Int", + "name": "LblCmem'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int", "sorts": [], "args": [ + { + "tag": "App", + "name": "LblLONDON'Unds'EVM", + "sorts": [], + "args": [] + }, { "tag": "EVar", "name": "VarMEMORYUSED'Unds'CELL", @@ -73,81 +123,10 @@ "name": "SortInt", "args": [] } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "64" - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "32" } ] } ] - }, - { - "tag": "App", - "name": "LblCmem'LParUndsCommUndsRParUnds'GAS-FEES'Unds'Int'Unds'Schedule'Unds'Int", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "LblLONDON'Unds'EVM", - "sorts": [], - "args": [] - }, - { - "tag": "EVar", - "name": "VarMEMORYUSED'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - ] - } - ] - }, - { - "tag": "App", - "name": "kseq", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInternalOp", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "App", - "name": "Lbl'Hash'deductGas'Unds'EVM'Unds'InternalOp", - "sorts": [], - "args": [] } ] }, @@ -174,50 +153,9 @@ "args": [ { "tag": "App", - "name": "Lbl'Hash'gas'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "name": "Lbl'Hash'deductGas'Unds'EVM'Unds'InternalOp", "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInternalOp", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortOpCode", - "args": [] - } - ], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", - "sorts": [], - "args": [] - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "64" - } - ] - } - ] - } - ] + "args": [] } ] }, @@ -244,33 +182,9 @@ "args": [ { "tag": "App", - "name": "Lbl'Hash'access'LSqBUndsCommUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode'Unds'OpCode", + "name": "Lbl'Hash'gas'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", "sorts": [], "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortUnStackOp", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortOpCode", - "args": [] - } - ], - "args": [ - { - "tag": "App", - "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", - "sorts": [], - "args": [] - } - ] - }, { "tag": "App", "name": "inj", @@ -338,23 +252,72 @@ "args": [ { "tag": "App", - "name": "Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int", + "name": "Lbl'Hash'access'LSqBUndsCommUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode'Unds'OpCode", "sorts": [], "args": [ { "tag": "App", - "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", - "sorts": [], - "args": [] + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortUnStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", + "sorts": [], + "args": [] + } + ] }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "64" + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", + "sorts": [], + "args": [] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "64" + } + ] + } + ] } ] } @@ -383,32 +346,23 @@ "args": [ { "tag": "App", - "name": "Lblpc", + "name": "Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortUnStackOp", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortOpCode", - "args": [] - } - ], - "args": [ - { - "tag": "App", - "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", - "sorts": [], - "args": [] - } - ] + "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", + "sorts": [], + "args": [] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "64" } ] } @@ -421,18 +375,74 @@ "args": [ { "tag": "App", - "name": "Lblexecute", - "sorts": [], - "args": [] + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lblpc", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortUnStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblMLOAD'Unds'EVM'Unds'UnStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] }, { - "tag": "EVar", - "name": "VarK'Unds'CELL'Unds'de090c3b", - "sort": { - "tag": "SortApp", - "name": "SortK", - "args": [] - } + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lblexecute", + "sorts": [], + "args": [] + }, + { + "tag": "EVar", + "name": "VarK'Unds'CELL'Unds'de090c3b", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] } ] } @@ -447,205 +457,118 @@ ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'exit-code'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXITCODE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'mode'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "LblNORMAL", - "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'schedule'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "LblLONDON'Unds'EVM", + "name": "Lbl'-LT-'exit-code'-GT-'", "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'useGas'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'ethereum'-GT-'", - "sorts": [], - "args": [ + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { "tag": "App", - "name": "Lbl'-LT-'evm'-GT-'", + "name": "Lbl'-LT-'mode'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'output'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarOUTPUT'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'statusCode'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarSTATUSCODE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortStatusCode", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callStack'-GT-'", + "name": "LblNORMAL", "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCALLSTACK'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortList", - "args": [] - } - } - ] - }, + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "Lbl'-LT-'interimStates'-GT-'", + "name": "LblLONDON'Unds'EVM", "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarINTERIMSTATES'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortList", - "args": [] - } - } - ] - }, + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ { - "tag": "App", - "name": "Lbl'-LT-'touchedAccounts'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarTOUCHEDACCOUNTS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortSet", - "args": [] - } - } - ] - }, + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "Lbl'-LT-'callState'-GT-'", + "name": "Lbl'-LT-'evm'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'program'-GT-'", + "name": "Lbl'-LT-'output'-GT-'", "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "VarOUTPUT'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortBytes", "args": [] - }, - "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0001,W`\u00005`à\u001c€c]â/\u0007\u0011a\u0000­W€c¡\u0018á\u0002\u0011a\u0000qW€c¡\u0018á\u0002\u0014a\u0002bW€cºAO¦\u0014a\u0002uW€cÓ\u0013”\r\u0014a\u0002W€cøÌ¿G\u0014a\u0002 W€cúv&Ô\u0014a\u0002³W`\u0000€ý[€c]â/\u0007\u0014a\u0002\u0003W€cm]9ß\u0014a\u0002\u0016W€c~Ž#Ð\u0014a\u0002)W€cˆ~OÛ\u0014a\u0002=`\u0000ý[PPPP`\u0000`\u0002‚`\u0001a\u0004‘a\u0013eV[a\u0004™„a\u0013}V[a\u0004£‘a\u00138V[P`\u0000a\u0004°ƒa\u000c`V[Pa\u0003\u0014‚‚a\u000c’V[`\u0000a\u0004ǂa\rqV[P`\u0001`\u0000[ƒQ\u0010€\u0015a\u0004ÛWP[\u0015a\u0005\u0012WƒQ\u0010a\u0004òWa\u0004òa\u0013œV[` \u0002` \u0001\u0001Qƒ\u0010\u0015‘P€€a\u0005\na\u0013LV[‘PPa\u0004ÎV[Pa\u0003\u0014a\t›V[`\u0000a\u0003&`da\u0005‰V[`\u0000a\u00053‚a\rÐV[P`\u0001`\u0000[ƒQ\u0010€\u0015a\u0005GWP[\u0015a\u0005\u0012WƒQ\u0010a\u0005^Wa\u0005^a\u0013œV[` \u0002` \u0001\u0001Qƒ\u0010\u0015‘P€€a\u0005va\u0013LV[‘PPa\u0005:V[`\u0000a\u0002˃a\u000e.V[`@Qc&1ò±`á\u001bRf¸\u0017\u0002à\\\u000bo‚\u0011\u0015`\u0004‚\u0001R`\u0000sq\tpžÏ©\u001a€boó˜hö[\u001dÑ-cLcåb`$\u0001`\u0000`@Q€ƒ\u0003`\u0000‡€;\u0015€\u0015a\u0005âW`\u0000€ý[PZñ\u0015€\u0015a\u0005öW=`\u0000€>=`\u0000ý[PPPP`\u0000[‚\u0015a\u0006!Wa\u0006\rƒ‚a\u0013eV[Pa\u0006\u001a`\u0001„a\u0013!V[’Pa\u0005ýV[’‘PPV[`@Qc&1ò±`á\u001bR`d‚\u0011\u0015`\u0004‚\u0001Rsq\tpžÏ©\u001a€boó˜hö[\u001dÑ-cLcåb`$\u0001`\u0000`@Q€ƒ\u0003`\u0000‡€;\u0015€\u0015a\u0006wW`\u0000€ý[PZñ\u0015€\u0015a\u0006‹W=`\u0000€>=`\u0000ý[PPPP`\u0000`\u0002‚`\u0001a\u0006 ‘a\u0013eV[a\u0006ª„a\u0013}V[a\u0006´‘a\u00138V[P`\u0000a\u0004°ƒa\u000eeV[`\u0000a\u0006̂a\u000eV[P`\u0001€[‚Q\u0010€\u0015a\u0006ßWP[\u0015a\u0005\u0012WƒQ\u0010a\u0006öWa\u0006öa\u0013œV[` \u0002` \u0001\u0001Q„`\u0001ƒa\u0007\u000c‘a\u0013!V[Q\u0010a\u0007\u001cWa\u0007\u001ca\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015‘P€€a\u00073a\u0013LV[‘PPa\u0006ÒV[`\u0000a\u0007Fƒa\u000e»V[P‚`\u0000\u0003a\u0007[Wa\u0003\u0014`\u0000a\u000c’V[a\u0007ga\u0002݂a\tJV[`\u0000a\u0007|a\u0007w`\u0001†a\u0013!V[a\u000e»V[Pa\u0003ƒ„\u0011\u0015€a\u0007WP‚„\u0010\u0015[€a\u0002ÝWPa\u0007Ÿ„a\tJV[\u0015a\t›V[`\u0000€Ta\u0001\u0000\u0004`ÿ\u0016\u0015a\u0007ÅWP`\u0000Ta\u0001\u0000\u0004`ÿ\u0016V[`\u0000sq\tpžÏ©\u001a€boó˜hö[\u001dÑ-;\u0015a\u0008ËW`@€Qsq\tpžÏ©\u001a€boó˜hö[\u001dÑ-` ‚\u0001Re\u0019˜Z[\u0019Y`Ò\u001b‚„\u0001R‚Q€ƒ\u0003„\u0001R``ƒ\u0001“R`\u0000’‘a\u0008S‘fpÊA\u001dpêÕ\r\\\"\u0007\r¯Ãj×_=Ï^r7²*ޚìđ`€\u0001a\u0013ÞV[`@€Q`\u001f\u0019„\u0003\u0001R‚Ra\u0008m‘a\u0014\u000fV[`\u0000`@Q€ƒ\u0003`\u0000†Zñ‘PP=€`\u0000\u0014a\u0008ªW`@Q‘P`\u001f\u0019`?=\u0001\u0016‚\u0001`@R=‚R=`\u0000` „\u0001>a\u0008¯V[``‘P[P‘PP€€` \u0001Q\u0001a\u0008Ǒa\u0014+V[‘PP[‘PV[`\u0000a\u0008ۂa\u000eõV[P`\u0001€[‚Q\u0010€\u0015a\u0008îWP[\u0015a\u0005\u0012WƒQ\u0010a\t\u0005Wa\t\u0005a\u0013œV[` \u0002` \u0001\u0001Q„`\u0001ƒa\t\u001b‘a\u0013!V[Q\u0010a\t+Wa\t+a\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015‘P€€a\tBa\u0013LV[‘PPa\u0008áV[`\u0000`\u0002‚\u0010\u0015a\t]WP`\u0000‘PV[`\u0002[‚\u0010\u0015a\t’Wa\tr„a\u0012÷V[\u0015a\t€WP`\u0000’‘PPV[€a\tŠa\u0013LV[‘PPa\t`V[P`\u0001’‘PPV[€a\u0003£WA0O¬Ù2=u±\u001bÍÖ\tË8ïÿý°W\u0010÷Êðé±lmpŸP`@Qa\tÿ` €‚R`\u0017‚\u0001RError: Assertion Failed\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`@‚\u0001R``\u0001V[`@Q€‘\u0003¡a\u0003£a\u000f\u0017V[`\u0000`\u0000\u0003a\n!WP`\u0000‘PV[[€‘P`\u0002a\n3…„a\u0010#V[a\n=‘a\u0013eV[a\nG‘a\u00138V[P\u0003a\n#W[P‘PV[`\u0000g\rඳ§d\u0000\u0000a\nm`\u0002‚a\u00138V[a\nw„†a\u0013}V[a\n‘a\u0013eV[a\n‹‘a\u00138V[“’PPPV[`\u0000`\u0002‚\u0010\u0015a\n¥WP`\u0000‘PV[`\u0002[a\n³`\u0002„a\u00138V[\u0011a\t’Wa\nÁ„a\u0012÷V[\u0015a\nÑWP`\u0000’‘PPV[€a\nہa\u0013LV[‘PPa\n¨V[€\u0015\u0015‚\u0015\u0015\u0014a\u0004\u0006WA0O¬Ù2=u±\u001bÍÖ\tË8ïÿý°W\u0010÷Êðé±lmpŸP`@Qa\u000bX` €‚R`\"‚\u0001RError: a == b not satisfied [boo`@‚\u0001Ral]`ð\u001b``‚\u0001R`€\u0001V[`@Q€‘\u0003¡(\u000fDF²Š\u0013rA}Úe0¹[)’±*ÉÇóxS_)©zÏ5ƒa\u000b©W`@Q€`@\u0001`@R€`\u0005R` \u0001dfalse`Ø\u001bRPa\u000bÇV[`@Q€`@\u0001`@R€`\u0004R` \u0001ctrue`à\u001bRP[`@Qa\u000bԑa\u0014yV[`@Q€‘\u0003¡(\u000fDF²Š\u0013rA}Úe0¹[)’±*ÉÇóxS_)©zÏ5ƒ‚a\u000c%W`@Q€`@\u0001`@R€`\u0005R` \u0001dfalse`Ø\u001bRPa\u000cCV[`@Q€`@\u0001`@R€`\u0004R` \u0001ctrue`à\u001bRP[`@Qa\u000cP‘a\u0014½V[`@Q€‘\u0003¡a\u0004\u0006a\u000f\u0017V[`\u0000€€[ƒ\u0010\u0015a\u000c‹Wa\u000cwƒa\u0013eV[‘P€a\u000cƒa\u0013LV[‘PPa\u000ceV[P’‘PPV[€‚\u0014a\u0004\u0006WA0O¬Ù2=u±\u001bÍÖ\tË8ïÿý°W\u0010÷Êðé±lmpŸP`@Qa\r\u0003` €‚R`\"‚\u0001RError: a == b not satisfied [uin`@‚\u0001Rat]`ð\u001b``‚\u0001R`€\u0001V[`@Q€‘\u0003¡²Þ/¾€\u001a\röÀËÝýD‹£Ä\u001dH @Ê5Ål–ï\u000fÊç!¨`@Qa\r:‘a\u0014çV[`@Q€‘\u0003¡²Þ/¾€\u001a\röÀËÝýD‹£Ä\u001dH @Ê5Ål–ï\u000fÊç!¨‚`@Qa\u000cP‘a\u0015\u001fV[`\u0000€`\u0001[ƒQ\u0010\u0015a\u000c‹W„‚Q\u0010a\r“Wa\r“a\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015a\r¾WƒQ\u0010a\r³Wa\r³a\u0013œV[` \u0002` \u0001\u0001Q‘P[€a\rȁa\u0013LV[‘PPa\rwV[`\u0000€€[ƒQ\u0010\u0015a\u000c‹W„‚Q\u0010a\rñWa\rña\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015a\u000e\u001cWƒQ\u0010a\u000e\u0011Wa\u000e\u0011a\u0013œV[` \u0002` \u0001\u0001Q‘P[€a\u000e&a\u0013LV[‘PPa\rÕV[`\u0000`\u0002[‚\u0010\u0015a\t’Wa\u000eE„a\u0012÷V[\u0015a\u000eSWP`\u0000’‘PPV[€a\u000e]a\u0013LV[‘PPa\u000e3V[`\u0000€€[ƒ\u0011a\u000c‹Wa\u000e{ƒa\u0013eV[‘P€a\u000e‡a\u0013LV[‘PPa\u000ejV[```\u0001‚Q\u0011a\u000ežWPV[a\u000e·‚`\u0000`\u0001…Qa\u000e²‘a\u0013!V[a\u0010CV[PV[`\u0000€[‚\u0010\u0015a\nQWa\u000eсa\u0013LV[’PPa\u000e݂a\tJV[\u0015a\u000eðW€a\u000eìa\u0013LV[‘PP[a\u000e¿V[```\u0001‚Q\u0011a\u000f\u0004WPV[a\u000e·‚`\u0001€…Qa\u000e²‘a\u0013!V[sq\tpžÏ©\u001a€boó˜hö[\u001dÑ-;\u0015a\u0010\u0012W`@€Qsq\tpžÏ©\u001a€boó˜hö[\u001dÑ-` ‚\u0001Re\u0019˜Z[\u0019Y`Ò\u001b’‚\u0001’’R`\u0001``‚\u0001R`\u0000‘pÊ\u0010»ÐÛý ©ô±4\u0002Ál± p^\r\u001c\nê±\u000f£S®XoĐ`€\u0001`@€Q`\u001f\u0019„\u0003\u0001R‚Ra\u000f±’‘` \u0001a\u0013ÞV[`@€Q`\u001f\u0019„\u0003\u0001R‚Ra\u000fˑa\u0014\u000fV[`\u0000`@Q€ƒ\u0003`\u0000†Zñ‘PP=€`\u0000\u0014a\u0010\u0008W`@Q‘P`\u001f\u0019`?=\u0001\u0016‚\u0001`@R=‚R=`\u0000` „\u0001>a\u0010\rV[``‘P[PPPP[`\u0000€Taÿ\u0000\u0019\u0016a\u0001\u0000\u0017UV[`\u0000a\u00101`\u0002‚a\u00138V[a\nwg\rඳ§d\u0000\u0000†a\u0013}V[€‚\u0010a\u0010OWPPPV[`\u0000…`\u0002a\u0010`……a\u0013!V[a\u0010j‘a\u00138V[a\u0010t‡a\u0013eV[Q\u0010a\u0010„Wa\u0010„a\u0013œV[` \u0002` \u0001\u0001QP[ƒ\u0011a\u0011¤W[€†„Q\u0010a\u0010ªWa\u0010ªa\u0013œV[` \u0002` \u0001\u0001Q\u0010\u0015a\u0010ÊW‚a\u0010a\u0013LV[“PPa\u0010—V[…‚Q\u0010a\u0010ÜWa\u0010Üa\u0013œV[` \u0002` \u0001\u0001Q\u0010€\u0015a\u0010òWP`\u0000‚\u0011[\u0015a\u0011\tWa\u0011\u0001a\u0015IV[’PPa\u0010ÊV[ƒ\u0011a\u0011ŸW…‚Q\u0010a\u0011\"Wa\u0011\"a\u0013œV[` \u0002` \u0001\u0001Q†„Q\u0010a\u0011=`\u0000ý[PPPP`\u0000`\u0002‚`\u0001a\u0004‘a\u0013eV[a\u0004™„a\u0013}V[a\u0004£‘a\u00138V[P`\u0000a\u0004°ƒa\u000c`V[Pa\u0003\u0014‚‚a\u000c’V[`\u0000a\u0004ǂa\rqV[P`\u0001`\u0000[ƒQ\u0010€\u0015a\u0004ÛWP[\u0015a\u0005\u0012WƒQ\u0010a\u0004òWa\u0004òa\u0013œV[` \u0002` \u0001\u0001Qƒ\u0010\u0015‘P€€a\u0005\na\u0013LV[‘PPa\u0004ÎV[Pa\u0003\u0014a\t›V[`\u0000a\u0003&`da\u0005‰V[`\u0000a\u00053‚a\rÐV[P`\u0001`\u0000[ƒQ\u0010€\u0015a\u0005GWP[\u0015a\u0005\u0012WƒQ\u0010a\u0005^Wa\u0005^a\u0013œV[` \u0002` \u0001\u0001Qƒ\u0010\u0015‘P€€a\u0005va\u0013LV[‘PPa\u0005:V[`\u0000a\u0002˃a\u000e.V[`@Qc&1ò±`á\u001bRf¸\u0017\u0002à\\\u000bo‚\u0011\u0015`\u0004‚\u0001R`\u0000sq\tpžÏ©\u001a€boó˜hö[\u001dÑ-cLcåb`$\u0001`\u0000`@Q€ƒ\u0003`\u0000‡€;\u0015€\u0015a\u0005âW`\u0000€ý[PZñ\u0015€\u0015a\u0005öW=`\u0000€>=`\u0000ý[PPPP`\u0000[‚\u0015a\u0006!Wa\u0006\rƒ‚a\u0013eV[Pa\u0006\u001a`\u0001„a\u0013!V[’Pa\u0005ýV[’‘PPV[`@Qc&1ò±`á\u001bR`d‚\u0011\u0015`\u0004‚\u0001Rsq\tpžÏ©\u001a€boó˜hö[\u001dÑ-cLcåb`$\u0001`\u0000`@Q€ƒ\u0003`\u0000‡€;\u0015€\u0015a\u0006wW`\u0000€ý[PZñ\u0015€\u0015a\u0006‹W=`\u0000€>=`\u0000ý[PPPP`\u0000`\u0002‚`\u0001a\u0006 ‘a\u0013eV[a\u0006ª„a\u0013}V[a\u0006´‘a\u00138V[P`\u0000a\u0004°ƒa\u000eeV[`\u0000a\u0006̂a\u000eV[P`\u0001€[‚Q\u0010€\u0015a\u0006ßWP[\u0015a\u0005\u0012WƒQ\u0010a\u0006öWa\u0006öa\u0013œV[` \u0002` \u0001\u0001Q„`\u0001ƒa\u0007\u000c‘a\u0013!V[Q\u0010a\u0007\u001cWa\u0007\u001ca\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015‘P€€a\u00073a\u0013LV[‘PPa\u0006ÒV[`\u0000a\u0007Fƒa\u000e»V[P‚`\u0000\u0003a\u0007[Wa\u0003\u0014`\u0000a\u000c’V[a\u0007ga\u0002݂a\tJV[`\u0000a\u0007|a\u0007w`\u0001†a\u0013!V[a\u000e»V[Pa\u0003ƒ„\u0011\u0015€a\u0007WP‚„\u0010\u0015[€a\u0002ÝWPa\u0007Ÿ„a\tJV[\u0015a\t›V[`\u0000€Ta\u0001\u0000\u0004`ÿ\u0016\u0015a\u0007ÅWP`\u0000Ta\u0001\u0000\u0004`ÿ\u0016V[`\u0000sq\tpžÏ©\u001a€boó˜hö[\u001dÑ-;\u0015a\u0008ËW`@€Qsq\tpžÏ©\u001a€boó˜hö[\u001dÑ-` ‚\u0001Re\u0019˜Z[\u0019Y`Ò\u001b‚„\u0001R‚Q€ƒ\u0003„\u0001R``ƒ\u0001“R`\u0000’‘a\u0008S‘fpÊA\u001dpêÕ\r\\\"\u0007\r¯Ãj×_=Ï^r7²*ޚìđ`€\u0001a\u0013ÞV[`@€Q`\u001f\u0019„\u0003\u0001R‚Ra\u0008m‘a\u0014\u000fV[`\u0000`@Q€ƒ\u0003`\u0000†Zñ‘PP=€`\u0000\u0014a\u0008ªW`@Q‘P`\u001f\u0019`?=\u0001\u0016‚\u0001`@R=‚R=`\u0000` „\u0001>a\u0008¯V[``‘P[P‘PP€€` \u0001Q\u0001a\u0008Ǒa\u0014+V[‘PP[‘PV[`\u0000a\u0008ۂa\u000eõV[P`\u0001€[‚Q\u0010€\u0015a\u0008îWP[\u0015a\u0005\u0012WƒQ\u0010a\t\u0005Wa\t\u0005a\u0013œV[` \u0002` \u0001\u0001Q„`\u0001ƒa\t\u001b‘a\u0013!V[Q\u0010a\t+Wa\t+a\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015‘P€€a\tBa\u0013LV[‘PPa\u0008áV[`\u0000`\u0002‚\u0010\u0015a\t]WP`\u0000‘PV[`\u0002[‚\u0010\u0015a\t’Wa\tr„a\u0012÷V[\u0015a\t€WP`\u0000’‘PPV[€a\tŠa\u0013LV[‘PPa\t`V[P`\u0001’‘PPV[€a\u0003£WA0O¬Ù2=u±\u001bÍÖ\tË8ïÿý°W\u0010÷Êðé±lmpŸP`@Qa\tÿ` €‚R`\u0017‚\u0001RError: Assertion Failed\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`@‚\u0001R``\u0001V[`@Q€‘\u0003¡a\u0003£a\u000f\u0017V[`\u0000`\u0000\u0003a\n!WP`\u0000‘PV[[€‘P`\u0002a\n3…„a\u0010#V[a\n=‘a\u0013eV[a\nG‘a\u00138V[P\u0003a\n#W[P‘PV[`\u0000g\rඳ§d\u0000\u0000a\nm`\u0002‚a\u00138V[a\nw„†a\u0013}V[a\n‘a\u0013eV[a\n‹‘a\u00138V[“’PPPV[`\u0000`\u0002‚\u0010\u0015a\n¥WP`\u0000‘PV[`\u0002[a\n³`\u0002„a\u00138V[\u0011a\t’Wa\nÁ„a\u0012÷V[\u0015a\nÑWP`\u0000’‘PPV[€a\nہa\u0013LV[‘PPa\n¨V[€\u0015\u0015‚\u0015\u0015\u0014a\u0004\u0006WA0O¬Ù2=u±\u001bÍÖ\tË8ïÿý°W\u0010÷Êðé±lmpŸP`@Qa\u000bX` €‚R`\"‚\u0001RError: a == b not satisfied [boo`@‚\u0001Ral]`ð\u001b``‚\u0001R`€\u0001V[`@Q€‘\u0003¡(\u000fDF²Š\u0013rA}Úe0¹[)’±*ÉÇóxS_)©zÏ5ƒa\u000b©W`@Q€`@\u0001`@R€`\u0005R` \u0001dfalse`Ø\u001bRPa\u000bÇV[`@Q€`@\u0001`@R€`\u0004R` \u0001ctrue`à\u001bRP[`@Qa\u000bԑa\u0014yV[`@Q€‘\u0003¡(\u000fDF²Š\u0013rA}Úe0¹[)’±*ÉÇóxS_)©zÏ5ƒ‚a\u000c%W`@Q€`@\u0001`@R€`\u0005R` \u0001dfalse`Ø\u001bRPa\u000cCV[`@Q€`@\u0001`@R€`\u0004R` \u0001ctrue`à\u001bRP[`@Qa\u000cP‘a\u0014½V[`@Q€‘\u0003¡a\u0004\u0006a\u000f\u0017V[`\u0000€€[ƒ\u0010\u0015a\u000c‹Wa\u000cwƒa\u0013eV[‘P€a\u000cƒa\u0013LV[‘PPa\u000ceV[P’‘PPV[€‚\u0014a\u0004\u0006WA0O¬Ù2=u±\u001bÍÖ\tË8ïÿý°W\u0010÷Êðé±lmpŸP`@Qa\r\u0003` €‚R`\"‚\u0001RError: a == b not satisfied [uin`@‚\u0001Rat]`ð\u001b``‚\u0001R`€\u0001V[`@Q€‘\u0003¡²Þ/¾€\u001a\röÀËÝýD‹£Ä\u001dH @Ê5Ål–ï\u000fÊç!¨`@Qa\r:‘a\u0014çV[`@Q€‘\u0003¡²Þ/¾€\u001a\röÀËÝýD‹£Ä\u001dH @Ê5Ål–ï\u000fÊç!¨‚`@Qa\u000cP‘a\u0015\u001fV[`\u0000€`\u0001[ƒQ\u0010\u0015a\u000c‹W„‚Q\u0010a\r“Wa\r“a\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015a\r¾WƒQ\u0010a\r³Wa\r³a\u0013œV[` \u0002` \u0001\u0001Q‘P[€a\rȁa\u0013LV[‘PPa\rwV[`\u0000€€[ƒQ\u0010\u0015a\u000c‹W„‚Q\u0010a\rñWa\rña\u0013œV[` \u0002` \u0001\u0001Q\u0011\u0015a\u000e\u001cWƒQ\u0010a\u000e\u0011Wa\u000e\u0011a\u0013œV[` \u0002` \u0001\u0001Q‘P[€a\u000e&a\u0013LV[‘PPa\rÕV[`\u0000`\u0002[‚\u0010\u0015a\t’Wa\u000eE„a\u0012÷V[\u0015a\u000eSWP`\u0000’‘PPV[€a\u000e]a\u0013LV[‘PPa\u000e3V[`\u0000€€[ƒ\u0011a\u000c‹Wa\u000e{ƒa\u0013eV[‘P€a\u000e‡a\u0013LV[‘PPa\u000ejV[```\u0001‚Q\u0011a\u000ežWPV[a\u000e·‚`\u0000`\u0001…Qa\u000e²‘a\u0013!V[a\u0010CV[PV[`\u0000€[‚\u0010\u0015a\nQWa\u000eсa\u0013LV[’PPa\u000e݂a\tJV[\u0015a\u000eðW€a\u000eìa\u0013LV[‘PP[a\u000e¿V[```\u0001‚Q\u0011a\u000f\u0004WPV[a\u000e·‚`\u0001€…Qa\u000e²‘a\u0013!V[sq\tpžÏ©\u001a€boó˜hö[\u001dÑ-;\u0015a\u0010\u0012W`@€Qsq\tpžÏ©\u001a€boó˜hö[\u001dÑ-` ‚\u0001Re\u0019˜Z[\u0019Y`Ò\u001b’‚\u0001’’R`\u0001``‚\u0001R`\u0000‘pÊ\u0010»ÐÛý ©ô±4\u0002Ál± p^\r\u001c\nê±\u000f£S®XoĐ`€\u0001`@€Q`\u001f\u0019„\u0003\u0001R‚Ra\u000f±’‘` \u0001a\u0013ÞV[`@€Q`\u001f\u0019„\u0003\u0001R‚Ra\u000fˑa\u0014\u000fV[`\u0000`@Q€ƒ\u0003`\u0000†Zñ‘PP=€`\u0000\u0014a\u0010\u0008W`@Q‘P`\u001f\u0019`?=\u0001\u0016‚\u0001`@R=‚R=`\u0000` „\u0001>a\u0010\rV[``‘P[PPPP[`\u0000€Taÿ\u0000\u0019\u0016a\u0001\u0000\u0017UV[`\u0000a\u00101`\u0002‚a\u00138V[a\nwg\rඳ§d\u0000\u0000†a\u0013}V[€‚\u0010a\u0010OWPPPV[`\u0000…`\u0002a\u0010`……a\u0013!V[a\u0010j‘a\u00138V[a\u0010t‡a\u0013eV[Q\u0010a\u0010„Wa\u0010„a\u0013œV[` \u0002` \u0001\u0001QP[ƒ\u0011a\u0011¤W[€†„Q\u0010a\u0010ªWa\u0010ªa\u0013œV[` \u0002` \u0001\u0001Q\u0010\u0015a\u0010ÊW‚a\u0010a\u0013LV[“PPa\u0010—V[…‚Q\u0010a\u0010ÜWa\u0010Üa\u0013œV[` \u0002` \u0001\u0001Q\u0010€\u0015a\u0010òWP`\u0000‚\u0011[\u0015a\u0011\tWa\u0011\u0001a\u0015IV[’PPa\u0010ÊV[ƒ\u0011a\u0011ŸW…‚Q\u0010a\u0011\"Wa\u0011\"a\u0013œV[` \u0002` \u0001\u0001Q†„Q\u0010a\u0011=‘`+Wý[ó" + "value": "532667443394220189835739947317809624605775530598" } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'storage'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "LblMap'Coln'update", + "name": "Lbl'-LT-'balance'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'STORAGE5", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortMap", + "name": "SortInt", "args": [] - } - }, + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ { "tag": "App", "name": "inj", "sorts": [ { "tag": "SortApp", - "name": "SortInt", + "name": "SortBytes", "args": [] }, { "tag": "SortApp", - "name": "SortKItem", + "name": "SortAccountCode", "args": [] } ], @@ -4658,93 +4730,221 @@ "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBytes", "args": [] }, - "value": "0" + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" } ] - }, + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], + "name": "LblMap'Coln'update", + "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "Var'Ques'STORAGE5", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortMap", "args": [] - }, - "value": "1859908298493297446258506712967140281756952292642" + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] } ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'origStorage'-GT-'", - "sorts": [], - "args": [ + }, { - "tag": "EVar", - "name": "Var'Ques'STORAGE5", - "sort": { - "tag": "SortApp", - "name": "SortMap", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'nonce'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1" + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] } ] } ] } ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } } ] }, { "tag": "App", - "name": "Lbl'-LT-'txOrder'-GT-'", + "name": "Lbl'-LT-'prevOrigin'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarTXORDER'Unds'CELL", + "name": "VarPREVORIGIN'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortList", + "name": "SortAccount", "args": [] } } @@ -4752,15 +4952,15 @@ }, { "tag": "App", - "name": "Lbl'-LT-'txPending'-GT-'", + "name": "Lbl'-LT-'newCaller'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarTXPENDING'Unds'CELL", + "name": "VarNEWCALLER'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortList", + "name": "SortAccount", "args": [] } } @@ -4768,145 +4968,374 @@ }, { "tag": "App", - "name": "Lbl'-LT-'messages'-GT-'", + "name": "Lbl'-LT-'newOrigin'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarMESSAGES'Unds'CELL", + "name": "VarNEWORIGIN'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortMessageCellMap", + "name": "SortAccount", "args": [] } } ] - } - ] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'cheatcodes'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'prank'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'prevCaller'-GT-'", - "sorts": [], - "args": [ + }, { - "tag": "EVar", - "name": "VarPREVCALLER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'prevOrigin'-GT-'", + "name": "Lbl'-LT-'expectedRevert'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarPREVORIGIN'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'newCaller'-GT-'", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarNEWCALLER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'newOrigin'-GT-'", + "name": "Lbl'-LT-'expectEmit'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarNEWORIGIN'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'active'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'depth'-GT-'", + "name": "Lbl'-LT-'whitelist'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarDEPTH'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'singleCall'-GT-'", + "name": "Lbl'-LT-'mockCalls'-GT-'", "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] } ] } @@ -4914,12 +5343,12 @@ }, { "tag": "App", - "name": "Lbl'-LT-'expectedRevert'-GT-'", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "name": "Lbl'-LT-'activeTracing'-GT-'", "sorts": [], "args": [ { @@ -4929,52 +5358,29 @@ "name": "SortBool", "args": [] }, - "value": "true" + "value": "false" } ] }, { "tag": "App", - "name": "Lbl'-LT-'expectedReason'-GT-'", + "name": "Lbl'-LT-'traceStorage'-GT-'", "sorts": [], "args": [ { "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBytes", + "name": "SortBool", "args": [] }, - "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + "value": "true" } ] }, { "tag": "App", - "name": "Lbl'-LT-'expectedDepth'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedOpcode'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "name": "Lbl'-LT-'traceWordStack'-GT-'", "sorts": [], "args": [ { @@ -4984,84 +5390,13 @@ "name": "SortBool", "args": [] }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedAddress'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDADDRESS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedValue'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDVALUE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedData'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDDATA'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - } + "value": "true" } ] }, { "tag": "App", - "name": "Lbl'-LT-'opcodeType'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarOPCODETYPE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortOpcodeType", - "args": [] - } - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectEmit'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'recordEvent'-GT-'", + "name": "Lbl'-LT-'traceMemory'-GT-'", "sorts": [], "args": [ { @@ -5071,13 +5406,13 @@ "name": "SortBool", "args": [] }, - "value": "false" + "value": "true" } ] }, { "tag": "App", - "name": "Lbl'-LT-'isEventExpected'-GT-'", + "name": "Lbl'-LT-'recordedTrace'-GT-'", "sorts": [], "args": [ { @@ -5093,129 +5428,16 @@ }, { "tag": "App", - "name": "Lbl'-LT-'checkedTopics'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCHECKEDTOPICS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortList", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'checkedData'-GT-'", + "name": "Lbl'-LT-'traceData'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarCHECKEDDATA'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - } + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] } ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedEventAddress'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'whitelist'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'addressSet'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'Set", - "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'storageSlotSet'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'Set", - "sorts": [], - "args": [] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'mockCalls'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'MockCallCellMap", - "sorts": [], - "args": [] } ] } @@ -5223,1280 +5445,24071 @@ }, { "tag": "App", - "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "name": "Lbl'-LT-'generatedCounter'-GT-'", "sorts": [], "args": [ { - "tag": "App", - "name": "Lbl'-LT-'activeTracing'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] + "tag": "EVar", + "name": "VarGENERATEDCOUNTER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "App", - "name": "Lbl'-LT-'traceStorage'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } }, - "value": "true" - } - ] + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "79228162514264337593543950336" + } + ] + } }, { - "tag": "App", - "name": "Lbl'-LT-'traceWordStack'-GT-'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", "name": "SortBool", "args": [] }, - "value": "true" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'traceMemory'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'recordedTrace'-GT-'", - "sorts": [], - "args": [ + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'traceData'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'List", - "sorts": [], - "args": [] - } - ] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'generatedCounter'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarGENERATEDCOUNTER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "432000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2592000" + }, + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "150000000000000000" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCONTRACT'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } ] } - }, - "substitution": { - "format": "KORE", - "version": 1, - "term": { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "EVar", - "name": "Var'Ques'WORD", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - "second": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "2" - } - } - }, - "predicate": { - "format": "KORE", - "version": 1, + } + }, + "next-states": [ + { "term": { - "tag": "And", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "patterns": [ - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" + "format": "KORE", + "version": 1, + "term": { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'foundry'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'kevm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblJUMP'Unds'EVM'Unds'UnStackOp", + "sorts": [], + "args": [] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectEmit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] }, - "second": { + { "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", + "name": "Lbl'-LT-'generatedCounter'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "Var'Ques'WORD0", + "name": "VarGENERATEDCOUNTER'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" } ] } + ] + } + }, + "substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD0", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] } }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, + "second": { + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] }, - "first": { - "tag": "DV", + "value": "2" + } + } + }, + "predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD0", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, + "patterns": [ { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Unds'-Int'Unds'", - "sorts": [], - "args": [ + }, + "patterns": [ { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "432000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + } + ] + } + ] }, { - "tag": "EVar", - "name": "Var'Ques'WORD0", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] } ] }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "432000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "2592000" - }, - { - "tag": "App", - "name": "Lbl'Unds'-Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] } }, { - "tag": "EVar", - "name": "Var'Ques'WORD1", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, + "patterns": [ { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" }, - "value": "0" + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "150000000000000000" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000" + } + ] + } + ] + } }, { - "tag": "EVar", - "name": "Var'Ques'WORD10", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2592000" + }, + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCONTRACT'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } + ] + } + }, + "rule-id": "0ee7a2c1d6ff36a91ac9e9ed19a2c624ba21b97f4511af22044f6169bb8adfa1", + "rule-predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { + "patterns": [ + { + "tag": "Equals", + "argSort": { "tag": "SortApp", "name": "SortBool", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD11", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] + "value": "true" }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "second": { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD11", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] + ] + } }, - "first": { - "tag": "DV", - "sort": { + { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD12", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD11", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] } - ] + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } } + ] + } + }, + "rule-substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD12", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar0", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGENERATEDCOUNTER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar3", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen0", + "sort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen1", + "sort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen2", + "sort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen3", + "sort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen4", + "sort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen5", + "sort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectEmit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortKEVMTracingCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen6", + "sort": { + "tag": "SortApp", + "name": "SortKEVMTracingCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] + } + } + ] }, { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", "name": "SortInt", "args": [] }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD12", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "first": { + "tag": "EVar", + "name": "RuleVarDEST", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD12", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" } } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", - "sort": { + { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD2", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD2", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "first": { + "tag": "EVar", + "name": "RuleVarI", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] + ] + } } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { + ] + } + } + }, + { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "name": "Lbl'-LT-'foundry'-GT-'", "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" + "tag": "App", + "name": "Lbl'-LT-'kevm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + ] }, - { - "tag": "EVar", - "name": "Var'Ques'WORD2", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ { "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", + "name": "Lbl'-LT-'cheatcodes'-GT-'", "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "150000000000000000" + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] }, { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, { "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", + "name": "Lbl'-LT-'expectEmit'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] }, { "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", + "name": "Lbl'-LT-'checkedTopics'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "Var'Ques'WORD3", + "name": "VarCHECKEDTOPICS'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortList", "args": [] } - }, + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ { "tag": "EVar", - "name": "Var'Ques'WORD2", + "name": "VarCHECKEDDATA'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", "args": [] } } @@ -6504,239 +29517,81 @@ } ] }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds'orBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, { "tag": "App", - "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "name": "Lbl'-LT-'whitelist'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD7", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] - } - }, + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD3", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] - } + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] } ] }, { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] } ] } @@ -6744,305 +29599,114 @@ }, { "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD5", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD5", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { + { "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "name": "Lbl'-LT-'generatedCounter'-GT-'", "sorts": [], "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, { "tag": "EVar", - "name": "Var'Ques'WORD5", + "name": "VarGENERATEDCOUNTER'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortInt", @@ -7051,952 +29715,3755 @@ } ] } + ] + } + }, + "substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD6", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD6", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] } }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, + "second": { + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] }, - "first": { - "tag": "DV", + "value": "2" + } + } + }, + "predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD6", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD7", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "432000" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] } ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD8", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] } }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "150000000000000000" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000" + } + ] + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" }, - "value": "645326474426547203313410069153905908525362434349" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1461501637330902918203684832716283019655932542976" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Unds'andBool'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] }, { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] } ] }, { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "9" + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2592000" + }, + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCONTRACT'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } @@ -8004,581 +33471,5902 @@ } ] } + ] + } + }, + "rule-id": "fcb6fead674d9669ee59734ee8a4bad3d45e5361dd18ab3a66476148e75ee2c6", + "rule-predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { "tag": "EVar", - "name": "VarCONTRACT'Unds'ID", + "name": "Var'Ques'WORD3", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] } }, - { + "second": { "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] }, - "value": "645326474426547203313410069153905908525362434349" + "value": "0" } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarNUMBER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] } }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "Not", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarNUMBER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { "tag": "EVar", - "name": "VarORIGIN'Unds'ID", + "name": "Var'Ques'WORD7", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] } }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "645326474426547203313410069153905908525362434349" + "second": { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } - ] + } } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] } - ] + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } } + ] + } + }, + "rule-substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, + "patterns": [ { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "1461501637330902918203684832716283019655932542976" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Unds'andBool'Unds'", - "sorts": [], - "args": [ + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DEST", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar0", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGENERATEDCOUNTER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar3", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen0", + "sort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen1", + "sort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen2", + "sort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen3", + "sort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen4", + "sort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + } + ] + }, { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen5", + "sort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectEmit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + } + ] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + { + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] }, - "value": "9" - } - ] - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] + } + ] + } + } + ] + }, { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortKEVMTracingCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarVV0'Unds'proposalId'Unds'114b9705", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen6", + "sort": { + "tag": "SortApp", + "name": "SortKEVMTracingCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] } } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarVV0'Unds'proposalId'Unds'114b9705", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + "first": { + "tag": "EVar", + "name": "RuleVarI", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] } - ] + }, + "second": { + "tag": "App", + "name": "Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + ] + } } - } - ] + ] + } } } - }, + ], "logs": [ { "tag": "rewrite", @@ -8587,22 +39375,6 @@ "tag": "success", "rule-id": "9940b671074c218a6c5f0f9e7b90d05efbcc000ee2884306b43860e14f6979e4" } - }, - { - "tag": "rewrite", - "origin": "proxy", - "result": { - "tag": "success", - "rule-id": "0ee7a2c1d6ff36a91ac9e9ed19a2c624ba21b97f4511af22044f6169bb8adfa1" - } - }, - { - "tag": "rewrite", - "origin": "booster", - "result": { - "tag": "success", - "rule-id": "20bc9774d59030dcada92e997351315ed198a464546f5b36d67578cfd12938d1" - } } ] } diff --git a/booster/test/rpc-integration/test-issue3764-vacuous-branch/response-branch-in-zero.json b/booster/test/rpc-integration/test-issue3764-vacuous-branch/response-branch-in-zero.json index 8e32aa0b8c..f1d5c1da2c 100644 --- a/booster/test/rpc-integration/test-issue3764-vacuous-branch/response-branch-in-zero.json +++ b/booster/test/rpc-integration/test-issue3764-vacuous-branch/response-branch-in-zero.json @@ -2,61 +2,40 @@ "jsonrpc": "2.0", "id": 0, "result": { - "reason": "depth-bound", - "depth": 2, + "reason": "branching", + "depth": 0, "state": { "term": { "format": "KORE", "version": 1, "term": { - "tag": "App", - "name": "Lbl'-LT-'generatedTop'-GT-'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { "tag": "App", - "name": "Lbl'-LT-'foundry'-GT-'", + "name": "Lbl'-LT-'generatedTop'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'kevm'-GT-'", + "name": "Lbl'-LT-'foundry'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'k'-GT-'", + "name": "Lbl'-LT-'kevm'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "kseq", + "name": "Lbl'-LT-'k'-GT-'", "sorts": [], "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInternalOp", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "App", - "name": "Lbl'Hash'endBasicBlock'Unds'EVM'Unds'InternalOp", - "sorts": [], - "args": [] - } - ] - }, { "tag": "App", "name": "kseq", @@ -80,30 +59,117 @@ "args": [ { "tag": "App", - "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "name": "Lbl'UndsUndsUndsUnds'EVM'Unds'InternalOp'Unds'BinStackOp'Unds'Int'Unds'Int", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortBinStackOp", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortOpCode", - "args": [] - } - ], + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + }, + { + "tag": "App", + "name": "Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool", + "sorts": [], "args": [ { "tag": "App", - "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "name": "Lbl'Unds'orBool'Unds'", "sorts": [], - "args": [] + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] } ] } @@ -112,205 +178,220 @@ ] }, { - "tag": "EVar", - "name": "VarCONTINUATION", - "sort": { - "tag": "SortApp", - "name": "SortK", - "args": [] - } + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] } ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'exit-code'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXITCODE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'mode'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "LblNORMAL", + "name": "Lbl'-LT-'exit-code'-GT-'", "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'schedule'-GT-'", - "sorts": [], - "args": [ + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { "tag": "App", - "name": "LblSHANGHAI'Unds'EVM", + "name": "Lbl'-LT-'mode'-GT-'", "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'useGas'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'ethereum'-GT-'", - "sorts": [], - "args": [ + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + }, { "tag": "App", - "name": "Lbl'-LT-'evm'-GT-'", + "name": "Lbl'-LT-'schedule'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'output'-GT-'", + "name": "LblSHANGHAI'Unds'EVM", "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - }, - "value": "" - } - ] - }, + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "Lbl'-LT-'statusCode'-GT-'", + "name": "Lbl'-LT-'evm'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortEndStatusCode", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortStatusCode", - "args": [] - } - ], + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], "args": [ { - "tag": "App", - "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", - "sorts": [], - "args": [] + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callStack'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "Lbl'Stop'List", + "name": "Lbl'-LT-'statusCode'-GT-'", "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'interimStates'-GT-'", - "sorts": [], - "args": [ + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, { "tag": "App", - "name": "Lbl'Stop'List", + "name": "Lbl'-LT-'callStack'-GT-'", "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'touchedAccounts'-GT-'", - "sorts": [], - "args": [ + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, { "tag": "App", - "name": "Lbl'Unds'Set'Unds'", + "name": "Lbl'-LT-'interimStates'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "LblSetItem", + "name": "Lbl'Stop'List", "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "398406661162394528054821880250857262101019749666" - } - ] - } - ] - }, + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ { "tag": "App", "name": "Lbl'Unds'Set'Unds'", @@ -344,7 +425,7 @@ "name": "SortInt", "args": [] }, - "value": "1405310203571408291950365054053061012934685786634" + "value": "398406661162394528054821880250857262101019749666" } ] } @@ -383,7 +464,7 @@ "name": "SortInt", "args": [] }, - "value": "728815563385977040452943777879061427756277306518" + "value": "1405310203571408291950365054053061012934685786634" } ] } @@ -422,7 +503,7 @@ "name": "SortInt", "args": [] }, - "value": "166020153748861866463033272813676692912666046993" + "value": "728815563385977040452943777879061427756277306518" } ] } @@ -461,7 +542,7 @@ "name": "SortInt", "args": [] }, - "value": "902409690331730437625142853483010427629017426509" + "value": "166020153748861866463033272813676692912666046993" } ] } @@ -469,33 +550,74 @@ }, { "tag": "App", - "name": "LblSetItem", + "name": "Lbl'Unds'Set'Unds'", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, + "name": "LblSetItem", + "sorts": [], + "args": [ { - "tag": "SortApp", - "name": "SortKItem", - "args": [] + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] } - ], + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "491460923342184218035706888008750043977755113263" + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] } ] } @@ -510,74 +632,33 @@ ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callState'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'program'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - }, - "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" - } - ] }, { "tag": "App", - "name": "Lbl'-LT-'jumpDests'-GT-'", + "name": "Lbl'-LT-'callState'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'Unds'Set'Unds'", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", "sorts": [], "args": [ - { - "tag": "App", - "name": "LblSetItem", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1566" - } - ] - } - ] - }, { "tag": "App", "name": "Lbl'Unds'Set'Unds'", @@ -611,7 +692,7 @@ "name": "SortInt", "args": [] }, - "value": "1547" + "value": "1566" } ] } @@ -650,7 +731,7 @@ "name": "SortInt", "args": [] }, - "value": "1542" + "value": "1547" } ] } @@ -689,7 +770,7 @@ "name": "SortInt", "args": [] }, - "value": "1513" + "value": "1542" } ] } @@ -728,7 +809,7 @@ "name": "SortInt", "args": [] }, - "value": "1402" + "value": "1513" } ] } @@ -767,7 +848,7 @@ "name": "SortInt", "args": [] }, - "value": "1411" + "value": "1402" } ] } @@ -806,7 +887,7 @@ "name": "SortInt", "args": [] }, - "value": "1425" + "value": "1411" } ] } @@ -845,7 +926,7 @@ "name": "SortInt", "args": [] }, - "value": "1434" + "value": "1425" } ] } @@ -884,7 +965,7 @@ "name": "SortInt", "args": [] }, - "value": "1452" + "value": "1434" } ] } @@ -923,7 +1004,7 @@ "name": "SortInt", "args": [] }, - "value": "1468" + "value": "1452" } ] } @@ -962,7 +1043,7 @@ "name": "SortInt", "args": [] }, - "value": "1461" + "value": "1468" } ] } @@ -1001,7 +1082,7 @@ "name": "SortInt", "args": [] }, - "value": "1490" + "value": "1461" } ] } @@ -1040,7 +1121,7 @@ "name": "SortInt", "args": [] }, - "value": "1383" + "value": "1490" } ] } @@ -1079,7 +1160,7 @@ "name": "SortInt", "args": [] }, - "value": "1376" + "value": "1383" } ] } @@ -1118,7 +1199,7 @@ "name": "SortInt", "args": [] }, - "value": "1316" + "value": "1376" } ] } @@ -1157,7 +1238,7 @@ "name": "SortInt", "args": [] }, - "value": "1311" + "value": "1316" } ] } @@ -1196,7 +1277,7 @@ "name": "SortInt", "args": [] }, - "value": "1358" + "value": "1311" } ] } @@ -1235,7 +1316,7 @@ "name": "SortInt", "args": [] }, - "value": "1344" + "value": "1358" } ] } @@ -1274,7 +1355,7 @@ "name": "SortInt", "args": [] }, - "value": "1335" + "value": "1344" } ] } @@ -1313,7 +1394,7 @@ "name": "SortInt", "args": [] }, - "value": "1288" + "value": "1335" } ] } @@ -1352,7 +1433,7 @@ "name": "SortInt", "args": [] }, - "value": "1253" + "value": "1288" } ] } @@ -1391,7 +1472,7 @@ "name": "SortInt", "args": [] }, - "value": "1205" + "value": "1253" } ] } @@ -1430,7 +1511,7 @@ "name": "SortInt", "args": [] }, - "value": "1103" + "value": "1205" } ] } @@ -1469,7 +1550,7 @@ "name": "SortInt", "args": [] }, - "value": "1195" + "value": "1103" } ] } @@ -1508,7 +1589,7 @@ "name": "SortInt", "args": [] }, - "value": "1015" + "value": "1195" } ] } @@ -1547,7 +1628,7 @@ "name": "SortInt", "args": [] }, - "value": "16" + "value": "1015" } ] } @@ -1586,7 +1667,7 @@ "name": "SortInt", "args": [] }, - "value": "350" + "value": "16" } ] } @@ -1625,7 +1706,7 @@ "name": "SortInt", "args": [] }, - "value": "341" + "value": "350" } ] } @@ -1664,7 +1745,7 @@ "name": "SortInt", "args": [] }, - "value": "369" + "value": "341" } ] } @@ -1703,7 +1784,7 @@ "name": "SortInt", "args": [] }, - "value": "364" + "value": "369" } ] } @@ -1742,7 +1823,7 @@ "name": "SortInt", "args": [] }, - "value": "312" + "value": "364" } ] } @@ -1781,7 +1862,7 @@ "name": "SortInt", "args": [] }, - "value": "383" + "value": "312" } ] } @@ -1820,7 +1901,7 @@ "name": "SortInt", "args": [] }, - "value": "388" + "value": "383" } ] } @@ -1859,7 +1940,7 @@ "name": "SortInt", "args": [] }, - "value": "298" + "value": "388" } ] } @@ -1898,7 +1979,7 @@ "name": "SortInt", "args": [] }, - "value": "289" + "value": "298" } ] } @@ -1937,7 +2018,7 @@ "name": "SortInt", "args": [] }, - "value": "284" + "value": "289" } ] } @@ -1976,7 +2057,7 @@ "name": "SortInt", "args": [] }, - "value": "270" + "value": "284" } ] } @@ -2015,7 +2096,7 @@ "name": "SortInt", "args": [] }, - "value": "243" + "value": "270" } ] } @@ -2054,7 +2135,7 @@ "name": "SortInt", "args": [] }, - "value": "212" + "value": "243" } ] } @@ -2093,7 +2174,7 @@ "name": "SortInt", "args": [] }, - "value": "252" + "value": "212" } ] } @@ -2132,7 +2213,7 @@ "name": "SortInt", "args": [] }, - "value": "256" + "value": "252" } ] } @@ -2171,7 +2252,7 @@ "name": "SortInt", "args": [] }, - "value": "226" + "value": "256" } ] } @@ -2210,7 +2291,7 @@ "name": "SortInt", "args": [] }, - "value": "231" + "value": "226" } ] } @@ -2249,7 +2330,7 @@ "name": "SortInt", "args": [] }, - "value": "207" + "value": "231" } ] } @@ -2288,7 +2369,7 @@ "name": "SortInt", "args": [] }, - "value": "102" + "value": "207" } ] } @@ -2327,7 +2408,7 @@ "name": "SortInt", "args": [] }, - "value": "140" + "value": "102" } ] } @@ -2366,7 +2447,7 @@ "name": "SortInt", "args": [] }, - "value": "838" + "value": "140" } ] } @@ -2405,7 +2486,7 @@ "name": "SortInt", "args": [] }, - "value": "849" + "value": "838" } ] } @@ -2444,7 +2525,7 @@ "name": "SortInt", "args": [] }, - "value": "794" + "value": "849" } ] } @@ -2483,7 +2564,7 @@ "name": "SortInt", "args": [] }, - "value": "717" + "value": "794" } ] } @@ -2522,7 +2603,7 @@ "name": "SortInt", "args": [] }, - "value": "708" + "value": "717" } ] } @@ -2561,7 +2642,7 @@ "name": "SortInt", "args": [] }, - "value": "620" + "value": "708" } ] } @@ -2600,7 +2681,7 @@ "name": "SortInt", "args": [] }, - "value": "633" + "value": "620" } ] } @@ -2639,7 +2720,7 @@ "name": "SortInt", "args": [] }, - "value": "601" + "value": "633" } ] } @@ -2678,7 +2759,7 @@ "name": "SortInt", "args": [] }, - "value": "571" + "value": "601" } ] } @@ -2717,7 +2798,7 @@ "name": "SortInt", "args": [] }, - "value": "561" + "value": "571" } ] } @@ -2756,7 +2837,7 @@ "name": "SortInt", "args": [] }, - "value": "503" + "value": "561" } ] } @@ -2795,7 +2876,7 @@ "name": "SortInt", "args": [] }, - "value": "544" + "value": "503" } ] } @@ -2834,7 +2915,7 @@ "name": "SortInt", "args": [] }, - "value": "534" + "value": "544" } ] } @@ -2873,7 +2954,7 @@ "name": "SortInt", "args": [] }, - "value": "538" + "value": "534" } ] } @@ -2912,7 +2993,7 @@ "name": "SortInt", "args": [] }, - "value": "521" + "value": "538" } ] } @@ -2951,7 +3032,7 @@ "name": "SortInt", "args": [] }, - "value": "451" + "value": "521" } ] } @@ -2990,7 +3071,7 @@ "name": "SortInt", "args": [] }, - "value": "465" + "value": "451" } ] } @@ -3029,7 +3110,7 @@ "name": "SortInt", "args": [] }, - "value": "470" + "value": "465" } ] } @@ -3068,7 +3149,7 @@ "name": "SortInt", "args": [] }, - "value": "407" + "value": "470" } ] } @@ -3107,7 +3188,7 @@ "name": "SortInt", "args": [] }, - "value": "402" + "value": "407" } ] } @@ -3146,7 +3227,7 @@ "name": "SortInt", "args": [] }, - "value": "409" + "value": "402" } ] } @@ -3185,7 +3266,7 @@ "name": "SortInt", "args": [] }, - "value": "423" + "value": "409" } ] } @@ -3224,7 +3305,7 @@ "name": "SortInt", "args": [] }, - "value": "489" + "value": "423" } ] } @@ -3263,7 +3344,7 @@ "name": "SortInt", "args": [] }, - "value": "484" + "value": "489" } ] } @@ -3271,33 +3352,74 @@ }, { "tag": "App", - "name": "LblSetItem", + "name": "Lbl'Unds'Set'Unds'", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, + "name": "LblSetItem", + "sorts": [], + "args": [ { - "tag": "SortApp", - "name": "SortKItem", - "args": [] + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] } - ], + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "937" + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] } ] } @@ -3442,100 +3564,27 @@ ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'id'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1405310203571408291950365054053061012934685786634" - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'caller'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "902409690331730437625142853483010427629017426509" - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callData'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "name": "Lbl'-LT-'id'-GT-'", "sorts": [], "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - }, - "value": "\u0019 „Q" - }, { "tag": "App", - "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", - "sorts": [], + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], "args": [ { "tag": "DV", @@ -3544,143 +3593,200 @@ "name": "SortInt", "args": [] }, - "value": "32" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "value": "1405310203571408291950365054053061012934685786634" } ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callValue'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'wordStack'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "name": "Lbl'-LT-'caller'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", - "sorts": [], - "args": [ + "name": "inj", + "sorts": [ { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "SortApp", + "name": "SortInt", + "args": [] }, { - "tag": "EVar", - "name": "Var'Ques'WORD3", + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - } + }, + "value": "902409690331730437625142853483010427629017426509" } ] - }, + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD3", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBytes", "args": [] - } + }, + "value": "\u0019 „Q" }, { "tag": "App", - "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD7", + "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - } + }, + "value": "32" }, { - "tag": "App", - "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "561" - }, - { - "tag": "App", - "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { "tag": "App", "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "Var'Ques'WORD8", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - }, - "value": "0" + } }, { "tag": "App", @@ -3688,13 +3794,13 @@ "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD3", + "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - } + }, + "value": "0" }, { "tag": "App", @@ -3702,13 +3808,13 @@ "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "Var'Ques'WORD3", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - }, - "value": "256" + } }, { "tag": "App", @@ -3722,13 +3828,29 @@ "name": "SortInt", "args": [] }, - "value": "421561425" + "value": "256" }, { "tag": "App", - "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", "sorts": [], - "args": [] + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] } ] } @@ -3747,61 +3869,27 @@ ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'localMem'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - }, - "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'pc'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "538" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'gas'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ { - "tag": "SortApp", - "name": "SortGas", - "args": [] + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" } - ], + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], "args": [ { "tag": "DV", @@ -3810,48 +3898,48 @@ "name": "SortInt", "args": [] }, - "value": "0" + "value": "1505" } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'memoryUsed'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callGas'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ { - "tag": "SortApp", - "name": "SortGas", - "args": [] + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] } - ], + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], "args": [ { "tag": "DV", @@ -3863,72 +3951,10 @@ "value": "0" } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'static'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'callDepth'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "5" - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'substate'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'selfDestruct'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarSELFDESTRUCT'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortSet", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'log'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "LblListItem", + "name": "Lbl'-LT-'callGas'-GT-'", "sorts": [], "args": [ { @@ -3937,68 +3963,123 @@ "sorts": [ { "tag": "SortApp", - "name": "SortSubstateLogEntry", + "name": "SortInt", "args": [] }, { "tag": "SortApp", - "name": "SortKItem", + "name": "SortGas", "args": [] } ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", - "sorts": [], - "args": [ + "name": "inj", + "sorts": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "398406661162394528054821880250857262101019749666" + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ { "tag": "App", - "name": "Lbl'Unds'List'Unds'", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", "sorts": [], "args": [ { - "tag": "App", - "name": "LblListItem", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" - } - ] - } - ] + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" }, { "tag": "App", @@ -4033,7 +4114,7 @@ "name": "SortInt", "args": [] }, - "value": "2" + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" } ] } @@ -4041,214 +4122,150 @@ }, { "tag": "App", - "name": "LblListItem", + "name": "Lbl'Unds'List'Unds'", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, + "name": "LblListItem", + "sorts": [], + "args": [ { - "tag": "SortApp", - "name": "SortKItem", - "args": [] + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } - ], + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "4" + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] } ] } ] } ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" } ] - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - }, - "value": "" } ] } ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'refund'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'accessedAccounts'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "Lbl'Stop'Set", + "name": "Lbl'-LT-'refund'-GT-'", "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'accessedStorage'-GT-'", - "sorts": [], - "args": [ + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, { "tag": "App", - "name": "Lbl'Stop'Map", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", "sorts": [], - "args": [] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'gasPrice'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarGASPRICE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'origin'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] }, { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - ], - "args": [ - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'blockhashes'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarBLOCKHASHES'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortList", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'block'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'previousHash'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarPREVIOUSHASH'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'ommersHash'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarOMMERSHASH'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'coinbase'-GT-'", + "name": "Lbl'-LT-'gasPrice'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarCOINBASE'Unds'CELL", + "name": "VarGASPRICE'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortInt", @@ -4259,31 +4276,49 @@ }, { "tag": "App", - "name": "Lbl'-LT-'stateRoot'-GT-'", + "name": "Lbl'-LT-'origin'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarSTATEROOT'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "name": "Lbl'-LT-'blockhashes'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarTRANSACTIONSROOT'Unds'CELL", + "name": "VarBLOCKHASHES'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortList", "args": [] } } @@ -4291,156 +4326,314 @@ }, { "tag": "App", - "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "name": "Lbl'-LT-'block'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarRECEIPTSROOT'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'logsBloom'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarLOGSBLOOM'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'difficulty'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarDIFFICULTY'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'number'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarNUMBER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'gasLimit'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarGASLIMIT'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'gasUsed'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarGASUSED'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortGas", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'timestamp'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'extraData'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarEXTRADATA'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'mixHash'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, { - "tag": "EVar", - "name": "VarMIXHASH'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] } ] - }, + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "Lbl'-LT-'blockNonce'-GT-'", + "name": "Lbl'-LT-'chainID'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarBLOCKNONCE'Unds'CELL", + "name": "VarCHAINID'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortInt", @@ -4451,106 +4644,12 @@ }, { "tag": "App", - "name": "Lbl'-LT-'baseFee'-GT-'", + "name": "Lbl'-LT-'accounts'-GT-'", "sorts": [], "args": [ - { - "tag": "EVar", - "name": "VarBASEFEE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarWITHDRAWALSROOT'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarOMMERBLOCKHEADERS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortJSON", - "args": [] - } - } - ] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'network'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'chainID'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCHAINID'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'accounts'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "LblAccountCellMapItem", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'acctID'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "532667443394220189835739947317809624605775530598" - } - ] - }, { "tag": "App", - "name": "Lbl'-LT-'account'-GT-'", + "name": "LblAccountCellMapItem", "sorts": [], "args": [ { @@ -4571,85 +4670,58 @@ }, { "tag": "App", - "name": "Lbl'-LT-'balance'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'code'-GT-'", + "name": "Lbl'-LT-'account'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortAccountCode", - "args": [] - } - ], + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], "args": [ { "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBytes", + "name": "SortInt", "args": [] }, - "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + "value": "532667443394220189835739947317809624605775530598" } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'storage'-GT-'", - "sorts": [], - "args": [ + }, { "tag": "App", - "name": "LblMap'Coln'update", + "name": "Lbl'-LT-'balance'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'STORAGE5", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortMap", + "name": "SortInt", "args": [] - } - }, + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ { "tag": "App", "name": "inj", "sorts": [ { "tag": "SortApp", - "name": "SortInt", + "name": "SortBytes", "args": [] }, { "tag": "SortApp", - "name": "SortKItem", + "name": "SortAccountCode", "args": [] } ], @@ -4658,93 +4730,221 @@ "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBytes", "args": [] }, - "value": "0" + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" } ] - }, + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ { "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], + "name": "LblMap'Coln'update", + "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "Var'Ques'STORAGE5", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortMap", "args": [] - }, - "value": "1859908298493297446258506712967140281756952292642" + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] } ] } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'origStorage'-GT-'", - "sorts": [], - "args": [ + }, { - "tag": "EVar", - "name": "Var'Ques'STORAGE5", - "sort": { - "tag": "SortApp", - "name": "SortMap", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'nonce'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1" + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] } ] } ] } ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } } ] }, { "tag": "App", - "name": "Lbl'-LT-'txOrder'-GT-'", + "name": "Lbl'-LT-'prevOrigin'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarTXORDER'Unds'CELL", + "name": "VarPREVORIGIN'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortList", + "name": "SortAccount", "args": [] } } @@ -4752,15 +4952,15 @@ }, { "tag": "App", - "name": "Lbl'-LT-'txPending'-GT-'", + "name": "Lbl'-LT-'newCaller'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarTXPENDING'Unds'CELL", + "name": "VarNEWCALLER'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortList", + "name": "SortAccount", "args": [] } } @@ -4768,145 +4968,374 @@ }, { "tag": "App", - "name": "Lbl'-LT-'messages'-GT-'", + "name": "Lbl'-LT-'newOrigin'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "VarMESSAGES'Unds'CELL", + "name": "VarNEWORIGIN'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortMessageCellMap", + "name": "SortAccount", "args": [] } } ] - } - ] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'cheatcodes'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'prank'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'prevCaller'-GT-'", - "sorts": [], - "args": [ + }, { - "tag": "EVar", - "name": "VarPREVCALLER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'prevOrigin'-GT-'", + "name": "Lbl'-LT-'expectedRevert'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarPREVORIGIN'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'newCaller'-GT-'", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarNEWCALLER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'newOrigin'-GT-'", + "name": "Lbl'-LT-'expectEmit'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarNEWORIGIN'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'active'-GT-'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'depth'-GT-'", + "name": "Lbl'-LT-'whitelist'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarDEPTH'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] } ] }, { "tag": "App", - "name": "Lbl'-LT-'singleCall'-GT-'", + "name": "Lbl'-LT-'mockCalls'-GT-'", "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] } ] } @@ -4914,12 +5343,12 @@ }, { "tag": "App", - "name": "Lbl'-LT-'expectedRevert'-GT-'", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", "sorts": [], "args": [ { "tag": "App", - "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "name": "Lbl'-LT-'activeTracing'-GT-'", "sorts": [], "args": [ { @@ -4929,52 +5358,29 @@ "name": "SortBool", "args": [] }, - "value": "true" + "value": "false" } ] }, { "tag": "App", - "name": "Lbl'-LT-'expectedReason'-GT-'", + "name": "Lbl'-LT-'traceStorage'-GT-'", "sorts": [], "args": [ { "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBytes", + "name": "SortBool", "args": [] }, - "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + "value": "true" } ] }, { "tag": "App", - "name": "Lbl'-LT-'expectedDepth'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedOpcode'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "name": "Lbl'-LT-'traceWordStack'-GT-'", "sorts": [], "args": [ { @@ -4984,84 +5390,13 @@ "name": "SortBool", "args": [] }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedAddress'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDADDRESS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedValue'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDVALUE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedData'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDDATA'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBytes", - "args": [] - } + "value": "true" } ] }, { "tag": "App", - "name": "Lbl'-LT-'opcodeType'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarOPCODETYPE'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortOpcodeType", - "args": [] - } - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectEmit'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'recordEvent'-GT-'", + "name": "Lbl'-LT-'traceMemory'-GT-'", "sorts": [], "args": [ { @@ -5071,13 +5406,13 @@ "name": "SortBool", "args": [] }, - "value": "false" + "value": "true" } ] }, { "tag": "App", - "name": "Lbl'-LT-'isEventExpected'-GT-'", + "name": "Lbl'-LT-'recordedTrace'-GT-'", "sorts": [], "args": [ { @@ -5093,129 +5428,16 @@ }, { "tag": "App", - "name": "Lbl'-LT-'checkedTopics'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCHECKEDTOPICS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortList", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'checkedData'-GT-'", + "name": "Lbl'-LT-'traceData'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "VarCHECKEDDATA'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - } + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] } ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'expectedEventAddress'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortAccount", - "args": [] - } - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'whitelist'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'addressSet'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'Set", - "sorts": [], - "args": [] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'storageSlotSet'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'Set", - "sorts": [], - "args": [] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'mockCalls'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'MockCallCellMap", - "sorts": [], - "args": [] } ] } @@ -5223,256 +5445,9331 @@ }, { "tag": "App", - "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "name": "Lbl'-LT-'generatedCounter'-GT-'", "sorts": [], "args": [ { - "tag": "App", - "name": "Lbl'-LT-'activeTracing'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "false" - } - ] + "tag": "EVar", + "name": "VarGENERATEDCOUNTER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "App", - "name": "Lbl'-LT-'traceStorage'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } }, - "value": "true" - } - ] + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "79228162514264337593543950336" + } + ] + } }, { - "tag": "App", - "name": "Lbl'-LT-'traceWordStack'-GT-'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", "name": "SortBool", "args": [] }, - "value": "true" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'traceMemory'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'recordedTrace'-GT-'", - "sorts": [], - "args": [ + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "false" - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'traceData'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Stop'List", - "sorts": [], - "args": [] - } - ] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'generatedCounter'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarGENERATEDCOUNTER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "432000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2592000" + }, + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "150000000000000000" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCONTRACT'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } ] } - }, - "substitution": { - "format": "KORE", - "version": 1, - "term": { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "EVar", - "name": "Var'Ques'WORD", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - "second": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "2" - } - } - }, - "predicate": { - "format": "KORE", - "version": 1, + } + }, + "next-states": [ + { "term": { - "tag": "And", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "patterns": [ - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { + "format": "KORE", + "version": 1, + "term": { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", + "name": "Lbl'-LT-'foundry'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD0", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'kevm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsUndsUnds'EVM'Unds'InternalOp'Unds'UnStackOp'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblJUMP'Unds'EVM'Unds'UnStackOp", + "sorts": [], + "args": [] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectEmit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] + } + ] }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" + "tag": "App", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] }, - "second": { + { "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "name": "Lbl'-LT-'generatedCounter'-GT-'", "sorts": [], "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, { "tag": "EVar", - "name": "Var'Ques'WORD0", + "name": "VarGENERATEDCOUNTER'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortInt", @@ -5481,1022 +14778,14738 @@ } ] } + ] + } + }, + "substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] }, - { - "tag": "Equals", - "argSort": { + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] - }, + } + }, + "second": { + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] }, - "first": { - "tag": "DV", + "value": "2" + } + } + }, + "predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD0", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, + "patterns": [ { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "432000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, { - "tag": "App", - "name": "Lbl'Unds'-Int'Unds'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] } }, { - "tag": "EVar", - "name": "Var'Ques'WORD0", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } - } - ] - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "432000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] }, - "first": { - "tag": "DV", + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "DV", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "2592000" + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "150000000000000000" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000" + } + ] + } + ] + } }, { - "tag": "App", - "name": "Lbl'Unds'-Int'Unds'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] }, { - "tag": "EVar", - "name": "Var'Ques'WORD1", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2592000" + }, + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCONTRACT'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } + ] + } + }, + "rule-id": "0ee7a2c1d6ff36a91ac9e9ed19a2c624ba21b97f4511af22044f6169bb8adfa1", + "rule-predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { + "patterns": [ + { + "tag": "Equals", + "argSort": { "tag": "SortApp", "name": "SortBool", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD10", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] + "value": "true" }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD11", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "second": { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } }, - "first": { - "tag": "DV", - "sort": { + { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD11", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD12", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD11", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] } - ] + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } } + ] + } + }, + "rule-substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD12", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar0", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGENERATEDCOUNTER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar3", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen0", + "sort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen1", + "sort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen2", + "sort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen3", + "sort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen4", + "sort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen5", + "sort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectEmit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortKEVMTracingCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen6", + "sort": { + "tag": "SortApp", + "name": "SortKEVMTracingCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] + } + } + ] }, { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", "name": "SortInt", "args": [] }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD12", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "first": { + "tag": "EVar", + "name": "RuleVarDEST", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD12", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" } } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", - "sort": { + { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD2", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD2", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "first": { + "tag": "EVar", + "name": "RuleVarI", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] + ] + } } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { + ] + } + } + }, + { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "name": "Lbl'-LT-'foundry'-GT-'", "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" + "tag": "App", + "name": "Lbl'-LT-'kevm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + ] }, - { - "tag": "EVar", - "name": "Var'Ques'WORD2", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ { "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", + "name": "Lbl'-LT-'cheatcodes'-GT-'", "sorts": [], "args": [ { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "150000000000000000" + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] }, { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", - "sorts": [], - "args": [ + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] + }, { "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", + "name": "Lbl'-LT-'expectEmit'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] }, { "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", + "name": "Lbl'-LT-'checkedTopics'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "Var'Ques'WORD3", + "name": "VarCHECKEDTOPICS'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortList", "args": [] } - }, + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ { "tag": "EVar", - "name": "Var'Ques'WORD2", + "name": "VarCHECKEDDATA'Unds'CELL", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", "args": [] } } @@ -6505,1498 +29518,3952 @@ ] }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000" + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] } ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" }, - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds'orBool'Unds'", - "sorts": [], - "args": [ { "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] }, { "tag": "App", - "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "name": "Lbl'-LT-'traceWordStack'-GT-'", "sorts": [], "args": [ { - "tag": "App", - "name": "Lbl'UndsStar'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ { - "tag": "EVar", - "name": "Var'Ques'WORD3", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] - } + }, + "value": "true" } ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ + }, { - "tag": "EVar", - "name": "Var'Ques'WORD3", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] } ] } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD4", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD5", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" }, - "second": { + { "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", + "name": "Lbl'-LT-'generatedCounter'-GT-'", "sorts": [], "args": [ { "tag": "EVar", - "name": "Var'Ques'WORD5", + "name": "VarGENERATEDCOUNTER'Unds'CELL", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" } ] } + ] + } + }, + "substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD5", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD6", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] } }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, + "second": { + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortGeneratedTopCell", + "name": "SortInt", "args": [] }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD6", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } + "value": "2" + } + } + }, + "predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD6", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD7", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds'andBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "9" + } + ] + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "432000" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] } ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD7", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "EVar", - "name": "Var'Ques'WORD8", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] } }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD8", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1000000000000000000000000000" + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000000000000" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461501637330902918203684832716283019655932542976" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "150000000000000000" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsPlus'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1000000000000000000" + } + ] + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, + "patterns": [ { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "Var'Ques'WORD9", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" }, - "value": "645326474426547203313410069153905908525362434349" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1461501637330902918203684832716283019655932542976" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Unds'andBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD2", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD4", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD5", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD6", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] }, { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] - } + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] } ] }, { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ { - "tag": "EVar", - "name": "VarCALLER'Unds'ID", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } }, { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "9" + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "EVar", + "name": "VarVV0'Unds'proposalId'Unds'114b9705", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2592000" + }, + { + "tag": "App", + "name": "Lbl'Unds'-Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD0", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD1", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD9", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD10", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD12", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD11", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'Unds-LT-Eqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" + } + ] + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCALLER'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarCONTRACT'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + }, + { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "645326474426547203313410069153905908525362434349" + } + } + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] } ] } @@ -8004,598 +33471,5902 @@ } ] } + ] + } + }, + "rule-id": "fcb6fead674d9669ee59734ee8a4bad3d45e5361dd18ab3a66476148e75ee2c6", + "rule-predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ + "patterns": [ { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { + "tag": "Not", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { "tag": "EVar", - "name": "VarCONTRACT'Unds'ID", + "name": "Var'Ques'WORD3", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] } }, - { + "second": { "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] }, - "value": "645326474426547203313410069153905908525362434349" + "value": "0" } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarNUMBER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] } }, { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "57896044618658097711785492504343953926634992332820282019728792003956564819967" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", + "tag": "Not", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarNUMBER'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { + "arg": { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { "tag": "EVar", - "name": "VarORIGIN'Unds'ID", + "name": "Var'Ques'WORD7", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] } }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "645326474426547203313410069153905908525362434349" + "second": { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } - ] + } } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "first": { + "tag": "EVar", + "name": "Var'Ques'WORD", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] } - ] + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } } + ] + } + }, + "rule-substitution": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "patterns": [ + { + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, + "patterns": [ { - "tag": "DV", + "tag": "And", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "1461501637330902918203684832716283019655932542976" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "LblnotBool'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'Unds'andBool'Unds'", - "sorts": [], - "args": [ + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DEST", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar0", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedCounterCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGENERATEDCOUNTER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'DotVar3", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInternalOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'Hash'pc'LSqBUndsRSqBUnds'EVM'Unds'InternalOp'Unds'OpCode", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBinStackOp", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortOpCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblJUMPI'Unds'EVM'Unds'BinStackOp", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + }, + { + "tag": "EVar", + "name": "VarCONTINUATION", + "sort": { + "tag": "SortApp", + "name": "SortK", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen0", + "sort": { + "tag": "SortApp", + "name": "SortExitCodeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'exit-code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXITCODE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen1", + "sort": { + "tag": "SortApp", + "name": "SortModeCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'mode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblNORMAL", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen2", + "sort": { + "tag": "SortApp", + "name": "SortScheduleCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'schedule'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSHANGHAI'Unds'EVM", + "sorts": [], + "args": [] + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen3", + "sort": { + "tag": "SortApp", + "name": "SortUseGasCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'useGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + } + ] + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen4", + "sort": { + "tag": "SortApp", + "name": "SortEthereumCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'ethereum'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'evm'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'output'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'statusCode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortEndStatusCode", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortStatusCode", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "LblEVMC'Unds'SUCCESS'Unds'NETWORK'Unds'EndStatusCode", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'interimStates'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'touchedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "166020153748861866463033272813676692912666046993" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "728815563385977040452943777879061427756277306518" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "491460923342184218035706888008750043977755113263" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callState'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'program'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "`€`@R4€\u0015a\u0000\u0010W`\u0000€ý[P`\u00046\u0010a\u0000ÏW`\u00005`à\u001c€cp ‚1\u0011a\u0000ŒW€c‹Ì¿b\u0011a\u0000fW€c‹Ì¿b\u0014a\u0001™W€c§s„Á\u0014a\u0001ÃW€c©\u0005œ»\u0014a\u0001ÖW€cÎ|*Â\u0014a\u0001éW`\u0000€ý[€cp ‚1\u0014a\u0001^W€cz(ûˆ\u0014a\u0001qW€c„\u0004\u001aX\u0014a\u0001„W`\u0000€ý[€c\t^§³\u0014a\u0000ÔW€c\u0018\u0016\rÝ\u0014a\u0000üW€c\u0019 „Q\u0014a\u0001\u000eW€c:˜ï9\u0014a\u0001!W€cU¶í\\\u0014a\u0001*W€ciA[†\u0014a\u0001UW[`\u0000€ý[a\u0000ça\u0000â6`\u0004a\u0005$V[a\u0002\tV[`@Q\u0015\u0015R` \u0001[`@Q€‘\u0003ó[`\u0000T[`@QR` \u0001a\u0000óV[a\u0001\u0000a\u0001\u001c6`\u0004a\u0005NV[a\u0002 V[a\u0001\u0000`\u0001TV[a\u0001\u0000a\u000186`\u0004a\u0005gV[`\u0003` R`\u0000’ƒR`@€„ ‘R‚R TV[a\u0001\u0000`\u0000TV[a\u0001\u0000a\u0001l6`\u0004a\u0005šV[a\u0002;V[a\u0001\u0000a\u00016`\u0004a\u0005NV[a\u0002YV[a\u0001—a\u0001’6`\u0004a\u0005NV[`\u0000UV[\u0000[a\u0001—a\u0001§6`\u0004a\u0005$V[`\u0001`\u0001` \u001b\u0003‘\u0016`\u0000R`\u0002` R`@ UV[a\u0001—a\u0001Ñ6`\u0004a\u0005NV[`\u0001UV[a\u0000ça\u0001ä6`\u0004a\u0005$V[a\u0002lV[a\u0001\u0000a\u0001÷6`\u0004a\u0005šV[`\u0002` R`\u0000R`@ TV[`\u0000a\u0002\u00163„„a\u0002yV[P`\u0001[’‘PPV[`\u0000€T`\u0001Ta\u00021„a\u0005ÒV[a\u0002\u001a‘a\u0005éV[`\u0001`\u0001` \u001b\u0003\u0016`\u0000R`\u0002` R`@ Ta\u0002\u001a[`\u0000`\u0001T`\u0000Tƒa\u00021‘a\u0005ÒV[`\u0000a\u0002\u00163„„a\u0003FV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0002ÍW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0016`$‚\u0001Ru ¨()'«\"¯£)'¦¯­\"©'¯ ¢\")`Q\u001b`D‚\u0001R`d\u0001[`@Q€‘\u0003ý[`\u0001`\u0001` \u001b\u0003‚\u0016a\u0003\u001aW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0014`$‚\u0001Rs ¨()'«\"¯ª'¯­\"©'¯ ¢\")`a\u001b`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003’ƒ\u0016`\u0000R`\u0003` R`@€ƒ ”•\u0016‚R’’R‘ UV[`\u0000a\u0003Q‚a\u0002 V[P`\u0001`\u0001` \u001b\u0003„\u0016a\u0003©W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0017`$‚\u0001RTRANSFER_FROM_ZERO_ADDR\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003ƒ\u0016a\u0003÷W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0015`$‚\u0001Rt*) §)£\"©/ª'¯­\"©'¯ ¢\")`Y\u001b`D‚\u0001R`d\u0001a\u0002ÄV[0`\u0001`\u0001` \u001b\u0003„\u0016\u0003a\u0004OW`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u001a`$‚\u0001RTRANSFER_TO_STETH_CONTRACT\u0000\u0000\u0000\u0000\u0000\u0000`D‚\u0001R`d\u0001a\u0002ÄV[`\u0001`\u0001` \u001b\u0003„\u0016`\u0000R`\u0002` R`@ T€‚\u0011\u0015a\u0004«W`@QbF\u001bÍ`å\u001bR` `\u0004‚\u0001R`\u0010`$‚\u0001Ro\u0010S\u0010SÑWÑV\u0010ÑQQ\u0011Q`‚\u001b`D‚\u0001R`d\u0001a\u0002ÄV[a\u0004µ‚‚a\u0006\u000bV[`\u0001`\u0001` \u001b\u0003€‡\u0016`\u0000R`\u0002` R`@€‚ ““U†\u0016R Ta\u0004吃a\u0006\u001eV[`\u0001`\u0001` \u001b\u0003”\u0016`\u0000R`\u0002` R`@ ““UPPPPV[€5`\u0001`\u0001` \u001b\u0003\u0016\u0014a\u0005\u001fW`\u0000€ý[‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u00057W`\u0000€ý[a\u0005@ƒa\u0005\u0008V[”` ““\u00015“PPPV[`\u0000` ‚„\u0003\u0012\u0015a\u0005`W`\u0000€ý[P5‘PV[`\u0000€`@ƒ…\u0003\u0012\u0015a\u0005zW`\u0000€ý[a\u0005ƒƒa\u0005\u0008V[‘Pa\u0005‘` „\u0001a\u0005\u0008V[P’P’PV[`\u0000` ‚„\u0003\u0012\u0015a\u0005¬W`\u0000€ý[a\u0005µ‚a\u0005\u0008V[“’PPPV[cNH{q`à\u001b`\u0000R`\u0011`\u0004R`$`\u0000ý[€‚\u0002\u0015‚‚\u0004„\u0014\u0017a\u0002\u001aWa\u0002\u001aa\u0005¼V[`\u0000‚a\u0006\u0006WcNH{q`à\u001b`\u0000R`\u0012`\u0004R`$`\u0000ý[P\u0004V[\u0003\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼V[€‚\u0001€‚\u0011\u0015a\u0002\u001aWa\u0002\u001aa\u0005¼Vþ¢dipfsX\"\u0012 š\u0012\u001bLé³_°×\u0003œ‚hY£íÇg´íJ½_f ƒ,A\u0016¤˜dsolcC\u0000\u0008\u0017\u00003" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'jumpDests'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1434" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "794" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "538" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "571" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "312" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "409" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "633" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "601" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "350" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1566" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1311" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1468" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "284" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "252" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1490" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "402" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "243" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "16" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "465" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1425" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "369" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "849" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "470" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "534" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "503" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "407" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1335" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1015" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "212" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1461" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "341" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1205" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "298" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1195" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1547" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1288" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1513" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "489" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "937" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "521" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1358" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "270" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "207" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1103" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1452" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "364" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "140" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "620" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "717" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "226" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "451" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1411" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1376" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1344" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "544" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "289" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "102" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "838" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1542" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "423" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1383" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "231" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "484" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "388" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1316" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'Set'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "708" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblSetItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1253" + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'id'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1405310203571408291950365054053061012934685786634" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'caller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "902409690331730437625142853483010427629017426509" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsPlus'Bytes'UndsUnds'BYTES-HOOKED'Unds'Bytes'Unds'Bytes'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0019 „Q" + }, + { + "tag": "App", + "name": "Lbl'Hash'buf'LParUndsCommUndsRParUnds'BUF-SYNTAX'Unds'Bytes'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32" + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'wordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "561" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD8", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "256" + }, + { + "tag": "App", + "name": "Lbl'UndsColnUndsUnds'EVM-TYPES'Unds'WordStack'Unds'Int'Unds'WordStack", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "421561425" + }, + { + "tag": "App", + "name": "Lbl'Stop'WordStack'Unds'EVM-TYPES'Unds'WordStack", + "sorts": [], + "args": [] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'localMem'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000€" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'pc'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1505" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'memoryUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callGas'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'static'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'callDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "5" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'substate'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'selfDestruct'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSELFDESTRUCT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortSet", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'log'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortSubstateLogEntry", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "App", + "name": "Lbl'LBraUndsPipeUndsPipeUndsRBraUnds'EVM-TYPES'Unds'SubstateLogEntry'Unds'Int'Unds'List'Unds'Bytes", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "398406661162394528054821880250857262101019749666" + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "32750714266927819287923570661081367887357914085447966786193978800820148949912" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'Unds'List'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "2" + } + ] + } + ] + }, + { + "tag": "App", + "name": "LblListItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "4" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'refund'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedAccounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accessedStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Map", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasPrice'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASPRICE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + ], + "args": [ + { + "tag": "EVar", + "name": "VarORIGIN'Unds'ID", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockhashes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKHASHES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'block'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'previousHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVIOUSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommersHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERSHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'coinbase'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCOINBASE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'stateRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarSTATEROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'transactionsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTRANSACTIONSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'receiptsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarRECEIPTSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'logsBloom'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarLOGSBLOOM'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'difficulty'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDIFFICULTY'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'number'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNUMBER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasLimit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASLIMIT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'gasUsed'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarGASUSED'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortGas", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'timestamp'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTIMESTAMP'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'extraData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXTRADATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mixHash'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMIXHASH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'blockNonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBLOCKNONCE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'baseFee'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarBASEFEE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'withdrawalsRoot'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarWITHDRAWALSROOT'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'ommerBlockHeaders'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOMMERBLOCKHEADERS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortJSON", + "args": [] + } + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'network'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'chainID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHAINID'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'accounts'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblAccountCellMapItem", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'account'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'acctID'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "532667443394220189835739947317809624605775530598" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'balance'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'code'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortAccountCode", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "6==7===6=s Ëˆ—\u0007Ô&§£†‡\n\u0003¼pÑ°iu˜Zô=‚€>=‘`+Wý[ó" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "LblMap'Coln'update", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1859908298493297446258506712967140281756952292642" + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'origStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'STORAGE5", + "sort": { + "tag": "SortApp", + "name": "SortMap", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'nonce'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "1" + } + ] + } + ] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txOrder'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXORDER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'txPending'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarTXPENDING'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'messages'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarMESSAGES'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortMessageCellMap", + "args": [] + } + } + ] + } + ] + } + ] + } + } + ] + }, { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen5", + "sort": { + "tag": "SortApp", + "name": "SortCheatcodesCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'cheatcodes'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prank'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'prevCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'prevOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarPREVORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newCaller'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWCALLER'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'newOrigin'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarNEWORIGIN'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'active'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'depth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarDEPTH'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'singleCall'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedRevert'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isRevertExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedReason'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + }, + "value": "\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000 \u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0004åæ/Ý\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedDepth'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedOpcode'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isOpcodeExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedValue'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDVALUE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBytes", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'opcodeType'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarOPCODETYPE'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortOpcodeType", + "args": [] + } + } + ] + } + ] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarORIGIN'Unds'ID", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] + { + "tag": "App", + "name": "Lbl'-LT-'expectEmit'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'recordEvent'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isEventExpected'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedTopics'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDTOPICS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortList", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'checkedData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarCHECKEDDATA'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'expectedEventAddress'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "VarEXPECTEDEVENTADDRESS'Unds'CELL", + "sort": { + "tag": "SortApp", + "name": "SortAccount", + "args": [] + } + } + ] + } + ] }, - "value": "9" - } - ] - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarTIMESTAMP'Unds'CELL", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-Eqls'Int'Unds'", - "sorts": [], - "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'whitelist'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'isCallWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'isStorageWhitelistActive'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'addressSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'storageSlotSet'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'Set", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'mockCalls'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'MockCallCellMap", + "sorts": [], + "args": [] + } + ] + } + ] + } + } + ] + }, { - "tag": "DV", - "sort": { + "tag": "Equals", + "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortKEVMTracingCell", "args": [] }, - "value": "0" - }, - { - "tag": "EVar", - "name": "VarVV0'Unds'proposalId'Unds'114b9705", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortGeneratedTopCell", "args": [] + }, + "first": { + "tag": "EVar", + "name": "RuleVar'Unds'Gen6", + "sort": { + "tag": "SortApp", + "name": "SortKEVMTracingCell", + "args": [] + } + }, + "second": { + "tag": "App", + "name": "Lbl'-LT-'KEVMTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'activeTracing'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceStorage'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceWordStack'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceMemory'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'recordedTrace'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "false" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'traceData'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Stop'List", + "sorts": [], + "args": [] + } + ] + } + ] } } ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] }, - "first": { - "tag": "DV", + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortGeneratedTopCell", "args": [] }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'Unds-LT-'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "VarVV0'Unds'proposalId'Unds'114b9705", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "115792089237316195423570985008687907853269984665640564039457584007913129639936" + "first": { + "tag": "EVar", + "name": "RuleVarI", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] } - ] + }, + "second": { + "tag": "App", + "name": "Lblbool2Word'LParUndsRParUnds'EVM-TYPES'Unds'Int'Unds'Bool", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'Unds'orBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "App", + "name": "Lbl'UndsSlsh'Word'UndsUnds'EVM-TYPES'Unds'Int'Unds'Int'Unds'Int", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsStar'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD7", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "Var'Ques'WORD3", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + ] + } } - } - ] - } - } - }, - "logs": [ - { - "tag": "rewrite", - "origin": "proxy", - "result": { - "tag": "success", - "rule-id": "0ee7a2c1d6ff36a91ac9e9ed19a2c624ba21b97f4511af22044f6169bb8adfa1" - } - }, - { - "tag": "rewrite", - "origin": "booster", - "result": { - "tag": "success", - "rule-id": "20bc9774d59030dcada92e997351315ed198a464546f5b36d67578cfd12938d1" + ] + } } } - ] + ], + "logs": [] } } \ No newline at end of file diff --git a/booster/test/rpc-integration/test-log-simplify-json/simplify-log.txt.golden b/booster/test/rpc-integration/test-log-simplify-json/simplify-log.txt.golden index e7d03842a4..4a397dbaf8 100644 --- a/booster/test/rpc-integration/test-log-simplify-json/simplify-log.txt.golden +++ b/booster/test/rpc-integration/test-log-simplify-json/simplify-log.txt.golden @@ -1,6 +1,7 @@ {"context":["proxy"],"message":"Loading definition from resources/log-simplify-json.kore, main module \"IMP-VERIFICATION\""} {"context":["proxy"],"message":"Starting RPC server"} {"context":["proxy"],"message":"Processing request 4"} +{"context":[{"request":"4"},"booster","execute",{"term":"bd7c50d"},{"term":"4a36bb8"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} {"context":[{"request":"4"},"booster","execute",{"term":"4b03f8b"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"a2a070a"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"detail"],"message":"UNKNOWN"} {"context":[{"request":"4"},"booster","execute",{"term":"4b03f8b"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"a2a070a"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"match","failure","continue"],"message":"Sorts differ: Eq#VarKResult:SortKResult{} =/= !__EXPRESSIONS-SYNTAX_Expr_Expr(_<=__EXPRESSIONS-SYNTAX_Expr_Expr_Expr(\"$n\", \"0\"))"} {"context":[{"request":"4"},"booster","execute",{"term":"4b03f8b"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"a2a070a"},{"function":"afefecb36598372bc1ba6e5d0b24a00b91796244dc3bd7435e40ca6e9ab33d4b"},"detail"],"message":"UNKNOWN"} @@ -51,26 +52,9 @@ {"context":[{"request":"4"},"booster","execute",{"term":"473c428"},{"rewrite":"029649977a189d0740b894b184f10ed8b77b043ff935d356dca9fa87ffbffc58"},"constraint",{"term":"fbb3d17"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"success",{"term":"98b0892"},"kore-term"],"message":{"format":"KORE","version":1,"term":{"tag":"DV","sort":{"tag":"SortApp","name":"SortBool","args":[]},"value":"true"}}} {"context":[{"request":"4"},"booster","execute",{"term":"d3dc513"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"fd81940"},{"hook":"BOOL.not"},"success",{"term":"9eb81e8"},"kore-term"],"message":{"format":"KORE","version":1,"term":{"tag":"DV","sort":{"tag":"SortApp","name":"SortBool","args":[]},"value":"false"}}} {"context":[{"request":"4"},"booster","execute",{"term":"d3dc513"},"simplify",{"term":"d3dc513"},{"term":"50120f3"},{"hook":"INT.lt"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","execute",{"term":"d3dc513"},"simplify",{"term":"d3dc513"},{"term":"4a36bb8"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} {"context":[{"request":"4"},"booster","execute",{"term":"ee3511f"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"d2e9706"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"detail"],"message":"UNKNOWN"} {"context":[{"request":"4"},"booster","execute",{"term":"ee3511f"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"d2e9706"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"success",{"term":"98b0892"},"kore-term"],"message":{"format":"KORE","version":1,"term":{"tag":"DV","sort":{"tag":"SortApp","name":"SortBool","args":[]},"value":"true"}}} {"context":[{"request":"4"},"booster","execute",{"term":"ee3511f"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"d2e9706"},{"hook":"BOOL.not"},"success",{"term":"9eb81e8"},"kore-term"],"message":{"format":"KORE","version":1,"term":{"tag":"DV","sort":{"tag":"SortApp","name":"SortBool","args":[]},"value":"false"}}} -{"context":[{"request":"4"},"booster","simplify",{"term":"ee3511f"},{"term":"dfe34e0"},{"hook":"INT.lt"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"ee3511f"},{"term":"4a36bb8"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} {"context":[{"request":"4"},"kore","execute",{"term":"8aaaa91"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"c107051"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"detail"],"message":"...resources/log-simplify-json.kore:3913:7"} {"context":[{"request":"4"},"kore","execute",{"term":"8aaaa91"},{"rewrite":"2821768ca76231d9d23da884f160f8a8a67b03f3575f41bd4fc76649c39a94fb"},"constraint",{"term":"c107051"},{"function":"f4c2469bcff9527515b6d36f16040307917bda61067d10b85fb531e142483bee"},"success",{"term":"b378f16"},"kore-term"],"message":{"format":"KORE","version":1,"term":{"tag":"DV","sort":{"tag":"SortApp","name":"SortBool","args":[]},"value":"true"}}} -{"context":[{"request":"4"},"booster","simplify",{"term":"ee3511f"},{"term":"dfe34e0"},{"hook":"INT.lt"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"ee3511f"},{"term":"4a36bb8"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"66aa67b"},{"term":"8f1e2b8"},{"hook":"INT.lt"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"66aa67b"},{"term":"4a36bb8"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"hook":"INT.lt"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"hook":"BOOL.not"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"function":"17ebc68421572b8ebe609c068fb49cbb6cbbe3246e2142257ad8befdda38f415"},"detail"],"message":"...kframework/builtin/domains.md : (1119, 8)"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"function":"17ebc68421572b8ebe609c068fb49cbb6cbbe3246e2142257ad8befdda38f415"},"match","failure","break"],"message":{"remainder":[[{"tag":"DV","sort":{"tag":"SortApp","name":"SortBool","args":[]},"value":"false"},{"tag":"App","name":"Lbl'Unds-LT-'Int'Unds'","sorts":[],"args":[{"tag":"DV","sort":{"tag":"SortApp","name":"SortInt","args":[]},"value":"0"},{"tag":"EVar","name":"VarN","sort":{"tag":"SortApp","name":"SortInt","args":[]}}]}]]}} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"simplification":"2499eab08be5a893dde1183881ad2aee18a0aab6fc53deb2c78f94c6466e3e15"},"detail"],"message":"...include/imp-semantics/imp-verification.k : (24, 10)"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"simplification":"2499eab08be5a893dde1183881ad2aee18a0aab6fc53deb2c78f94c6466e3e15"},"match","failure","continue"],"message":{"remainder":[[{"tag":"App","name":"Lbl'Unds-LT-Eqls'Int'Unds'","sorts":[],"args":[{"tag":"EVar","name":"Eq#VarA","sort":{"tag":"SortApp","name":"SortInt","args":[]}},{"tag":"EVar","name":"Eq#VarB","sort":{"tag":"SortApp","name":"SortInt","args":[]}}]},{"tag":"App","name":"Lbl'Unds-LT-'Int'Unds'","sorts":[],"args":[{"tag":"DV","sort":{"tag":"SortApp","name":"SortInt","args":[]},"value":"0"},{"tag":"EVar","name":"VarN","sort":{"tag":"SortApp","name":"SortInt","args":[]}}]}]]}} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"simplification":"cb079e42f8993a0cf744fd4996fa1635f79ecc3e07cf441d3d0b743da4b9b43f"},"detail"],"message":"...include/imp-semantics/imp-verification.k : (23, 10)"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"simplification":"cb079e42f8993a0cf744fd4996fa1635f79ecc3e07cf441d3d0b743da4b9b43f"},"success",{"term":"f6384ee"},"kore-term"],"message":{"format":"KORE","version":1,"term":{"tag":"App","name":"Lbl'Unds-LT-Eqls'Int'Unds'","sorts":[],"args":[{"tag":"EVar","name":"VarN","sort":{"tag":"SortApp","name":"SortInt","args":[]}},{"tag":"DV","sort":{"tag":"SortApp","name":"SortInt","args":[]},"value":"0"}]}}} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"be686bf"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} -{"context":[{"request":"4"},"booster","simplify",{"term":"931632b"},{"term":"4a36bb8"},{"hook":"INT.le"},"failure"],"message":"Hook returned no result"} {"context":["proxy"],"message":"Server shutting down"} diff --git a/booster/test/rpc-integration/test-substitutions/README.md b/booster/test/rpc-integration/test-substitutions/README.md index 1c7a208f58..2311202566 100644 --- a/booster/test/rpc-integration/test-substitutions/README.md +++ b/booster/test/rpc-integration/test-substitutions/README.md @@ -31,10 +31,9 @@ NB: Booster applies the given substitution before performing any action. - with an additional constraint `Y = 1 +Int X` (internalised as a substitution) - leading to a contradictory constraint `X = 1 +Int X` after rewriting and adding `Y =Int X` from the `ensures`-clause - - `kore-rpc-booster` returns `vacuous` after 1 step - - `kore-rpc-dev` returns `vacuous` after 0 steps (detects the contradiction earlier) - - `kore-rpc-dev` reproduces the exact input as `state` while - `kore-rpc-booster` splits off `substitution` (from input) and `predicate` (from the rule) + - `kore-rpc-booster` and `booster-dev` return `vacuous` after 0 step, substitution `Y` for `X +Int 1` in the state. However, `kore-rpc-booster` and `booster-dev` disagree a little on the value in the substitution, hence the two responses. + - `kore-rpc-dev` returns `vacuous` after 0 steps and reproduces the exact input as `state` + * `state-circular-equations.execute` - starts from `concrete-subst` - with two equations that have circular dependencies: `Y = 1 +Int X`, `X = Y -Int 1` @@ -42,6 +41,6 @@ NB: Booster applies the given substitution before performing any action. * `state-symbolic-bottom-predicate.execute` - starts from `symbolic-subst` - with an equation that is instantly false: `X = 1 +Int X` - - leading to a vacuous state in `kore-rpc-booster` after rewriting once, + - leading to a vacuous state in `booster-dev` and `kore-rpc-booster`, - while `kore-rpc-dev` returns `stuck` instantly after 0 steps, returning the exact input as `state`. diff --git a/booster/test/rpc-integration/test-substitutions/response-circular-equations.booster-dev b/booster/test/rpc-integration/test-substitutions/response-circular-equations.booster-dev index b012148190..259a441aeb 100644 --- a/booster/test/rpc-integration/test-substitutions/response-circular-equations.booster-dev +++ b/booster/test/rpc-integration/test-substitutions/response-circular-equations.booster-dev @@ -225,61 +225,13 @@ } }, { - "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1" - } - ] - }, - { - "tag": "App", - "name": "Lbl'Unds'-Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1" - } - ] - } - ] + "tag": "EVar", + "name": "X", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } } ] } diff --git a/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.json b/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.json index f74ada34ab..379ed33ccc 100644 --- a/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.json +++ b/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.json @@ -67,13 +67,13 @@ "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "X", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - }, - "value": "42" + } } ] }, @@ -112,14 +112,14 @@ ] } }, - "substitution": { + "predicate": { "format": "KORE", "version": 1, "term": { "tag": "Equals", "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, "sort": { @@ -128,22 +128,38 @@ "args": [] }, "first": { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - "second": { "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, - "value": "42" + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "X", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "42" + } + ] } } } diff --git a/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.booster-dev b/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.kore-rpc-dev similarity index 81% rename from booster/test/rpc-integration/test-substitutions/response-concrete-substitution.booster-dev rename to booster/test/rpc-integration/test-substitutions/response-concrete-substitution.kore-rpc-dev index 379ed33ccc..f74ada34ab 100644 --- a/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.booster-dev +++ b/booster/test/rpc-integration/test-substitutions/response-concrete-substitution.kore-rpc-dev @@ -67,13 +67,13 @@ "sorts": [], "args": [ { - "tag": "EVar", - "name": "X", + "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - } + }, + "value": "42" } ] }, @@ -112,14 +112,14 @@ ] } }, - "predicate": { + "substitution": { "format": "KORE", "version": 1, "term": { "tag": "Equals", "argSort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] }, "sort": { @@ -128,38 +128,22 @@ "args": [] }, "first": { - "tag": "DV", + "tag": "EVar", + "name": "X", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] - }, - "value": "true" + } }, "second": { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "42" - } - ] + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "42" } } } diff --git a/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.booster-dev b/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.booster-dev deleted file mode 100644 index 9aec4d5289..0000000000 --- a/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.booster-dev +++ /dev/null @@ -1,240 +0,0 @@ -{ - "jsonrpc": "2.0", - "id": 1, - "result": { - "reason": "stuck", - "depth": 1, - "state": { - "term": { - "format": "KORE", - "version": 1, - "term": { - "tag": "App", - "name": "Lbl'-LT-'generatedTop'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'k'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "kseq", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortState", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortState", - "args": [] - }, - "value": "a" - } - ] - }, - { - "tag": "App", - "name": "dotk", - "sorts": [], - "args": [] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'int'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'jnt'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "Y", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'generatedCounter'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - } - ] - } - }, - "predicate": { - "format": "KORE", - "version": 1, - "term": { - "tag": "And", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "patterns": [ - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1" - } - ] - } - ] - } - }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Y", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - } - } - ] - } - } - } - } -} \ No newline at end of file diff --git a/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.json b/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.json index be972500f9..8196839aaa 100644 --- a/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.json +++ b/booster/test/rpc-integration/test-substitutions/response-symbolic-bottom-predicate.json @@ -3,7 +3,7 @@ "id": 1, "result": { "reason": "vacuous", - "depth": 1, + "depth": 0, "state": { "term": { "format": "KORE", @@ -46,7 +46,7 @@ "name": "SortState", "args": [] }, - "value": "a" + "value": "symbolic-subst" } ] }, @@ -115,114 +115,57 @@ "format": "KORE", "version": 1, "term": { - "tag": "And", + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, "sort": { "tag": "SortApp", "name": "SortGeneratedTopCell", "args": [] }, - "patterns": [ - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - }, - "second": { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "App", - "name": "Lbl'UndsPlus'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "1" - } - ] - } - ] - } + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] }, - { - "tag": "Equals", - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "DV", + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "X", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] - }, - "value": "true" + } }, - "second": { + { "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "name": "Lbl'UndsPlus'Int'Unds'", "sorts": [], "args": [ { - "tag": "EVar", - "name": "X", + "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - } + }, + "value": "1" }, { "tag": "EVar", - "name": "Y", + "name": "X", "sort": { "tag": "SortApp", "name": "SortInt", @@ -231,8 +174,8 @@ } ] } - } - ] + ] + } } } } diff --git a/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.json b/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.json index 1e69dfe382..5cf51a99bb 100644 --- a/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.json +++ b/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.json @@ -68,7 +68,7 @@ "args": [ { "tag": "EVar", - "name": "Y", + "name": "X", "sort": { "tag": "SortApp", "name": "SortInt", @@ -112,14 +112,14 @@ ] } }, - "substitution": { + "predicate": { "format": "KORE", "version": 1, "term": { "tag": "Equals", "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, "sort": { @@ -128,22 +128,38 @@ "args": [] }, "first": { - "tag": "EVar", - "name": "X", + "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] - } + }, + "value": "true" }, "second": { - "tag": "EVar", - "name": "Y", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "X", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "EVar", + "name": "Y", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] } } } diff --git a/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.booster-dev b/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.kore-rpc-dev similarity index 82% rename from booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.booster-dev rename to booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.kore-rpc-dev index 5cf51a99bb..1e69dfe382 100644 --- a/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.booster-dev +++ b/booster/test/rpc-integration/test-substitutions/response-symbolic-substitution.kore-rpc-dev @@ -68,7 +68,7 @@ "args": [ { "tag": "EVar", - "name": "X", + "name": "Y", "sort": { "tag": "SortApp", "name": "SortInt", @@ -112,14 +112,14 @@ ] } }, - "predicate": { + "substitution": { "format": "KORE", "version": 1, "term": { "tag": "Equals", "argSort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] }, "sort": { @@ -128,38 +128,22 @@ "args": [] }, "first": { - "tag": "DV", + "tag": "EVar", + "name": "X", "sort": { "tag": "SortApp", - "name": "SortBool", + "name": "SortInt", "args": [] - }, - "value": "true" + } }, "second": { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "X", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "EVar", - "name": "Y", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] + "tag": "EVar", + "name": "Y", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } } } } diff --git a/booster/test/rpc-integration/test-substitutions/response-symbolic-two-substitutions.json b/booster/test/rpc-integration/test-substitutions/response-symbolic-two-substitutions.json index 0198c80ca8..58a6ab33aa 100644 --- a/booster/test/rpc-integration/test-substitutions/response-symbolic-two-substitutions.json +++ b/booster/test/rpc-integration/test-substitutions/response-symbolic-two-substitutions.json @@ -157,22 +157,22 @@ "sorts": [], "args": [ { - "tag": "EVar", - "name": "X", + "tag": "DV", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - } + }, + "value": "1" }, { - "tag": "DV", + "tag": "EVar", + "name": "X", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - }, - "value": "1" + } } ] } diff --git a/booster/test/rpc-integration/test-vacuous/README.md b/booster/test/rpc-integration/test-vacuous/README.md index 00c6823dc4..9464e3a6de 100644 --- a/booster/test/rpc-integration/test-vacuous/README.md +++ b/booster/test/rpc-integration/test-vacuous/README.md @@ -38,7 +38,7 @@ Rules `init` and `AC` introduce constraints on this variable: _Expected:_ - The rewrite is stuck with `dN \and...(contradiction)` - The result is simplified and discovered to be `vacuous` (with state `d`). -1) _vacuous-but-rewritten_ +1) _vacuous-not-rewritten_ _Input:_ - `execute` request with initial state `bN \and N diff --git a/booster/test/rpc-integration/test-vacuous/response-vacuous-at-branch.kore-rpc-dev b/booster/test/rpc-integration/test-vacuous/response-vacuous-at-branch.kore-rpc-dev new file mode 100644 index 0000000000..6632bfe85f --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/response-vacuous-at-branch.kore-rpc-dev @@ -0,0 +1,100 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "reason": "vacuous", + "depth": 0, + "state": { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + "value": "init" + } + ] + }, + { + "tag": "App", + "name": "dotk", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'int'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json b/booster/test/rpc-integration/test-vacuous/response-vacuous-not-rewritten.json similarity index 84% rename from booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json rename to booster/test/rpc-integration/test-vacuous/response-vacuous-not-rewritten.json index b7cf387833..3d880fa432 100644 --- a/booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json +++ b/booster/test/rpc-integration/test-vacuous/response-vacuous-not-rewritten.json @@ -3,7 +3,7 @@ "id": 1, "result": { "reason": "vacuous", - "depth": 1, + "depth": 0, "state": { "term": { "format": "KORE", @@ -46,7 +46,7 @@ "name": "SortState", "args": [] }, - "value": "d" + "value": "b" } ] }, @@ -129,7 +129,7 @@ }, "second": { "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "name": "Lbl'UndsEqlsSlshEqls'Int'Unds'", "sorts": [], "args": [ { @@ -176,33 +176,26 @@ }, "second": { "tag": "App", - "name": "LblnotBool'Unds'", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", "sorts": [], "args": [ { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "N", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" } ] } diff --git a/booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.kore-rpc-dev b/booster/test/rpc-integration/test-vacuous/response-vacuous-not-rewritten.kore-rpc-dev similarity index 100% rename from booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.kore-rpc-dev rename to booster/test/rpc-integration/test-vacuous/response-vacuous-not-rewritten.kore-rpc-dev diff --git a/booster/test/rpc-integration/test-vacuous/response-vacuous-var-at-branch.json b/booster/test/rpc-integration/test-vacuous/response-vacuous-var-at-branch.json index 37650f5b88..ced5059452 100644 --- a/booster/test/rpc-integration/test-vacuous/response-vacuous-var-at-branch.json +++ b/booster/test/rpc-integration/test-vacuous/response-vacuous-var-at-branch.json @@ -66,13 +66,13 @@ "sorts": [], "args": [ { - "tag": "DV", + "tag": "EVar", + "name": "N", "sort": { "tag": "SortApp", "name": "SortInt", "args": [] - }, - "value": "0" + } } ] }, @@ -95,14 +95,14 @@ ] } }, - "substitution": { + "predicate": { "format": "KORE", "version": 1, "term": { "tag": "Equals", "argSort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, "sort": { @@ -111,22 +111,38 @@ "args": [] }, "first": { - "tag": "EVar", - "name": "N", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - "second": { "tag": "DV", "sort": { "tag": "SortApp", - "name": "SortInt", + "name": "SortBool", "args": [] }, - "value": "0" + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] } } } diff --git a/booster/test/rpc-integration/test-vacuous/response-vacuous-without-rewrite.json b/booster/test/rpc-integration/test-vacuous/response-vacuous-without-rewrite.json index d3b14044a8..9d4198621d 100644 --- a/booster/test/rpc-integration/test-vacuous/response-vacuous-without-rewrite.json +++ b/booster/test/rpc-integration/test-vacuous/response-vacuous-without-rewrite.json @@ -129,7 +129,7 @@ }, "second": { "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "name": "Lbl'UndsEqlsSlshEqls'Int'Unds'", "sorts": [], "args": [ { @@ -176,33 +176,26 @@ }, "second": { "tag": "App", - "name": "LblnotBool'Unds'", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", "sorts": [], "args": [ { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "N", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" } ] } diff --git a/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute b/booster/test/rpc-integration/test-vacuous/state-vacuous-not-rewritten.execute similarity index 100% rename from booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute rename to booster/test/rpc-integration/test-vacuous/state-vacuous-not-rewritten.execute diff --git a/scripts/booster-integration-tests.sh b/scripts/booster-integration-tests.sh index 3a24d3db64..c4b6985738 100755 --- a/scripts/booster-integration-tests.sh +++ b/scripts/booster-integration-tests.sh @@ -28,12 +28,12 @@ for dir in $(ls -d test-*); do name=${dir##test-} echo "Running $name..." case "$name" in - "a-to-f" | "diamond") + "a-to-f" | "diamond" | "substitutions" | "vacuous") SERVER=$BOOSTER_DEV ./runDirectoryTest.sh test-$name $@ SERVER=$KORE_RPC_DEV ./runDirectoryTest.sh test-$name $@ SERVER=$KORE_RPC_BOOSTER ./runDirectoryTest.sh test-$name $@ ;; - "substitutions" | "vacuous" | "pathological-add-module") + "pathological-add-module") SERVER=$KORE_RPC_DEV ./runDirectoryTest.sh test-$name $@ SERVER=$KORE_RPC_BOOSTER ./runDirectoryTest.sh test-$name $@ ;; From 2359ddc12a777a12b8f78d32872f32a65d326ad3 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Mon, 12 Aug 2024 08:38:28 +0200 Subject: [PATCH 07/14] Correct typos and test description --- booster/library/Booster/Pattern/ApplyEquations.hs | 8 +++----- booster/test/rpc-integration/test-vacuous/README.md | 4 +--- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/booster/library/Booster/Pattern/ApplyEquations.hs b/booster/library/Booster/Pattern/ApplyEquations.hs index e8645ffa6f..673f843947 100644 --- a/booster/library/Booster/Pattern/ApplyEquations.hs +++ b/booster/library/Booster/Pattern/ApplyEquations.hs @@ -457,7 +457,6 @@ evaluatePattern :: evaluatePattern def mLlvmLibrary smtSolver cache pat = runEquationT def mLlvmLibrary smtSolver cache pat.constraints . evaluatePattern' $ pat --- version for internal nested evaluation -- version for internal nested evaluation evaluatePattern' :: LoggerMIO io => @@ -470,9 +469,8 @@ evaluatePattern' pat@Pattern{term, constraints, ceilConditions} = withPatternCon withContext CtxConstraint $ do withContext CtxDetail . withTermContext (coerce $ collapseAndBools constraints) $ pure () consistent <- SMT.isSat solver (Set.toList constraints) - withContext CtxConstraint $ - logMessage $ - "Constraints consistency check returns: " <> show consistent + logMessage $ + "Constraints consistency check returns: " <> show consistent pure consistent case consistent of SMT.IsUnsat -> do @@ -480,7 +478,7 @@ evaluatePattern' pat@Pattern{term, constraints, ceilConditions} = withPatternCon throw . SideConditionFalse . collapseAndBools $ constraints SMT.IsUnknown{} -> do -- unlikely case of an Unknown response to a consistency check. - -- continue to preserver the old behaviour. + -- continue to preserve the old behaviour. withContext CtxConstraint . logWarn . Text.pack $ "Constraints consistency UNKNOWN: " <> show consistent pure () diff --git a/booster/test/rpc-integration/test-vacuous/README.md b/booster/test/rpc-integration/test-vacuous/README.md index 9464e3a6de..bd26765c7c 100644 --- a/booster/test/rpc-integration/test-vacuous/README.md +++ b/booster/test/rpc-integration/test-vacuous/README.md @@ -45,9 +45,7 @@ Rules `init` and `AC` introduce constraints on this variable: ==Int 1 \and N =/=Int 1` (A contradiction in the initial constraints). _Expected:_ - - Rewrite with `BD` (despite the contradiction) - - The rewrite is stuck with `dN \and...(contradiction)` - - The result is simplified and discovered to be `vacuous` (with state `d`). + - The state is simplified and discovered to be `vacuous` (with state `b`). With `kore-rpc-dev`, some contradictions will be discovered before or while attempting to rewrite (at the time of writing, it returns `stuck`, though). From 998eb072fa3fd7682868ac497edf1141e2e3ceae Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Tue, 20 Aug 2024 10:17:46 +0200 Subject: [PATCH 08/14] Make Z3 call optional in evaluatePattern --- booster/library/Booster/JsonRpc.hs | 39 +++++++----- .../library/Booster/Pattern/ApplyEquations.hs | 63 +++++++++++-------- booster/library/Booster/Pattern/Implies.hs | 41 +++++++----- booster/library/Booster/Pattern/Rewrite.hs | 3 +- 4 files changed, 87 insertions(+), 59 deletions(-) diff --git a/booster/library/Booster/JsonRpc.hs b/booster/library/Booster/JsonRpc.hs index 2dfd2d40a5..b2a1593564 100644 --- a/booster/library/Booster/JsonRpc.hs +++ b/booster/library/Booster/JsonRpc.hs @@ -154,6 +154,7 @@ respond stateVar request = mLlvmLibrary solver mempty + ApplyEquations.CheckConstraintsConsistent substPat case evaluatedInitialPattern of @@ -277,21 +278,29 @@ respond stateVar request = , constraints = Set.map (substituteInPredicate substitution) pat.constraints , ceilConditions = pat.ceilConditions } - ApplyEquations.evaluatePattern def mLlvmLibrary solver mempty substPat >>= \case - (Right newPattern, _) -> do - let (term, mbPredicate, mbSubstitution) = externalisePattern newPattern substitution - tSort = externaliseSort (sortOfPattern newPattern) - result = case catMaybes (mbPredicate : mbSubstitution : map Just unsupported) of - [] -> term - ps -> KoreJson.KJAnd tSort $ term : ps - pure $ Right (addHeader result) - (Left ApplyEquations.SideConditionFalse{}, _) -> do - let tSort = externaliseSort $ sortOfPattern pat - pure $ Right (addHeader $ KoreJson.KJBottom tSort) - (Left (ApplyEquations.EquationLoop _terms), _) -> - pure . Left . RpcError.backendError $ RpcError.Aborted "equation loop detected" - (Left other, _) -> - pure . Left . RpcError.backendError $ RpcError.Aborted (Text.pack . constructorName $ other) + -- evaluate the pattern, checking the constrains for consistency + ApplyEquations.evaluatePattern + def + mLlvmLibrary + solver + mempty + ApplyEquations.CheckConstraintsConsistent + substPat + >>= \case + (Right newPattern, _) -> do + let (term, mbPredicate, mbSubstitution) = externalisePattern newPattern substitution + tSort = externaliseSort (sortOfPattern newPattern) + result = case catMaybes (mbPredicate : mbSubstitution : map Just unsupported) of + [] -> term + ps -> KoreJson.KJAnd tSort $ term : ps + pure $ Right (addHeader result) + (Left ApplyEquations.SideConditionFalse{}, _) -> do + let tSort = externaliseSort $ sortOfPattern pat + pure $ Right (addHeader $ KoreJson.KJBottom tSort) + (Left (ApplyEquations.EquationLoop _terms), _) -> + pure . Left . RpcError.backendError $ RpcError.Aborted "equation loop detected" + (Left other, _) -> + pure . Left . RpcError.backendError $ RpcError.Aborted (Text.pack . constructorName $ other) -- predicate only Right (Predicates ps) | null ps.boolPredicates && null ps.ceilPredicates && null ps.substitution && null ps.unsupported -> diff --git a/booster/library/Booster/Pattern/ApplyEquations.hs b/booster/library/Booster/Pattern/ApplyEquations.hs index 673f843947..f5f53e7a01 100644 --- a/booster/library/Booster/Pattern/ApplyEquations.hs +++ b/booster/library/Booster/Pattern/ApplyEquations.hs @@ -10,6 +10,8 @@ License : BSD-3-Clause module Booster.Pattern.ApplyEquations ( evaluateTerm, evaluatePattern, + pattern CheckConstraintsConsistent, + pattern NoCheckConstraintsConsistent, Direction (..), EquationT (..), runEquationT, @@ -70,7 +72,7 @@ import Booster.Pattern.Util import Booster.Prettyprinter (renderOneLineText) import Booster.SMT.Interface qualified as SMT import Booster.Syntax.Json.Externalise (externaliseTerm) -import Booster.Util (Bound (..)) +import Booster.Util (Bound (..), Flag (..)) import Kore.JsonRpc.Types.ContextLog (CLContext (CLWithId), IdContext (CtxCached)) import Kore.Util (showHashHex) @@ -443,6 +445,12 @@ evaluateTerm' :: EquationT io Term evaluateTerm' direction = iterateEquations direction PreferFunctions +pattern CheckConstraintsConsistent :: Flag "CheckConstraintsConsistent" +pattern CheckConstraintsConsistent = Flag True + +pattern NoCheckConstraintsConsistent :: Flag "CheckConstraintsConsistent" +pattern NoCheckConstraintsConsistent = Flag False + {- | Simplify a Pattern, processing its constraints independently. Returns either the first failure or the new pattern if no failure was encountered -} @@ -452,39 +460,42 @@ evaluatePattern :: Maybe LLVM.API -> SMT.SMTContext -> SimplifierCache -> + Flag "CheckConstraintsConsistent" -> Pattern -> io (Either EquationFailure Pattern, SimplifierCache) -evaluatePattern def mLlvmLibrary smtSolver cache pat = - runEquationT def mLlvmLibrary smtSolver cache pat.constraints . evaluatePattern' $ pat +evaluatePattern def mLlvmLibrary smtSolver cache doCheck pat = + runEquationT def mLlvmLibrary smtSolver cache pat.constraints . evaluatePattern' doCheck $ pat -- version for internal nested evaluation evaluatePattern' :: LoggerMIO io => + Flag "CheckConstraintsConsistent" -> Pattern -> EquationT io Pattern -evaluatePattern' pat@Pattern{term, constraints, ceilConditions} = withPatternContext pat $ do - solver <- (.smtSolver) <$> getConfig - -- check the pattern's constraints for satisfiability to ensure they are consistent - consistent <- - withContext CtxConstraint $ do - withContext CtxDetail . withTermContext (coerce $ collapseAndBools constraints) $ pure () - consistent <- SMT.isSat solver (Set.toList constraints) - logMessage $ - "Constraints consistency check returns: " <> show consistent - pure consistent - case consistent of - SMT.IsUnsat -> do - -- the constraints are unsatisfiable, which means that the patten is Bottom - throw . SideConditionFalse . collapseAndBools $ constraints - SMT.IsUnknown{} -> do - -- unlikely case of an Unknown response to a consistency check. - -- continue to preserve the old behaviour. - withContext CtxConstraint . logWarn . Text.pack $ - "Constraints consistency UNKNOWN: " <> show consistent - pure () - SMT.IsSat{} -> - -- constraints are consistent, continue - pure () +evaluatePattern' doCheck pat@Pattern{term, constraints, ceilConditions} = withPatternContext pat $ do + when (coerce doCheck) $ do + solver <- (.smtSolver) <$> getConfig + -- check the pattern's constraints for satisfiability to ensure they are consistent + consistent <- + withContext CtxConstraint $ do + withContext CtxDetail . withTermContext (coerce $ collapseAndBools constraints) $ pure () + consistent <- SMT.isSat solver (Set.toList constraints) + logMessage $ + "Constraints consistency check returns: " <> show consistent + pure consistent + case consistent of + SMT.IsUnsat -> do + -- the constraints are unsatisfiable, which means that the patten is Bottom + throw . SideConditionFalse . collapseAndBools $ constraints + SMT.IsUnknown{} -> do + -- unlikely case of an Unknown response to a consistency check. + -- continue to preserve the old behaviour. + withContext CtxConstraint . logWarn . Text.pack $ + "Constraints consistency UNKNOWN: " <> show consistent + pure () + SMT.IsSat{} -> + -- constraints are consistent, continue + pure () newTerm <- withTermContext term $ evaluateTerm' BottomUp term `catch_` keepTopLevelResults -- after evaluating the term, evaluate all (existing and newly-acquired) constraints, once diff --git a/booster/library/Booster/Pattern/Implies.hs b/booster/library/Booster/Pattern/Implies.hs index 0dd5a33f0e..5164971881 100644 --- a/booster/library/Booster/Pattern/Implies.hs +++ b/booster/library/Booster/Pattern/Implies.hs @@ -136,24 +136,31 @@ runImplies def mLlvmLibrary mSMTOptions antecedent consequent = (externaliseExistTerm existsL substPatL.term) (externaliseExistTerm existsR substPatR.term) MatchIndeterminate remainder -> - ApplyEquations.evaluatePattern def mLlvmLibrary solver mempty substPatL >>= \case - (Right simplifedSubstPatL, _) -> - if substPatL == simplifedSubstPatL - then -- we are being conservative here for now and returning an error. - -- since we have already simplified the LHS, we may want to eventually return implise, but the condition - -- will contain the remainder as an equality contraint, predicating the implication on that equality being true. + ApplyEquations.evaluatePattern + def + mLlvmLibrary + solver + mempty + ApplyEquations.CheckConstraintsConsistent + substPatL + >>= \case + (Right simplifedSubstPatL, _) -> + if substPatL == simplifedSubstPatL + then -- we are being conservative here for now and returning an error. + -- since we have already simplified the LHS, we may want to eventually return implise, but the condition + -- will contain the remainder as an equality contraint, predicating the implication on that equality being true. - pure . Left . RpcError.backendError . RpcError.ImplicationCheckError . RpcError.ErrorOnly . pack $ - "match remainder: " - <> renderDefault - ( hsep $ - punctuate comma $ - map (\(t1, t2) -> pretty' @mods t1 <+> "==" <+> pretty' @mods t2) $ - NonEmpty.toList remainder - ) - else checkImpliesMatchTerms existsL simplifedSubstPatL existsR substPatR - (Left err, _) -> - pure . Left . RpcError.backendError $ RpcError.Aborted (Text.pack . constructorName $ err) + pure . Left . RpcError.backendError . RpcError.ImplicationCheckError . RpcError.ErrorOnly . pack $ + "match remainder: " + <> renderDefault + ( hsep $ + punctuate comma $ + map (\(t1, t2) -> pretty' @mods t1 <+> "==" <+> pretty' @mods t2) $ + NonEmpty.toList remainder + ) + else checkImpliesMatchTerms existsL simplifedSubstPatL existsR substPatR + (Left err, _) -> + pure . Left . RpcError.backendError $ RpcError.Aborted (Text.pack . constructorName $ err) MatchSuccess subst -> do let filteredConsequentPreds = Set.map (substituteInPredicate subst) substPatR.constraints `Set.difference` substPatL.constraints diff --git a/booster/library/Booster/Pattern/Rewrite.hs b/booster/library/Booster/Pattern/Rewrite.hs index 40ef772b82..96531a8ee5 100644 --- a/booster/library/Booster/Pattern/Rewrite.hs +++ b/booster/library/Booster/Pattern/Rewrite.hs @@ -54,6 +54,7 @@ import Booster.Pattern.ApplyEquations ( SimplifierCache (..), evaluatePattern, simplifyConstraint, + pattern NoCheckConstraintsConsistent, ) import Booster.Pattern.Base import Booster.Pattern.Bool @@ -764,7 +765,7 @@ performRewrite rewriteConfig initialCache pat = do simplifyP p = withContext CtxSimplify $ do st <- get let cache = st.simplifierCache - evaluatePattern definition llvmApi smtSolver cache p >>= \(res, newCache) -> do + evaluatePattern definition llvmApi smtSolver cache NoCheckConstraintsConsistent p >>= \(res, newCache) -> do updateCache newCache case res of Right newPattern -> do From 598a00c1820f19532d877d92fa898c058fbbe1e6 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Tue, 20 Aug 2024 10:57:34 +0200 Subject: [PATCH 09/14] Fix unit tests --- booster/unit-tests/Test/Booster/Pattern/ApplyEquations.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booster/unit-tests/Test/Booster/Pattern/ApplyEquations.hs b/booster/unit-tests/Test/Booster/Pattern/ApplyEquations.hs index 0aac1a2696..d869b45746 100644 --- a/booster/unit-tests/Test/Booster/Pattern/ApplyEquations.hs +++ b/booster/unit-tests/Test/Booster/Pattern/ApplyEquations.hs @@ -154,7 +154,7 @@ test_simplifyPattern = where simpl t = do ns <- noSolver - runNoLoggingT $ fst <$> evaluatePattern simplDef Nothing ns mempty t + runNoLoggingT $ fst <$> evaluatePattern simplDef Nothing ns mempty NoCheckConstraintsConsistent t a = var "A" someSort test_simplifyConstraint :: TestTree From 9c07a05e9c24b56d8c81cccabf12b6455c6229ce Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 21 Aug 2024 12:09:29 +0200 Subject: [PATCH 10/14] Don't check initial constraints when "assume-state-defined" --- booster/library/Booster/JsonRpc.hs | 7 +- .../params-unchecked-vacuous-rewrite.json | 1 + .../params-vacuous-but-rewritten.json | 1 + .../response-unchecked-vacuous-rewrite.json | 221 ++++++++++++++++++ .../response-vacuous-but-rewritten.json | 221 ++++++++++++++++++ .../state-unchecked-vacuous-rewrite.execute | 1 + .../state-vacuous-but-rewritten.execute | 1 + docs/2022-07-18-JSON-RPC-Server-API.md | 2 +- 8 files changed, 453 insertions(+), 2 deletions(-) create mode 100644 booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json create mode 100644 booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json create mode 100644 booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.json create mode 100644 booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json create mode 120000 booster/test/rpc-integration/test-vacuous/state-unchecked-vacuous-rewrite.execute create mode 120000 booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute diff --git a/booster/library/Booster/JsonRpc.hs b/booster/library/Booster/JsonRpc.hs index b2a1593564..a5716fba05 100644 --- a/booster/library/Booster/JsonRpc.hs +++ b/booster/library/Booster/JsonRpc.hs @@ -131,6 +131,11 @@ respond stateVar request = [ req.logSuccessfulRewrites , req.logFailedRewrites ] + checkConstraintsConsistent = + case req.assumeStateDefined of + Nothing -> ApplyEquations.CheckConstraintsConsistent + Just False -> ApplyEquations.CheckConstraintsConsistent + Just True -> ApplyEquations.NoCheckConstraintsConsistent -- apply the given substitution before doing anything else let substPat = Pattern @@ -154,7 +159,7 @@ respond stateVar request = mLlvmLibrary solver mempty - ApplyEquations.CheckConstraintsConsistent + checkConstraintsConsistent substPat case evaluatedInitialPattern of diff --git a/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json b/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json new file mode 100644 index 0000000000..0ab8ffbc67 --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json @@ -0,0 +1 @@ +{ "assume-state-defined": true } \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json b/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json new file mode 100644 index 0000000000..0ab8ffbc67 --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json @@ -0,0 +1 @@ +{ "assume-state-defined": true } \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.json b/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.json new file mode 100644 index 0000000000..becb8238f5 --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.json @@ -0,0 +1,221 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "reason": "stuck", + "depth": 0, + "state": { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + "value": "d" + } + ] + }, + { + "tag": "App", + "name": "dotk", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'int'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + } + ] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json b/booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json new file mode 100644 index 0000000000..76893afa95 --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/response-vacuous-but-rewritten.json @@ -0,0 +1,221 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "reason": "stuck", + "depth": 1, + "state": { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + "value": "d" + } + ] + }, + { + "tag": "App", + "name": "dotk", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'int'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + } + ] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/state-unchecked-vacuous-rewrite.execute b/booster/test/rpc-integration/test-vacuous/state-unchecked-vacuous-rewrite.execute new file mode 120000 index 0000000000..1b8dec8c83 --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/state-unchecked-vacuous-rewrite.execute @@ -0,0 +1 @@ +state-vacuous-without-rewrite.execute \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute b/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute new file mode 120000 index 0000000000..bc6397970f --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute @@ -0,0 +1 @@ +state-vacuous-not-rewritten.execute \ No newline at end of file diff --git a/docs/2022-07-18-JSON-RPC-Server-API.md b/docs/2022-07-18-JSON-RPC-Server-API.md index a0fe111f3c..f2b5af1c4e 100644 --- a/docs/2022-07-18-JSON-RPC-Server-API.md +++ b/docs/2022-07-18-JSON-RPC-Server-API.md @@ -43,7 +43,7 @@ The server runs over sockets and can be interacted with by sending JSON RPC mess Optional parameters: `max-depth`, `cut-point-rules`, `terminal-rules`, `moving-average-step-timeout`, `step-timeout` (timeout is in milliseconds), `module` (main module name), `assume-state-defined` (description follows) and all the `log-*` options, which default to false if unspecified. -If `assume-state-defined` is set to `true`, the all sub-terms of `state` will be assumed to be defined before attempting rewrite rules. +The `assume-state-defined` flag has different meaning in Booster and Kore. If set to `true`, Booster will not check the constraints of the initial pattern for satisfiability. It is the responsibility of the caller to ensure that the pattern is not vacuous. In Kore, if `assume-state-defined` is set to `true`, then all sub-terms of `state` will be assumed to be defined before attempting rewrite rules. _Note: `id` can be an int or a string and each message must have a new `id`. The response objects have the same id as the message._ From 39e6abcedeadfc58e9c74f0b5834779267d637a2 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 21 Aug 2024 12:46:33 +0200 Subject: [PATCH 11/14] Rename "assume-state-define" to "assume-defined" --- booster/library/Booster/JsonRpc.hs | 2 +- booster/tools/booster/Proxy.hs | 2 +- docs/2022-07-18-JSON-RPC-Server-API.md | 6 +++--- kore-rpc-types/src/Kore/JsonRpc/Types.hs | 2 +- kore/src/Kore/JsonRpc.hs | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/booster/library/Booster/JsonRpc.hs b/booster/library/Booster/JsonRpc.hs index a5716fba05..0a4ae9e0ba 100644 --- a/booster/library/Booster/JsonRpc.hs +++ b/booster/library/Booster/JsonRpc.hs @@ -132,7 +132,7 @@ respond stateVar request = , req.logFailedRewrites ] checkConstraintsConsistent = - case req.assumeStateDefined of + case req.assumeDefined of Nothing -> ApplyEquations.CheckConstraintsConsistent Just False -> ApplyEquations.CheckConstraintsConsistent Just True -> ApplyEquations.NoCheckConstraintsConsistent diff --git a/booster/tools/booster/Proxy.hs b/booster/tools/booster/Proxy.hs index edadbd7e0f..b6515d6795 100644 --- a/booster/tools/booster/Proxy.hs +++ b/booster/tools/booster/Proxy.hs @@ -351,7 +351,7 @@ respondEither cfg@ProxyConfig{boosterState} booster kore req = case req of r { state = execStateToKoreJson simplifiedBoosterState , maxDepth = Just $ Depth 1 - , assumeStateDefined = Just True + , assumeDefined = Just True } ) Booster.Log.withContexts [CtxProxy, CtxTiming, CtxKore] $ diff --git a/docs/2022-07-18-JSON-RPC-Server-API.md b/docs/2022-07-18-JSON-RPC-Server-API.md index f2b5af1c4e..d5543dcc29 100644 --- a/docs/2022-07-18-JSON-RPC-Server-API.md +++ b/docs/2022-07-18-JSON-RPC-Server-API.md @@ -24,7 +24,7 @@ The server runs over sockets and can be interacted with by sending JSON RPC mess "method": "execute", "params": { "max-depth": 4, - "assume-state-defined": true, + "assume-defined": true, "cut-point-rules": ["rule1"], "terminal-rules": ["ruleFoo"], "moving-average-step-timeout": true, @@ -41,9 +41,9 @@ The server runs over sockets and can be interacted with by sending JSON RPC mess } ``` -Optional parameters: `max-depth`, `cut-point-rules`, `terminal-rules`, `moving-average-step-timeout`, `step-timeout` (timeout is in milliseconds), `module` (main module name), `assume-state-defined` (description follows) and all the `log-*` options, which default to false if unspecified. +Optional parameters: `max-depth`, `cut-point-rules`, `terminal-rules`, `moving-average-step-timeout`, `step-timeout` (timeout is in milliseconds), `module` (main module name), `assume-defined` (description follows) and all the `log-*` options, which default to false if unspecified. -The `assume-state-defined` flag has different meaning in Booster and Kore. If set to `true`, Booster will not check the constraints of the initial pattern for satisfiability. It is the responsibility of the caller to ensure that the pattern is not vacuous. In Kore, if `assume-state-defined` is set to `true`, then all sub-terms of `state` will be assumed to be defined before attempting rewrite rules. +The `assume-defined` flag defaults to `false`. The `assume-defined` flag has different meaning in Booster and Kore. If set to `true`, Booster will not check the constraints of the initial pattern for satisfiability. It is the responsibility of the caller to ensure that the pattern is not vacuous. In Kore, if `assume-defined` is set to `true`, then all sub-terms of `state` will be assumed to be defined before attempting rewrite rules. _Note: `id` can be an int or a string and each message must have a new `id`. The response objects have the same id as the message._ diff --git a/kore-rpc-types/src/Kore/JsonRpc/Types.hs b/kore-rpc-types/src/Kore/JsonRpc/Types.hs index fdc578778c..c4855ec6df 100644 --- a/kore-rpc-types/src/Kore/JsonRpc/Types.hs +++ b/kore-rpc-types/src/Kore/JsonRpc/Types.hs @@ -43,7 +43,7 @@ data ExecuteRequest = ExecuteRequest , terminalRules :: !(Maybe [Text]) , movingAverageStepTimeout :: !(Maybe Bool) , stepTimeout :: !(Maybe Int) - , assumeStateDefined :: !(Maybe Bool) + , assumeDefined :: !(Maybe Bool) , logSuccessfulRewrites :: !(Maybe Bool) , logFailedRewrites :: !(Maybe Bool) } diff --git a/kore/src/Kore/JsonRpc.hs b/kore/src/Kore/JsonRpc.hs index 31eeed710b..faea01d514 100644 --- a/kore/src/Kore/JsonRpc.hs +++ b/kore/src/Kore/JsonRpc.hs @@ -141,7 +141,7 @@ respond reqId serverState moduleName runSMT = , cutPointRules , terminalRules , movingAverageStepTimeout - , assumeStateDefined + , assumeDefined , stepTimeout , logSuccessfulRewrites } -> withMainModule (coerce _module) $ \serializedModule lemmas -> do @@ -167,7 +167,7 @@ respond reqId serverState moduleName runSMT = then EnableMovingAverage else DisableMovingAverage ) - ( if fromMaybe False assumeStateDefined + ( if fromMaybe False assumeDefined then EnableAssumeInitialDefined else DisableAssumeInitialDefined ) From df4cfaee851a053a7601f8b0195bf69391998c15 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 21 Aug 2024 13:47:43 +0200 Subject: [PATCH 12/14] Return vacuous on undefined concrete terms --- booster/library/Booster/JsonRpc.hs | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/booster/library/Booster/JsonRpc.hs b/booster/library/Booster/JsonRpc.hs index 0a4ae9e0ba..1b692120ca 100644 --- a/booster/library/Booster/JsonRpc.hs +++ b/booster/library/Booster/JsonRpc.hs @@ -162,15 +162,20 @@ respond stateVar request = checkConstraintsConsistent substPat + let trivialResponse = + execResponse + req + (0, mempty, RewriteTrivial substPat) + substitution + unsupported + case evaluatedInitialPattern of (Left ApplyEquations.SideConditionFalse{}, _) -> do -- input pattern's constraints are Bottom, return Vacuous - pure $ - execResponse - req - (0, mempty, RewriteTrivial substPat) - substitution - unsupported + pure trivialResponse + (Left ApplyEquations.UndefinedTerm{}, _) -> do + -- LLVM has stumbled upon an undefined term, the whole term is Bottom, return Vacuous + pure trivialResponse (Left other, _) -> pure . Left . RpcError.backendError $ RpcError.Aborted (Text.pack . constructorName $ other) (Right newPattern, simplifierCache) -> do From e155e58d5ff015aafb860d6182ffc5d7f8ce01f5 Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 21 Aug 2024 14:49:23 +0200 Subject: [PATCH 13/14] Rename parameter in integration tests --- .../test-vacuous/params-unchecked-vacuous-rewrite.json | 2 +- .../test-vacuous/params-vacuous-but-rewritten.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json b/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json index 0ab8ffbc67..c58212fd42 100644 --- a/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json +++ b/booster/test/rpc-integration/test-vacuous/params-unchecked-vacuous-rewrite.json @@ -1 +1 @@ -{ "assume-state-defined": true } \ No newline at end of file +{ "assume-defined": true } diff --git a/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json b/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json index 0ab8ffbc67..c58212fd42 100644 --- a/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json +++ b/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json @@ -1 +1 @@ -{ "assume-state-defined": true } \ No newline at end of file +{ "assume-defined": true } From 586589f0ba55136ec6fd0493217926ea87835a9e Mon Sep 17 00:00:00 2001 From: Georgy Lukyanov Date: Wed, 21 Aug 2024 14:54:48 +0200 Subject: [PATCH 14/14] Reorganize tests --- .../rpc-integration/test-vacuous/README.md | 10 + .../params-vacuous-but-rewritten.json | 1 - ...onse-unchecked-vacuous-rewrite.booster-dev | 215 ++++++++++++++++++ ...nse-unchecked-vacuous-rewrite.kore-rpc-dev | 214 +++++++++++++++++ .../state-vacuous-but-rewritten.execute | 1 - .../state-vacuous-not-rewritten.execute | 200 ---------------- 6 files changed, 439 insertions(+), 202 deletions(-) delete mode 100644 booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json create mode 100644 booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.booster-dev create mode 100644 booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.kore-rpc-dev delete mode 120000 booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute delete mode 100644 booster/test/rpc-integration/test-vacuous/state-vacuous-not-rewritten.execute diff --git a/booster/test/rpc-integration/test-vacuous/README.md b/booster/test/rpc-integration/test-vacuous/README.md index bd26765c7c..282675ad7d 100644 --- a/booster/test/rpc-integration/test-vacuous/README.md +++ b/booster/test/rpc-integration/test-vacuous/README.md @@ -47,5 +47,15 @@ Rules `init` and `AC` introduce constraints on this variable: _Expected:_ - The state is simplified and discovered to be `vacuous` (with state `b`). +1) _unchecked-vacuous-rewritten_ + + _Input:_ same as _vacuous-not-rewritten_ + - `execute` request with initial state `bN \and N + ==Int 1 \and N =/=Int 1` (A contradiction in the initial constraints). + + _Expected:_ + - the input constraints are not checked for satisfiability (`"assume-defined": true` is in params) + - one rewrite step is made and the result is `stuck` + With `kore-rpc-dev`, some contradictions will be discovered before or while attempting to rewrite (at the time of writing, it returns `stuck`, though). diff --git a/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json b/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json deleted file mode 100644 index c58212fd42..0000000000 --- a/booster/test/rpc-integration/test-vacuous/params-vacuous-but-rewritten.json +++ /dev/null @@ -1 +0,0 @@ -{ "assume-defined": true } diff --git a/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.booster-dev b/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.booster-dev new file mode 100644 index 0000000000..0737b4680a --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.booster-dev @@ -0,0 +1,215 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "reason": "stuck", + "depth": 0, + "state": { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + "value": "d" + } + ] + }, + { + "tag": "App", + "name": "dotk", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'int'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + }, + "predicate": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + }, + "second": { + "tag": "App", + "name": "LblnotBool'Unds'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + } + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.kore-rpc-dev b/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.kore-rpc-dev new file mode 100644 index 0000000000..fc99a058e2 --- /dev/null +++ b/booster/test/rpc-integration/test-vacuous/response-unchecked-vacuous-rewrite.kore-rpc-dev @@ -0,0 +1,214 @@ +{ + "jsonrpc": "2.0", + "id": 1, + "result": { + "reason": "stuck", + "depth": 0, + "state": { + "term": { + "format": "KORE", + "version": 1, + "term": { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "App", + "name": "Lbl'-LT-'generatedTop'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "Lbl'-LT-'k'-GT-'", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "kseq", + "sorts": [], + "args": [ + { + "tag": "App", + "name": "inj", + "sorts": [ + { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + { + "tag": "SortApp", + "name": "SortKItem", + "args": [] + } + ], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortState", + "args": [] + }, + "value": "d" + } + ] + }, + { + "tag": "App", + "name": "dotk", + "sorts": [], + "args": [] + } + ] + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'int'-GT-'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + } + ] + }, + { + "tag": "App", + "name": "Lbl'-LT-'generatedCounter'-GT-'", + "sorts": [], + "args": [ + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + } + ] + }, + { + "tag": "And", + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "patterns": [ + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "App", + "name": "Lbl'UndsEqlsEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + }, + { + "tag": "Equals", + "argSort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "sort": { + "tag": "SortApp", + "name": "SortGeneratedTopCell", + "args": [] + }, + "first": { + "tag": "App", + "name": "Lbl'UndsEqlsSlshEqls'Int'Unds'", + "sorts": [], + "args": [ + { + "tag": "EVar", + "name": "N", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + } + }, + { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortInt", + "args": [] + }, + "value": "0" + } + ] + }, + "second": { + "tag": "DV", + "sort": { + "tag": "SortApp", + "name": "SortBool", + "args": [] + }, + "value": "true" + } + } + ] + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute b/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute deleted file mode 120000 index bc6397970f..0000000000 --- a/booster/test/rpc-integration/test-vacuous/state-vacuous-but-rewritten.execute +++ /dev/null @@ -1 +0,0 @@ -state-vacuous-not-rewritten.execute \ No newline at end of file diff --git a/booster/test/rpc-integration/test-vacuous/state-vacuous-not-rewritten.execute b/booster/test/rpc-integration/test-vacuous/state-vacuous-not-rewritten.execute deleted file mode 100644 index 0dc921acb0..0000000000 --- a/booster/test/rpc-integration/test-vacuous/state-vacuous-not-rewritten.execute +++ /dev/null @@ -1,200 +0,0 @@ -{ - "format": "KORE", - "version": 1, - "term": { - "tag": "And", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "App", - "name": "Lbl'-LT-'generatedTop'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "Lbl'-LT-'k'-GT-'", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "kseq", - "sorts": [], - "args": [ - { - "tag": "App", - "name": "inj", - "sorts": [ - { - "tag": "SortApp", - "name": "SortState", - "args": [] - }, - { - "tag": "SortApp", - "name": "SortKItem", - "args": [] - } - ], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortState", - "args": [] - }, - "value": "b" - } - ] - }, - { - "tag": "App", - "name": "dotk", - "sorts": [], - "args": [] - } - ] - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'int'-GT-'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "N", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - } - ] - }, - { - "tag": "App", - "name": "Lbl'-LT-'generatedCounter'-GT-'", - "sorts": [], - "args": [ - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - } - ] - }, - "second": { - "tag": "And", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "first": { - "tag": "Equals", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "first": { - "tag": "App", - "name": "Lbl'UndsEqlsEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "N", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - }, - "second": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - } - }, - "second": { - "tag": "Equals", - "sort": { - "tag": "SortApp", - "name": "SortGeneratedTopCell", - "args": [] - }, - "argSort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "first": { - "tag": "App", - "name": "Lbl'UndsEqlsSlshEqls'Int'Unds'", - "sorts": [], - "args": [ - { - "tag": "EVar", - "name": "N", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - } - }, - { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortInt", - "args": [] - }, - "value": "0" - } - ] - }, - "second": { - "tag": "DV", - "sort": { - "tag": "SortApp", - "name": "SortBool", - "args": [] - }, - "value": "true" - } - } - } - } -}